Version Description
- 29.03.2019 =
- NEW : Ability to add a gallery to the slider has been added.
- Update : All functionality was updated for WordPress 5.1.1.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 4.6.0 |
Comparing to | |
See all releases |
Code changes from version 4.5.9 to 4.6.0
- gallery-plugin.php +124 -5
- includes/class-gllr-settings.php +53 -17
- js/script.js +15 -0
- languages/gallery-plugin-bg_BG.mo +0 -0
- languages/gallery-plugin-bg_BG.po +333 -291
- languages/gallery-plugin-cs_CZ.mo +0 -0
- languages/gallery-plugin-cs_CZ.po +343 -292
- languages/gallery-plugin-de_DE.mo +0 -0
- languages/gallery-plugin-de_DE.po +332 -290
- languages/gallery-plugin-es_ES.mo +0 -0
- languages/gallery-plugin-es_ES.po +340 -295
- languages/gallery-plugin-fr_FR.mo +0 -0
- languages/gallery-plugin-fr_FR.po +1954 -1780
- languages/gallery-plugin-id_ID.mo +0 -0
- languages/gallery-plugin-id_ID.po +337 -290
- languages/gallery-plugin-nl_NL.mo +0 -0
- languages/gallery-plugin-nl_NL.po +336 -293
- languages/gallery-plugin-pt_BR.mo +0 -0
- languages/gallery-plugin-pt_BR.po +340 -292
- languages/gallery-plugin-ru_RU.mo +0 -0
- languages/gallery-plugin-ru_RU.po +293 -284
- languages/gallery-plugin-sk_SK.mo +0 -0
- languages/gallery-plugin-sk_SK.po +334 -294
- languages/gallery-plugin-sl_SI.mo +0 -0
- languages/gallery-plugin-sl_SI.po +336 -293
- languages/gallery-plugin-sr_RS.mo +0 -0
- languages/gallery-plugin-sr_RS.po +339 -296
- languages/gallery-plugin-tr.mo +0 -0
- languages/gallery-plugin-tr.po +332 -290
- languages/gallery-plugin-uk.mo +0 -0
- languages/gallery-plugin-uk.po +294 -281
- languages/gallery-plugin-zh_CN.mo +0 -0
- languages/gallery-plugin-zh_CN.po +336 -293
- readme.txt +11 -2
- screenshot-7.png +0 -0
- screenshot-8.png +0 -0
- screenshot-9.png +0 -0
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.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -154,6 +154,120 @@ if ( ! function_exists( 'gllr_plugin_activate' ) ) {
|
|
154 |
}
|
155 |
}
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
/* Register settings function */
|
158 |
if ( ! function_exists( 'gllr_settings' ) ) {
|
159 |
function gllr_settings() {
|
@@ -1748,7 +1862,7 @@ if ( ! function_exists( 'gllr_plugin_action_links' ) ) {
|
|
1748 |
|
1749 |
if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
1750 |
function gllr_admin_head() {
|
1751 |
-
global $wp_version, $gllr_plugin_info, $post_type, $pagenow, $gllr_options;
|
1752 |
|
1753 |
wp_enqueue_style( 'gllr_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
1754 |
wp_enqueue_script( 'jquery' );
|
@@ -1781,6 +1895,9 @@ if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
|
1781 |
'confirm_update_gallery' => __( "Switching to another mode, all unsaved data will be lost. Save data before switching?", 'gallery-plugin' ),
|
1782 |
'wp_media_title' => __( 'Insert Media', 'gallery-plugin' ),
|
1783 |
'wp_media_button' => __( 'Insert', 'gallery-plugin' ),
|
|
|
|
|
|
|
1784 |
)
|
1785 |
);
|
1786 |
}
|
@@ -2505,7 +2622,7 @@ if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
2505 |
$sortable = array();
|
2506 |
$current_page = $this->get_pagenum();
|
2507 |
$this->_column_headers = array( $columns, $hidden, $sortable );
|
2508 |
-
$images_id = get_post_meta( $original_post->ID, '_gallery_images', true );
|
2509 |
if ( empty( $images_id ) ) {
|
2510 |
$total_items = 0;
|
2511 |
} else {
|
@@ -2709,7 +2826,7 @@ if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
2709 |
$old_post = $post;
|
2710 |
add_filter( 'the_title','esc_html' );
|
2711 |
|
2712 |
-
$images_id = get_post_meta( $original_post->ID, '_gallery_images', true );
|
2713 |
query_posts( array(
|
2714 |
'post__in' => explode( ',', $images_id ),
|
2715 |
'post_type' => 'attachment',
|
@@ -3461,4 +3578,6 @@ add_filter( 'bws_shortcode_button_content', 'gllr_shortcode_button_content' );
|
|
3461 |
|
3462 |
add_action( 'wp_ajax_gllr_delete_image', 'gllr_delete_image' );
|
3463 |
add_action( 'wp_ajax_gllr_add_from_media', 'gllr_add_from_media' );
|
3464 |
-
add_action( 'wp_ajax_gllr_change_view_mode', 'gllr_change_view_mode' );
|
|
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 4.6.0
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
154 |
}
|
155 |
}
|
156 |
|
157 |
+
// check plugin status
|
158 |
+
if ( ! function_exists( 'gallery_plugin_status' ) ) {
|
159 |
+
function gallery_plugin_status( $plugins, $all_plugins, $is_network ) {
|
160 |
+
$result = array(
|
161 |
+
'status' => '',
|
162 |
+
'plugin' => '',
|
163 |
+
'plugin_info' => array(),
|
164 |
+
);
|
165 |
+
foreach ( ( array )$plugins as $plugin ) {
|
166 |
+
if ( array_key_exists( $plugin, $all_plugins ) ) {
|
167 |
+
if (
|
168 |
+
( $is_network && is_plugin_active_for_network( $plugin ) ) ||
|
169 |
+
( ! $is_network && is_plugin_active( $plugin ) )
|
170 |
+
) {
|
171 |
+
$result['status'] = 'actived';
|
172 |
+
$result['plugin'] = $plugin;
|
173 |
+
$result['plugin_info'] = $all_plugins[ $plugin ];
|
174 |
+
break;
|
175 |
+
} else {
|
176 |
+
$result['status'] = 'deactivated';
|
177 |
+
$result['plugin'] = $plugin;
|
178 |
+
$result['plugin_info'] = $all_plugins[ $plugin ];
|
179 |
+
}
|
180 |
+
}
|
181 |
+
}
|
182 |
+
if ( empty( $result['status'] ) ) {
|
183 |
+
$result['status'] = 'not_installed';
|
184 |
+
}
|
185 |
+
return $result;
|
186 |
+
}
|
187 |
+
}
|
188 |
+
|
189 |
+
// export gallery to the slider
|
190 |
+
if ( ! function_exists( 'gllr_export_slider' ) ) {
|
191 |
+
function gllr_export_slider () {
|
192 |
+
global $wpdb;
|
193 |
+
|
194 |
+
$id = $_POST['post_id'];
|
195 |
+
$title = $_POST['post_title'];
|
196 |
+
|
197 |
+
$select = $wpdb->get_results( "
|
198 |
+
SELECT meta_value
|
199 |
+
FROM {$wpdb->prefix}postmeta
|
200 |
+
WHERE post_id = '$id'
|
201 |
+
AND meta_key = '_gallery_images'
|
202 |
+
", ARRAY_A );
|
203 |
+
|
204 |
+
if ( $select ) {
|
205 |
+
|
206 |
+
$get_meta_val = $select[0]['meta_value'];
|
207 |
+
$explode_meta_val = explode(',', $get_meta_val);
|
208 |
+
|
209 |
+
$sldr_settings = array(
|
210 |
+
'loop' => false,
|
211 |
+
'nav' => false,
|
212 |
+
'dots' => false,
|
213 |
+
'items' => 1,
|
214 |
+
'autoplay' => false,
|
215 |
+
'autoplay_timeout' => 2000,
|
216 |
+
'autoplay_hover_pause' => false
|
217 |
+
);
|
218 |
+
|
219 |
+
$serialize_sldr_settings = serialize( $sldr_settings );
|
220 |
+
|
221 |
+
$wpdb->insert( $wpdb->prefix . 'sldr_slider',
|
222 |
+
array(
|
223 |
+
'title' => $title,
|
224 |
+
'datetime' => date( 'Y-m-d' ),
|
225 |
+
'settings' => $serialize_sldr_settings
|
226 |
+
)
|
227 |
+
);
|
228 |
+
|
229 |
+
$slider_id = $wpdb->get_results( "
|
230 |
+
SELECT slider_id
|
231 |
+
FROM {$wpdb->prefix}sldr_slider
|
232 |
+
WHERE title = '$title'
|
233 |
+
", ARRAY_A );
|
234 |
+
|
235 |
+
$data_slide = array();
|
236 |
+
$data_relation = array();
|
237 |
+
$slice = array_values( array_slice( $slider_id, -1 ) )[0];
|
238 |
+
$i = 0;
|
239 |
+
|
240 |
+
foreach ( $explode_meta_val as $val ) {
|
241 |
+
$i++;
|
242 |
+
$data_slide[] = '("' . $val . '","' . $i . '")';
|
243 |
+
$data_relation[] = '("' . $slice['slider_id'] . '","' . $val . '")';
|
244 |
+
}
|
245 |
+
|
246 |
+
$implode_data_slide = implode( ', ', $data_slide );
|
247 |
+
|
248 |
+
$implode_data_relation = implode( ', ', $data_relation );
|
249 |
+
|
250 |
+
$check_duplicate = $wpdb->get_results( "
|
251 |
+
SELECT slide_id
|
252 |
+
FROM {$wpdb->prefix}sldr_slide
|
253 |
+
WHERE attachment_id = '$get_meta_val'
|
254 |
+
", ARRAY_A );
|
255 |
+
|
256 |
+
if ( ! $check_duplicate) {
|
257 |
+
$wpdb->query( "
|
258 |
+
INSERT INTO {$wpdb->prefix}sldr_slide ( `attachment_id`, `order` )
|
259 |
+
VALUES {$implode_data_slide}
|
260 |
+
" );
|
261 |
+
}
|
262 |
+
|
263 |
+
$wpdb->query( "
|
264 |
+
INSERT INTO {$wpdb->prefix}sldr_relation ( `slider_id`, `attachment_id` )
|
265 |
+
VALUES {$implode_data_relation}
|
266 |
+
" );
|
267 |
+
}
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
/* Register settings function */
|
272 |
if ( ! function_exists( 'gllr_settings' ) ) {
|
273 |
function gllr_settings() {
|
1862 |
|
1863 |
if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
1864 |
function gllr_admin_head() {
|
1865 |
+
global $wp_version, $gllr_plugin_info, $post_type, $pagenow, $gllr_options, $post;
|
1866 |
|
1867 |
wp_enqueue_style( 'gllr_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
1868 |
wp_enqueue_script( 'jquery' );
|
1895 |
'confirm_update_gallery' => __( "Switching to another mode, all unsaved data will be lost. Save data before switching?", 'gallery-plugin' ),
|
1896 |
'wp_media_title' => __( 'Insert Media', 'gallery-plugin' ),
|
1897 |
'wp_media_button' => __( 'Insert', 'gallery-plugin' ),
|
1898 |
+
'export_message' => __( 'Gallery has been successfully added!', 'gallery-plugin' ),
|
1899 |
+
'post' => $post->ID,
|
1900 |
+
'title' => $post->post_title
|
1901 |
)
|
1902 |
);
|
1903 |
}
|
2622 |
$sortable = array();
|
2623 |
$current_page = $this->get_pagenum();
|
2624 |
$this->_column_headers = array( $columns, $hidden, $sortable );
|
2625 |
+
$original_post ? $images_id = get_post_meta( $original_post->ID, '_gallery_images', true ) : false;
|
2626 |
if ( empty( $images_id ) ) {
|
2627 |
$total_items = 0;
|
2628 |
} else {
|
2826 |
$old_post = $post;
|
2827 |
add_filter( 'the_title','esc_html' );
|
2828 |
|
2829 |
+
$original_post ? $images_id = get_post_meta( $original_post->ID, '_gallery_images', true ) : false;
|
2830 |
query_posts( array(
|
2831 |
'post__in' => explode( ',', $images_id ),
|
2832 |
'post_type' => 'attachment',
|
3578 |
|
3579 |
add_action( 'wp_ajax_gllr_delete_image', 'gllr_delete_image' );
|
3580 |
add_action( 'wp_ajax_gllr_add_from_media', 'gllr_add_from_media' );
|
3581 |
+
add_action( 'wp_ajax_gllr_change_view_mode', 'gllr_change_view_mode' );
|
3582 |
+
|
3583 |
+
add_action( 'wp_ajax_gllr_export_slider', 'gllr_export_slider' );
|
includes/class-gllr-settings.php
CHANGED
@@ -39,7 +39,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
39 |
} else {
|
40 |
$tabs = array(
|
41 |
'images' => array( 'label' => __( 'Images', 'gallery-plugin' ) ),
|
42 |
-
'settings' => array( 'label' => __( 'Settings', 'gallery-plugin' )
|
43 |
);
|
44 |
}
|
45 |
|
@@ -303,26 +303,62 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
303 |
/**
|
304 |
*
|
305 |
*/
|
306 |
-
public function tab_settings() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
<h3 class="bws_tab_label"><?php _e( 'Gallery Settings', 'gallery-plugin' ); ?></h3>
|
308 |
<?php $this->help_phrase(); ?>
|
309 |
<hr>
|
310 |
<?php if ( ! $this->is_global_settings ) { ?>
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
if ( ! $this->hide_pro_tabs ) { ?>
|
327 |
<div class="bws_pro_version_bloc">
|
328 |
<div class="bws_pro_version_table_bloc">
|
39 |
} else {
|
40 |
$tabs = array(
|
41 |
'images' => array( 'label' => __( 'Images', 'gallery-plugin' ) ),
|
42 |
+
'settings' => array( 'label' => __( 'Settings', 'gallery-plugin' ) ),
|
43 |
);
|
44 |
}
|
45 |
|
303 |
/**
|
304 |
*
|
305 |
*/
|
306 |
+
public function tab_settings() {
|
307 |
+
|
308 |
+
$wp_gallery_media_table = new Gllr_Media_Table();
|
309 |
+
$wp_gallery_media_table->prepare_items();
|
310 |
+
|
311 |
+
$all_plugins = get_plugins();
|
312 |
+
$attrs = $plugin_notice = ''; ?>
|
313 |
+
|
314 |
<h3 class="bws_tab_label"><?php _e( 'Gallery Settings', 'gallery-plugin' ); ?></h3>
|
315 |
<?php $this->help_phrase(); ?>
|
316 |
<hr>
|
317 |
<?php if ( ! $this->is_global_settings ) { ?>
|
318 |
+
<table class="form-table ">
|
319 |
+
<tr valign="top">
|
320 |
+
<th scope="row"><?php _e( 'Add Gallery to the Slider', 'gallery-plugin' ); ?> </th>
|
321 |
+
<td>
|
322 |
+
<?php $plugin_info = gallery_plugin_status(
|
323 |
+
'slider-bws/slider-bws.php',
|
324 |
+
$all_plugins,
|
325 |
+
$this->is_network_options
|
326 |
+
);
|
327 |
+
if ( '0' == $wp_gallery_media_table->_pagination_args['total_items'] ) {
|
328 |
+
$attrs = 'disabled="disabled"';
|
329 |
+
}
|
330 |
+
if ( 'deactivated' == $plugin_info['status'] ) {
|
331 |
+
$attrs = 'disabled="disabled"';
|
332 |
+
$plugin_notice = ' <a href="' . self_admin_url( 'plugins.php' ). '">' . __( 'Activate', 'gallery-plugin' ) . '</a>';
|
333 |
+
} elseif ( 'not_installed' == $plugin_info['status'] ) {
|
334 |
+
$attrs = 'disabled="disabled"';
|
335 |
+
$plugin_notice = ' <a href="https://bestwebsoft.com/products/wordpress/plugins/slider/' . '" target="_blank">' . __( 'Install Now', 'gallery-plugin' ) . '</a>';
|
336 |
+
}
|
337 |
+
$export = __( 'Add', 'gallery-plugin' ) ?>
|
338 |
+
<input type="button" <?php echo $this->change_permission_attr; ?> class="button" <?php echo $attrs; ?> id="gllr-export-slider" name="gllr-export-slider" value="<?php echo $export ?>">
|
339 |
+
<span id="gllr_export_loader" class="gllr_loader"><img src="<?php echo plugins_url( '../images/ajax-loader.gif', __FILE__ ); ?>" alt="loader" /></span><br />
|
340 |
+
<span class="bws_info"><?php _e( 'Click to add current gallery to the slider. Slider plugin is required.', 'gallery-plugin' ); echo $plugin_notice; ?></span>
|
341 |
+
</label>
|
342 |
+
</td>
|
343 |
+
</tr>
|
344 |
+
</table>
|
345 |
+
<?php if ( ! $this->hide_pro_tabs ) { ?>
|
346 |
+
<div class="bws_pro_version_bloc">
|
347 |
+
<div class="bws_pro_version_table_bloc">
|
348 |
+
<div class="bws_table_bg"></div>
|
349 |
+
<table class="form-table bws_pro_version">
|
350 |
+
<tr valign="top">
|
351 |
+
<th scope="row"><?php _e( 'Single Gallery Settings', 'gallery-plugin' ); ?> </th>
|
352 |
+
<td>
|
353 |
+
<input disabled="disabled" type="checkbox" /> <span class="bws_info"><?php printf( __( 'Enable to configure single gallery settings and disable %s.', 'gallery-plugin' ), '<a style="z-index: 2;position: relative;" href="edit.php?post_type=' . $this->options['post_type_name'] . '&page=gallery-plugin.php" target="_blank">' . __( 'Global Settings', 'gallery-plugin' ) . '</a>' ); ?></span>
|
354 |
+
</td>
|
355 |
+
</tr>
|
356 |
+
</table>
|
357 |
+
</div>
|
358 |
+
<?php $this->bws_pro_block_links(); ?>
|
359 |
+
</div>
|
360 |
+
<?php }
|
361 |
+
} else {
|
362 |
if ( ! $this->hide_pro_tabs ) { ?>
|
363 |
<div class="bws_pro_version_bloc">
|
364 |
<div class="bws_pro_version_table_bloc">
|
js/script.js
CHANGED
@@ -290,6 +290,21 @@ function gllr_setError( msg ) {
|
|
290 |
} );
|
291 |
}
|
292 |
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
} );
|
294 |
} )( jQuery );
|
295 |
|
290 |
} );
|
291 |
}
|
292 |
} );
|
293 |
+
|
294 |
+
$( '#gllr-export-slider' ).on( 'click', function() {
|
295 |
+
$.ajax( {
|
296 |
+
url: ajaxurl,
|
297 |
+
type: "POST",
|
298 |
+
data: { action: 'gllr_export_slider', post_id: gllr_vars.post, post_title: gllr_vars.title, gllr_ajax_nonce_field: gllr_vars.gllr_nonce },
|
299 |
+
beforeSend: function() {
|
300 |
+
$( '.gllr_loader' ).css( 'display', 'inline-block' );
|
301 |
+
},
|
302 |
+
success: function () {
|
303 |
+
$( '.gllr_loader' ).hide();
|
304 |
+
$( '<div class="updated fade"><p><strong>' + gllr_vars.export_message + '</strong></p></div>' ).insertAfter( "#titlewrap" );
|
305 |
+
}
|
306 |
+
} );
|
307 |
+
} );
|
308 |
} );
|
309 |
} )( jQuery );
|
310 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: bg_BG\n"
|
@@ -13,487 +13,530 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Настройки на галерията"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Настройки на галерията"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
#, fuzzy
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Оновити до Pro"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Return to all albums"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "See images »"
|
40 |
msgstr "Виж изображенията »"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
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 |
#, fuzzy
|
68 |
msgid "Search Galleries"
|
69 |
msgstr "Галерии"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "No Gallery found"
|
73 |
msgstr "Няма намерена галерия"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
-
#: gallery-plugin.php:
|
77 |
-
#: gallery-plugin.php:
|
78 |
#, fuzzy
|
79 |
msgid "Gallery Categories"
|
80 |
msgstr "Размер на изображението в галерия"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Category"
|
85 |
msgstr "Размер на изображението в галерия"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Add Gallery Category"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
#, fuzzy
|
93 |
msgid "Add New Gallery Category"
|
94 |
msgstr "Добави нова галерия"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Edit Gallery Category"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "New Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "View Gallery Category"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
msgid "Find Gallery Category"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: gallery-plugin.php:
|
113 |
msgid "No Gallery Categories found"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "No Gallery Categories found in Trash"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Parent Gallery Category"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Gallery Categories list navigation"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
msgid "Gallery Categories list"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Gallery Shortcode"
|
134 |
msgstr "Шорткод за галерия"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid ""
|
138 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
139 |
"widgets by using the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid ""
|
144 |
"Add a gallery cover including featured image, description, and a link to "
|
145 |
"your single gallery using the following shortcode:"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
#, fuzzy
|
150 |
msgid "Note"
|
151 |
msgstr "Примітка"
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"When deleting a category, the galleries that belong to this category will "
|
157 |
"not be deleted. These galleries will be moved to the category %s."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
#, fuzzy
|
162 |
msgid "Shortcode"
|
163 |
msgstr "Шорткод за галерия"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "All Gallery Categories"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "You can't delete default gallery category."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "Sorry, nothing found."
|
175 |
msgstr "Съжалявам, нищо не е намерено."
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
#, fuzzy
|
179 |
msgid "Featured Image"
|
180 |
msgstr "Мініатюра"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
184 |
-
msgid "Title"
|
185 |
-
msgstr "Име"
|
186 |
-
|
187 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
188 |
#, fuzzy
|
189 |
msgid "Images"
|
190 |
msgstr "Изображение"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
msgid "Author"
|
194 |
-
msgstr "Автор "
|
195 |
-
|
196 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
197 |
-
#: includes/class-gllr-settings.php:680
|
198 |
-
msgid "Date"
|
199 |
-
msgstr "Дата "
|
200 |
-
|
201 |
-
#: gallery-plugin.php:1688
|
202 |
#, fuzzy, php-format
|
203 |
msgid "%s Settings"
|
204 |
msgstr "Перейти до Налаштувань %s"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
208 |
msgid "Settings"
|
209 |
msgstr "Настройки"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "FAQ"
|
213 |
msgstr "Често задавани въпроси"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "Support"
|
217 |
msgstr "Поддръжка"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Updating images..."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
#, fuzzy
|
225 |
msgid "No images found."
|
226 |
msgstr "Няма намерена галерия"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "All images were updated."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
#, fuzzy
|
234 |
msgid "Error."
|
235 |
msgstr "ПОМИЛКА:"
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid ""
|
239 |
"You are about to remove these items from this gallery.\n"
|
240 |
" 'Cancel' to stop, 'OK' to delete."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid ""
|
245 |
"You are about to remove this image from the gallery.\n"
|
246 |
" 'Cancel' to stop, 'OK' to delete."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
250 |
msgid ""
|
251 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
252 |
"switching?"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Insert Media"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
msgid "Insert"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
264 |
#, fuzzy
|
265 |
msgid "Image size not defined"
|
266 |
msgstr "Размер на изображението"
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid ""
|
270 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
271 |
"reload images manually."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Invalid path"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "List View"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Grid View"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "Filter"
|
289 |
msgstr "Фільтр"
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
msgid "Empty Trash"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "No images found"
|
298 |
msgstr "Няма намерена галерия"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Select bulk action"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Bulk Actions"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
#, fuzzy
|
310 |
msgid "Apply"
|
311 |
msgstr "Застосувати фільтр"
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
#, fuzzy
|
315 |
msgid "Delete from Gallery"
|
316 |
msgstr "Нова галерия"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "Bulk Select"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Cancel Selection"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Delete Selected"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
#, fuzzy
|
332 |
msgid "File"
|
333 |
msgstr "Імпорт пройшов успішно, але файл %s видалити не вдалося"
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Dimensions"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "Alt Text"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "URL"
|
345 |
msgstr "URL"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid ""
|
349 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
350 |
"to open a full size image."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
#, fuzzy
|
355 |
msgid "Remove Image from Gallery"
|
356 |
msgstr "Нова галерия"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
#, fuzzy
|
360 |
msgid "Edit Image Info"
|
361 |
msgstr "ID на изображението"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Deselect"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "File name"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "File type"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Description"
|
378 |
msgstr "Опис слайда"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
#, fuzzy
|
382 |
msgid "Lightbox Button URL"
|
383 |
msgstr "Фон на lightbox"
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "New Tab"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Enable to open URLs above in a new tab."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
msgid "Go Pro"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "Edit more details"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
#, fuzzy
|
403 |
msgid "Remove from Gallery"
|
404 |
msgstr "Нова галерия"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, php-format
|
408 |
msgid "Select %s"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
#, php-format
|
413 |
msgid "Edit “%s”"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
#, fuzzy
|
418 |
msgid "Edit Attachment Info"
|
419 |
msgstr "ID на изображението"
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
#, fuzzy
|
423 |
msgid "Edit"
|
424 |
msgstr "Змінити"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Trash"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Delete Permanently"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
#, php-format
|
436 |
msgid "View “%s”"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
#, fuzzy
|
441 |
msgid "View"
|
442 |
msgstr "Переглянути Автомобіль"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
#, fuzzy
|
446 |
msgid "Attach"
|
447 |
msgstr "ID на изображението"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "Restore"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "A list or dropdown of Gallery categories."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "Select Gallery Category"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Title:"
|
464 |
msgstr "Име"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Display as dropdown"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
msgid "Show gallery counts"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
msgid "Show hierarchy"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: gallery-plugin.php:
|
479 |
#, fuzzy
|
480 |
msgid "Warning"
|
481 |
msgstr "Увага"
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "You can add only images to the gallery"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
-
msgid "or"
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: gallery-plugin.php:3181
|
492 |
#, fuzzy
|
493 |
msgid "no title"
|
494 |
msgstr "Име"
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
#, fuzzy
|
498 |
msgid ""
|
499 |
"Display an album image with the description and the link to a single gallery "
|
@@ -502,7 +545,7 @@ msgstr ""
|
|
502 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
503 |
"страницата с галерията"
|
504 |
|
505 |
-
#: gallery-plugin.php:
|
506 |
#, fuzzy
|
507 |
msgid "Sorry, no gallery found."
|
508 |
msgstr "Съжалявам, нищо не е намерено."
|
@@ -540,582 +583,594 @@ msgstr "Імпорт / Експорт"
|
|
540 |
msgid "License Key"
|
541 |
msgstr "Ліцензійний ключ"
|
542 |
|
543 |
-
#: includes/class-gllr-settings.php:
|
544 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: includes/class-gllr-settings.php:247
|
548 |
#, fuzzy
|
549 |
msgid "Settings saved"
|
550 |
msgstr "Налаштування збережено."
|
551 |
|
552 |
-
#: includes/class-gllr-settings.php:
|
553 |
#, fuzzy
|
554 |
msgid "Please, enable JavaScript in Your browser."
|
555 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
556 |
|
557 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
558 |
#, fuzzy
|
559 |
msgid "Update Images"
|
560 |
msgstr "подреди изображенията"
|
561 |
|
562 |
-
#: includes/class-gllr-settings.php:
|
563 |
#, fuzzy
|
564 |
msgid "Gallery Images"
|
565 |
msgstr "Размер на изображението в галерия"
|
566 |
|
567 |
-
#: includes/class-gllr-settings.php:
|
568 |
msgid "Images adding requires JavaScript."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/class-gllr-settings.php:
|
572 |
msgid "Add Media"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/class-gllr-settings.php:
|
576 |
msgid "The grid view for the Gallery images requires JavaScript."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/class-gllr-settings.php:
|
580 |
msgid "Switch to the list view"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
#, fuzzy
|
585 |
msgid "Single Gallery Settings"
|
586 |
msgstr "Настройки на галерията"
|
587 |
|
588 |
-
#: includes/class-gllr-settings.php:
|
589 |
#, php-format
|
590 |
msgid "Enable to configure single gallery settings and disable %s."
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/class-gllr-settings.php:
|
594 |
-
#: includes/class-gllr-settings.php:
|
595 |
-
#: includes/class-gllr-settings.php:
|
596 |
-
#: includes/class-gllr-settings.php:
|
597 |
-
#: includes/class-gllr-settings.php:
|
598 |
#, fuzzy
|
599 |
msgid "Close"
|
600 |
msgstr "Закрити"
|
601 |
|
602 |
-
#: includes/class-gllr-settings.php:
|
603 |
#, fuzzy
|
604 |
msgid "Gallery Layout"
|
605 |
msgstr "Няма намерена галерия"
|
606 |
|
607 |
-
#: includes/class-gllr-settings.php:
|
608 |
msgid "Grid"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/class-gllr-settings.php:
|
612 |
msgid "Masonry"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: includes/class-gllr-settings.php:
|
616 |
msgid "Number of Columns"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/class-gllr-settings.php:
|
620 |
#, php-format
|
621 |
msgid "Number of gallery columns (default is %s)."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/class-gllr-settings.php:
|
625 |
#, fuzzy
|
626 |
msgid "Image Size"
|
627 |
msgstr "Размер на изображението"
|
628 |
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
#, fuzzy
|
631 |
msgid "Custom"
|
632 |
msgstr "Користувацьке"
|
633 |
|
634 |
-
#: includes/class-gllr-settings.php:
|
635 |
msgid ""
|
636 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/class-gllr-settings.php:
|
640 |
#, fuzzy
|
641 |
msgid "Custom Image Size"
|
642 |
msgstr "Размер на изображението"
|
643 |
|
644 |
-
#: includes/class-gllr-settings.php:
|
645 |
-
#: includes/class-gllr-settings.php:
|
646 |
msgid "px"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/class-gllr-settings.php:
|
650 |
msgid ""
|
651 |
"Adjust these values based on the number of columns in your gallery. This "
|
652 |
"won't effect the full size of your images in the lightbox."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/class-gllr-settings.php:
|
656 |
#, fuzzy
|
657 |
msgid "Crop Images"
|
658 |
msgstr "Подреди изображенията"
|
659 |
|
660 |
-
#: includes/class-gllr-settings.php:
|
661 |
msgid ""
|
662 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
663 |
"to resize images automatically using their aspect ratio."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: includes/class-gllr-settings.php:
|
667 |
#, fuzzy
|
668 |
msgid "Crop Position"
|
669 |
msgstr "Позиция за изрязване"
|
670 |
|
671 |
-
#: includes/class-gllr-settings.php:
|
672 |
msgid "Select crop position base (by default: center)."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/class-gllr-settings.php:
|
676 |
#, fuzzy
|
677 |
msgid "Image Title"
|
678 |
msgstr "Размер на изображението"
|
679 |
|
680 |
-
#: includes/class-gllr-settings.php:
|
681 |
msgid "Enable to display image title along with the gallery image."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/class-gllr-settings.php:
|
685 |
#, fuzzy
|
686 |
msgid "Image Title Position"
|
687 |
msgstr "Размер на изображението"
|
688 |
|
689 |
-
#: includes/class-gllr-settings.php:
|
690 |
#, fuzzy
|
691 |
msgid "Under image"
|
692 |
msgstr "подреди изображенията"
|
693 |
|
694 |
-
#: includes/class-gllr-settings.php:
|
695 |
msgid "On mouse hover"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: includes/class-gllr-settings.php:
|
699 |
#, fuzzy
|
700 |
msgid "Image Border"
|
701 |
msgstr "Изображения с рамка"
|
702 |
|
703 |
-
#: includes/class-gllr-settings.php:
|
704 |
msgid ""
|
705 |
"Enable images border using the styles defined for Image Border Size and "
|
706 |
"Color options."
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/class-gllr-settings.php:
|
710 |
#, fuzzy
|
711 |
msgid "Image Border Size"
|
712 |
msgstr "Размер на изображението"
|
713 |
|
714 |
-
#: includes/class-gllr-settings.php:
|
715 |
#, php-format
|
716 |
msgid "Gallery image border width (default is %s)"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/class-gllr-settings.php:
|
720 |
#, fuzzy
|
721 |
msgid "Image Border Color"
|
722 |
msgstr "Изберете цвят за рамката"
|
723 |
|
724 |
-
#: includes/class-gllr-settings.php:
|
725 |
msgid "Pagination"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
msgid ""
|
730 |
"Enable pagination for images to limit number of images displayed on a single "
|
731 |
"gallery page."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/class-gllr-settings.php:
|
735 |
#, fuzzy
|
736 |
msgid "Number of Images"
|
737 |
msgstr "Брой изображения на ред"
|
738 |
|
739 |
-
#: includes/class-gllr-settings.php:
|
740 |
#, php-format
|
741 |
msgid "Number of images displayed per page (default is %d)."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/class-gllr-settings.php:
|
745 |
#, fuzzy
|
746 |
msgid "Sort Images by"
|
747 |
msgstr "Подреди изображенията по"
|
748 |
|
749 |
-
#: includes/class-gllr-settings.php:
|
750 |
msgid "Manually (default)"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: includes/class-gllr-settings.php:
|
754 |
#, fuzzy
|
755 |
msgid "Image ID"
|
756 |
msgstr "Изображение"
|
757 |
|
758 |
-
#: includes/class-gllr-settings.php:
|
759 |
#, fuzzy
|
760 |
msgid "Name"
|
761 |
msgstr "Им'я"
|
762 |
|
763 |
-
#: includes/class-gllr-settings.php:
|
764 |
-
msgid "Random"
|
765 |
-
msgstr "Произволен"
|
766 |
-
|
767 |
-
#: includes/class-gllr-settings.php:516
|
768 |
msgid ""
|
769 |
"Select images sorting order in your gallery. By default, you can sort images "
|
770 |
"manually in the images tab."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/class-gllr-settings.php:
|
774 |
#, fuzzy
|
775 |
msgid "Arrange Images by"
|
776 |
msgstr "Подреди изображенията по"
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: includes/class-gllr-settings.php:
|
783 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: includes/class-gllr-settings.php:
|
787 |
#, fuzzy
|
788 |
msgid "Back Link"
|
789 |
msgstr "URL за линка 'Назад'"
|
790 |
|
791 |
-
#: includes/class-gllr-settings.php:
|
792 |
msgid ""
|
793 |
"Enable to show a back link in a single gallery page which navigate to a "
|
794 |
"previous page."
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/class-gllr-settings.php:
|
798 |
#, fuzzy
|
799 |
msgid "Back Link URL"
|
800 |
msgstr "URL за линка 'Назад'"
|
801 |
|
802 |
-
#: includes/class-gllr-settings.php:
|
803 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: includes/class-gllr-settings.php:
|
807 |
#, fuzzy
|
808 |
msgid "Back Link Label"
|
809 |
msgstr "URL за линка 'Назад'"
|
810 |
|
811 |
-
#: includes/class-gllr-settings.php:
|
812 |
#, fuzzy
|
813 |
msgid "Back Link with Shortcode"
|
814 |
msgstr "Показване на линк 'Назад' в шорткода"
|
815 |
|
816 |
-
#: includes/class-gllr-settings.php:
|
817 |
#, fuzzy
|
818 |
msgid "Enable to display a back link on a page where shortcode is used."
|
819 |
msgstr "Показване на линк 'Назад' в шорткода"
|
820 |
|
821 |
-
#: includes/class-gllr-settings.php:
|
822 |
#, fuzzy
|
823 |
msgid "Cover Settings"
|
824 |
msgstr "Настройки на галерията"
|
825 |
|
826 |
-
#: includes/class-gllr-settings.php:
|
827 |
#, fuzzy
|
828 |
msgid "Galleries Page"
|
829 |
msgstr "Галерии"
|
830 |
|
831 |
-
#: includes/class-gllr-settings.php:
|
832 |
msgid "Base page where all existing galleries will be displayed."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/class-gllr-settings.php:
|
836 |
msgid "Albums Displaying"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/class-gllr-settings.php:
|
840 |
msgid "Column"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/class-gllr-settings.php:
|
844 |
msgid "Rows"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/class-gllr-settings.php:
|
848 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/class-gllr-settings.php:
|
852 |
msgid "Column Alignment"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/class-gllr-settings.php:
|
856 |
msgid "Left"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/class-gllr-settings.php:
|
860 |
msgid "Right"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/class-gllr-settings.php:
|
864 |
msgid "Center"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: includes/class-gllr-settings.php:
|
868 |
msgid "Select the column alignment."
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/class-gllr-settings.php:
|
872 |
#, fuzzy
|
873 |
msgid "Cover Image Size"
|
874 |
msgstr "Размер на изображението"
|
875 |
|
876 |
-
#: includes/class-gllr-settings.php:
|
877 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class-gllr-settings.php:
|
881 |
msgid "Custom Cover Image Size"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
msgid "Crop Cover Images"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/class-gllr-settings.php:
|
889 |
msgid ""
|
890 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
891 |
"Disable to resize images automatically using their aspect ratio."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/class-gllr-settings.php:
|
895 |
#, fuzzy
|
896 |
msgid "Cover Image Border"
|
897 |
msgstr "Изображения с рамка"
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:
|
900 |
msgid ""
|
901 |
"Enable cover images border using the styles defined for Image Border Size "
|
902 |
"and Color."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/class-gllr-settings.php:
|
906 |
msgid "Cover Image Border Size"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/class-gllr-settings.php:
|
910 |
#, php-format
|
911 |
msgid "Cover image border width (default is %s)"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/class-gllr-settings.php:
|
915 |
#, fuzzy
|
916 |
msgid "Cover Image Border Color"
|
917 |
msgstr "Изберете цвят за рамката"
|
918 |
|
919 |
-
#: includes/class-gllr-settings.php:
|
920 |
#, fuzzy
|
921 |
msgid "Sort Albums by"
|
922 |
msgstr "Подреди изображенията по"
|
923 |
|
924 |
-
#: includes/class-gllr-settings.php:
|
925 |
-
#, fuzzy
|
926 |
-
msgid "Gallery ID"
|
927 |
-
msgstr "Галерия"
|
928 |
-
|
929 |
-
#: includes/class-gllr-settings.php:681
|
930 |
-
msgid "Last modified date"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: includes/class-gllr-settings.php:682
|
934 |
-
msgid "Comment count"
|
935 |
-
msgstr ""
|
936 |
-
|
937 |
-
#: includes/class-gllr-settings.php:683
|
938 |
-
msgid "\"Order\" field on the gallery edit page"
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: includes/class-gllr-settings.php:687
|
942 |
msgid "Select galleries sorting order in your galleries page."
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/class-gllr-settings.php:
|
946 |
msgid "Arrange Albums by"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-gllr-settings.php:
|
950 |
#, fuzzy
|
951 |
msgid "Read More Link Label"
|
952 |
msgstr "Текст за линка 'Прочети повече'"
|
953 |
|
954 |
-
#: includes/class-gllr-settings.php:
|
955 |
msgid "Instant Lightbox"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: includes/class-gllr-settings.php:
|
959 |
msgid ""
|
960 |
"Enable to display all images in the lightbox after clicking cover image or "
|
961 |
"URL instead of going to a single gallery page."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/class-gllr-settings.php:
|
965 |
#, fuzzy
|
966 |
msgid "Lightbox Settings"
|
967 |
msgstr "Фон на lightbox"
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
msgid "Enable Lightbox"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
msgid ""
|
979 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
980 |
"will display the original, full size image."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/class-gllr-settings.php:
|
984 |
msgid "Overlay Color"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: includes/class-gllr-settings.php:
|
988 |
msgid "Overlay Opacity"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: includes/class-gllr-settings.php:
|
992 |
#, php-format
|
993 |
msgid ""
|
994 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
995 |
"is %s)."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/class-gllr-settings.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Slideshow"
|
1001 |
msgstr "Слайдшоу"
|
1002 |
|
1003 |
-
#: includes/class-gllr-settings.php:
|
1004 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/class-gllr-settings.php:
|
1008 |
#, fuzzy
|
1009 |
msgid "Slideshow Duration"
|
1010 |
msgstr "Интервал за слайдшоу"
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
msgid "ms"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid "Slideshow interval duration between two images."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
#, fuzzy
|
1022 |
msgid "Lightbox Helpers"
|
1023 |
msgstr "Фон на lightbox"
|
1024 |
|
1025 |
-
#: includes/class-gllr-settings.php:
|
1026 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: includes/class-gllr-settings.php:
|
1030 |
#, fuzzy
|
1031 |
msgid "Lightbox Thumbnails"
|
1032 |
msgstr "Размер на изображението за корица на албума"
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
msgid "Enable to use a lightbox helper navigation between images."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/class-gllr-settings.php:
|
1039 |
msgid "Lightbox Thumbnails Position"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Top"
|
1045 |
msgstr "отгоре"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
#, fuzzy
|
1049 |
msgid "Lightbox Button Label"
|
1050 |
msgstr "Фон на lightbox"
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
#, fuzzy
|
1054 |
msgid "Read More"
|
1055 |
msgstr "Читати далі"
|
1056 |
|
1057 |
-
#: includes/class-gllr-settings.php:
|
1058 |
msgid "Download Button"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/class-gllr-settings.php:
|
1062 |
msgid "Enable to display download button."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/class-gllr-settings.php:
|
1066 |
msgid "Single Lightbox"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/class-gllr-settings.php:
|
1070 |
msgid ""
|
1071 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1072 |
"page."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Social Sharing Buttons Settings"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
msgid "Social Buttons"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/class-gllr-settings.php:
|
1084 |
msgid "Enable social sharing buttons in the lightbox."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/class-gllr-settings.php:
|
1088 |
msgid "Social Networks"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/class-gllr-settings.php:
|
1092 |
#, fuzzy
|
1093 |
msgid "Counter"
|
1094 |
msgstr "Интервал за слайдшоу"
|
1095 |
|
1096 |
-
#: includes/class-gllr-settings.php:
|
1097 |
msgid ""
|
1098 |
"Enable to show likes counter for each social button (not available for "
|
1099 |
"Google +1)."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/class-gllr-settings.php:
|
1103 |
#, fuzzy
|
1104 |
msgid "Demo Data"
|
1105 |
msgstr "Демо дані"
|
1106 |
|
1107 |
-
#: includes/class-gllr-settings.php:
|
1108 |
msgid ""
|
1109 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1110 |
"page with a list of all galleries."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/class-gllr-settings.php:
|
1114 |
#, fuzzy
|
1115 |
msgid "Gallery Post Type"
|
1116 |
msgstr "Шорткод за галерия"
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
msgid ""
|
1120 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1121 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1123,30 +1178,25 @@ msgid ""
|
|
1123 |
"used."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/class-gllr-settings.php:
|
1127 |
#, fuzzy
|
1128 |
msgid "Gallery Slug"
|
1129 |
msgstr "Галерия"
|
1130 |
|
1131 |
-
#: includes/class-gllr-settings.php:
|
1132 |
msgid "Enter the unique gallery slug."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: includes/class-gllr-settings.php:
|
1136 |
#, fuzzy
|
1137 |
msgid "Activate Now"
|
1138 |
msgstr "Активовані плагіни"
|
1139 |
|
1140 |
-
#: includes/class-gllr-settings.php:
|
1141 |
-
#, fuzzy
|
1142 |
-
msgid "Install Now"
|
1143 |
-
msgstr "Встановити Зараз"
|
1144 |
-
|
1145 |
-
#: includes/class-gllr-settings.php:965
|
1146 |
msgid "Enable to include galleries to your website search."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/class-gllr-settings.php:
|
1150 |
#, php-format
|
1151 |
msgid "%s is required."
|
1152 |
msgstr ""
|
@@ -1293,10 +1343,6 @@ msgstr "Установка %"
|
|
1293 |
#~ msgid "Learn more"
|
1294 |
#~ msgstr "Читати далі"
|
1295 |
|
1296 |
-
#, fuzzy
|
1297 |
-
#~ msgid "Activate"
|
1298 |
-
#~ msgstr "Активовані плагіни"
|
1299 |
-
|
1300 |
#, fuzzy
|
1301 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1302 |
#~ msgstr "Показване на Like бутони в lightbox"
|
@@ -1480,10 +1526,6 @@ msgstr "Установка %"
|
|
1480 |
#~ msgid "Select a background color"
|
1481 |
#~ msgstr "Изберете цвят за фон"
|
1482 |
|
1483 |
-
#, fuzzy
|
1484 |
-
#~ msgid "Sort galleries by"
|
1485 |
-
#~ msgstr "Подреди изображенията по"
|
1486 |
-
|
1487 |
#~ msgid "Width (in px)"
|
1488 |
#~ msgstr "Ширина (в px)"
|
1489 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:52+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Petya <p@pipermagus.com>\n"
|
9 |
"Language: bg_BG\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Настройки на галерията"
|
23 |
|
24 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Настройки на галерията"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
#, fuzzy
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Оновити до Pro"
|
33 |
|
34 |
+
#: gallery-plugin.php:340
|
35 |
msgid "Return to all albums"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: gallery-plugin.php:354
|
39 |
msgid "See images »"
|
40 |
msgstr "Виж изображенията »"
|
41 |
|
42 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
43 |
msgid "Galleries"
|
44 |
msgstr "Галерии"
|
45 |
|
46 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
47 |
msgid "Gallery"
|
48 |
msgstr "Галерия"
|
49 |
|
50 |
+
#: gallery-plugin.php:444
|
51 |
msgid "Add New Gallery"
|
52 |
msgstr "Добави нова галерия"
|
53 |
|
54 |
+
#: gallery-plugin.php:445
|
55 |
msgid "Edit Gallery"
|
56 |
msgstr "Редактирай галерия"
|
57 |
|
58 |
+
#: gallery-plugin.php:446
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Нова галерия"
|
61 |
|
62 |
+
#: gallery-plugin.php:447
|
63 |
msgid "View Gallery"
|
64 |
msgstr "Преглед на галерия"
|
65 |
|
66 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
67 |
#, fuzzy
|
68 |
msgid "Search Galleries"
|
69 |
msgstr "Галерии"
|
70 |
|
71 |
+
#: gallery-plugin.php:449
|
72 |
msgid "No Gallery found"
|
73 |
msgstr "Няма намерена галерия"
|
74 |
|
75 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
76 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
77 |
+
#: gallery-plugin.php:3332
|
78 |
#, fuzzy
|
79 |
msgid "Gallery Categories"
|
80 |
msgstr "Размер на изображението в галерия"
|
81 |
|
82 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Category"
|
85 |
msgstr "Размер на изображението в галерия"
|
86 |
|
87 |
+
#: gallery-plugin.php:473
|
88 |
msgid "Add Gallery Category"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:474
|
92 |
#, fuzzy
|
93 |
msgid "Add New Gallery Category"
|
94 |
msgstr "Добави нова галерия"
|
95 |
|
96 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
97 |
msgid "Edit Gallery Category"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: gallery-plugin.php:477
|
101 |
msgid "New Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
105 |
msgid "View Gallery Category"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:480
|
109 |
msgid "Find Gallery Category"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: gallery-plugin.php:481
|
113 |
msgid "No Gallery Categories found"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: gallery-plugin.php:482
|
117 |
msgid "No Gallery Categories found in Trash"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: gallery-plugin.php:483
|
121 |
msgid "Parent Gallery Category"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: gallery-plugin.php:484
|
125 |
msgid "Gallery Categories list navigation"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: gallery-plugin.php:485
|
129 |
msgid "Gallery Categories list"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: gallery-plugin.php:533
|
133 |
msgid "Gallery Shortcode"
|
134 |
msgstr "Шорткод за галерия"
|
135 |
|
136 |
+
#: gallery-plugin.php:542
|
137 |
msgid ""
|
138 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
139 |
"widgets by using the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: gallery-plugin.php:546
|
143 |
msgid ""
|
144 |
"Add a gallery cover including featured image, description, and a link to "
|
145 |
"your single gallery using the following shortcode:"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: gallery-plugin.php:659
|
149 |
#, fuzzy
|
150 |
msgid "Note"
|
151 |
msgstr "Примітка"
|
152 |
|
153 |
+
#: gallery-plugin.php:659
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"When deleting a category, the galleries that belong to this category will "
|
157 |
"not be deleted. These galleries will be moved to the category %s."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: gallery-plugin.php:670
|
161 |
+
#, fuzzy
|
162 |
+
msgid "Sort Galleries in Category by"
|
163 |
+
msgstr "Подреди изображенията по"
|
164 |
+
|
165 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
166 |
+
#: includes/class-gllr-settings.php:711
|
167 |
+
#, fuzzy
|
168 |
+
msgid "Gallery ID"
|
169 |
+
msgstr "Галерия"
|
170 |
+
|
171 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
172 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
173 |
+
#: includes/class-gllr-settings.php:712
|
174 |
+
msgid "Title"
|
175 |
+
msgstr "Име"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
178 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
179 |
+
msgid "Date"
|
180 |
+
msgstr "Дата "
|
181 |
+
|
182 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
183 |
+
#: includes/class-gllr-settings.php:714
|
184 |
+
msgid "Last modified date"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
188 |
+
#: includes/class-gllr-settings.php:715
|
189 |
+
msgid "Comment count"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
193 |
+
#: includes/class-gllr-settings.php:716
|
194 |
+
msgid "\"Order\" field on the gallery edit page"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
198 |
+
#: includes/class-gllr-settings.php:717
|
199 |
+
msgid "Author"
|
200 |
+
msgstr "Автор "
|
201 |
+
|
202 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
203 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
204 |
+
msgid "Random"
|
205 |
+
msgstr "Произволен"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
208 |
+
#, fuzzy
|
209 |
+
#| msgid "Settings"
|
210 |
+
msgid "Plugin Settings"
|
211 |
+
msgstr "Настройки"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
214 |
+
msgid "Select galleries sorting order in your category."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
218 |
#, fuzzy
|
219 |
msgid "Shortcode"
|
220 |
msgstr "Шорткод за галерия"
|
221 |
|
222 |
+
#: gallery-plugin.php:749
|
223 |
msgid "All Gallery Categories"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:827
|
227 |
msgid "You can't delete default gallery category."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
231 |
msgid "Sorry, nothing found."
|
232 |
msgstr "Съжалявам, нищо не е намерено."
|
233 |
|
234 |
+
#: gallery-plugin.php:1717
|
235 |
#, fuzzy
|
236 |
msgid "Featured Image"
|
237 |
msgstr "Мініатюра"
|
238 |
|
239 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
240 |
#, fuzzy
|
241 |
msgid "Images"
|
242 |
msgstr "Изображение"
|
243 |
|
244 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
#, fuzzy, php-format
|
246 |
msgid "%s Settings"
|
247 |
msgstr "Перейти до Налаштувань %s"
|
248 |
|
249 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
250 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
251 |
msgid "Settings"
|
252 |
msgstr "Настройки"
|
253 |
|
254 |
+
#: gallery-plugin.php:1838
|
255 |
msgid "FAQ"
|
256 |
msgstr "Често задавани въпроси"
|
257 |
|
258 |
+
#: gallery-plugin.php:1839
|
259 |
msgid "Support"
|
260 |
msgstr "Поддръжка"
|
261 |
|
262 |
+
#: gallery-plugin.php:1878
|
263 |
msgid "Updating images..."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: gallery-plugin.php:1879
|
267 |
#, fuzzy
|
268 |
msgid "No images found."
|
269 |
msgstr "Няма намерена галерия"
|
270 |
|
271 |
+
#: gallery-plugin.php:1880
|
272 |
msgid "All images were updated."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: gallery-plugin.php:1881
|
276 |
#, fuzzy
|
277 |
msgid "Error."
|
278 |
msgstr "ПОМИЛКА:"
|
279 |
|
280 |
+
#: gallery-plugin.php:1893
|
281 |
msgid ""
|
282 |
"You are about to remove these items from this gallery.\n"
|
283 |
" 'Cancel' to stop, 'OK' to delete."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: gallery-plugin.php:1894
|
287 |
msgid ""
|
288 |
"You are about to remove this image from the gallery.\n"
|
289 |
" 'Cancel' to stop, 'OK' to delete."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: gallery-plugin.php:1895
|
293 |
msgid ""
|
294 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
295 |
"switching?"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1896
|
299 |
msgid "Insert Media"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: gallery-plugin.php:1897
|
303 |
msgid "Insert"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: gallery-plugin.php:1898
|
307 |
+
msgid "Gallery has been successfully added!"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
311 |
#, fuzzy
|
312 |
msgid "Image size not defined"
|
313 |
msgstr "Размер на изображението"
|
314 |
|
315 |
+
#: gallery-plugin.php:2455
|
316 |
msgid ""
|
317 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
318 |
"reload images manually."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
322 |
msgid "Invalid path"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: gallery-plugin.php:2607
|
326 |
msgid "List View"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: gallery-plugin.php:2608
|
330 |
msgid "Grid View"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: gallery-plugin.php:2665
|
334 |
#, fuzzy
|
335 |
msgid "Filter"
|
336 |
msgstr "Фільтр"
|
337 |
|
338 |
+
#: gallery-plugin.php:2669
|
339 |
msgid "Empty Trash"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: gallery-plugin.php:2692
|
343 |
#, fuzzy
|
344 |
msgid "No images found"
|
345 |
msgstr "Няма намерена галерия"
|
346 |
|
347 |
+
#: gallery-plugin.php:2745
|
348 |
msgid "Select bulk action"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: gallery-plugin.php:2747
|
352 |
msgid "Bulk Actions"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: gallery-plugin.php:2757
|
356 |
#, fuzzy
|
357 |
msgid "Apply"
|
358 |
msgstr "Застосувати фільтр"
|
359 |
|
360 |
+
#: gallery-plugin.php:2764
|
361 |
#, fuzzy
|
362 |
msgid "Delete from Gallery"
|
363 |
msgstr "Нова галерия"
|
364 |
|
365 |
+
#: gallery-plugin.php:2773
|
366 |
msgid "Bulk Select"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: gallery-plugin.php:2774
|
370 |
msgid "Cancel Selection"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: gallery-plugin.php:2775
|
374 |
msgid "Delete Selected"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: gallery-plugin.php:2786
|
378 |
#, fuzzy
|
379 |
msgid "File"
|
380 |
msgstr "Імпорт пройшов успішно, але файл %s видалити не вдалося"
|
381 |
|
382 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
383 |
msgid "Dimensions"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
387 |
msgid "Alt Text"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
391 |
msgid "URL"
|
392 |
msgstr "URL"
|
393 |
|
394 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
395 |
msgid ""
|
396 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
397 |
"to open a full size image."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: gallery-plugin.php:2872
|
401 |
#, fuzzy
|
402 |
msgid "Remove Image from Gallery"
|
403 |
msgstr "Нова галерия"
|
404 |
|
405 |
+
#: gallery-plugin.php:2875
|
406 |
#, fuzzy
|
407 |
msgid "Edit Image Info"
|
408 |
msgstr "ID на изображението"
|
409 |
|
410 |
+
#: gallery-plugin.php:2876
|
411 |
msgid "Deselect"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: gallery-plugin.php:2888
|
415 |
msgid "File name"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: gallery-plugin.php:2889
|
419 |
msgid "File type"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: gallery-plugin.php:2914
|
423 |
#, fuzzy
|
424 |
msgid "Description"
|
425 |
msgstr "Опис слайда"
|
426 |
|
427 |
+
#: gallery-plugin.php:2920
|
428 |
#, fuzzy
|
429 |
msgid "Lightbox Button URL"
|
430 |
msgstr "Фон на lightbox"
|
431 |
|
432 |
+
#: gallery-plugin.php:2927
|
433 |
msgid "New Tab"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: gallery-plugin.php:2929
|
437 |
msgid "Enable to open URLs above in a new tab."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: gallery-plugin.php:2934
|
441 |
msgid "Go Pro"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: gallery-plugin.php:2940
|
445 |
msgid "Edit more details"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: gallery-plugin.php:2942
|
449 |
#, fuzzy
|
450 |
msgid "Remove from Gallery"
|
451 |
msgstr "Нова галерия"
|
452 |
|
453 |
+
#: gallery-plugin.php:2978
|
454 |
#, php-format
|
455 |
msgid "Select %s"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: gallery-plugin.php:2991
|
459 |
#, php-format
|
460 |
msgid "Edit “%s”"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: gallery-plugin.php:2999
|
464 |
#, fuzzy
|
465 |
msgid "Edit Attachment Info"
|
466 |
msgstr "ID на изображението"
|
467 |
|
468 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
469 |
#, fuzzy
|
470 |
msgid "Edit"
|
471 |
msgstr "Змінити"
|
472 |
|
473 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
474 |
msgid "Trash"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
478 |
msgid "Delete Permanently"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
482 |
#, php-format
|
483 |
msgid "View “%s”"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
487 |
#, fuzzy
|
488 |
msgid "View"
|
489 |
msgstr "Переглянути Автомобіль"
|
490 |
|
491 |
+
#: gallery-plugin.php:3048
|
492 |
#, fuzzy
|
493 |
msgid "Attach"
|
494 |
msgstr "ID на изображението"
|
495 |
|
496 |
+
#: gallery-plugin.php:3056
|
497 |
msgid "Restore"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: gallery-plugin.php:3086
|
501 |
msgid "A list or dropdown of Gallery categories."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: gallery-plugin.php:3131
|
505 |
msgid "Select Gallery Category"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: gallery-plugin.php:3189
|
509 |
#, fuzzy
|
510 |
msgid "Title:"
|
511 |
msgstr "Име"
|
512 |
|
513 |
+
#: gallery-plugin.php:3192
|
514 |
msgid "Display as dropdown"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: gallery-plugin.php:3194
|
518 |
msgid "Show gallery counts"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:3196
|
522 |
msgid "Show hierarchy"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: gallery-plugin.php:3312
|
526 |
#, fuzzy
|
527 |
msgid "Warning"
|
528 |
msgstr "Увага"
|
529 |
|
530 |
+
#: gallery-plugin.php:3312
|
531 |
msgid "You can add only images to the gallery"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
535 |
#, fuzzy
|
536 |
msgid "no title"
|
537 |
msgstr "Име"
|
538 |
|
539 |
+
#: gallery-plugin.php:3377
|
540 |
#, fuzzy
|
541 |
msgid ""
|
542 |
"Display an album image with the description and the link to a single gallery "
|
545 |
"Ако искате да покажете кратко описание, заедно със screenshot и линк към "
|
546 |
"страницата с галерията"
|
547 |
|
548 |
+
#: gallery-plugin.php:3381
|
549 |
#, fuzzy
|
550 |
msgid "Sorry, no gallery found."
|
551 |
msgstr "Съжалявам, нищо не е намерено."
|
583 |
msgid "License Key"
|
584 |
msgstr "Ліцензійний ключ"
|
585 |
|
586 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
587 |
#, fuzzy
|
588 |
msgid "Settings saved"
|
589 |
msgstr "Налаштування збережено."
|
590 |
|
591 |
+
#: includes/class-gllr-settings.php:256
|
592 |
#, fuzzy
|
593 |
msgid "Please, enable JavaScript in Your browser."
|
594 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
595 |
|
596 |
+
#: includes/class-gllr-settings.php:260
|
597 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/class-gllr-settings.php:261
|
601 |
#, fuzzy
|
602 |
msgid "Update Images"
|
603 |
msgstr "подреди изображенията"
|
604 |
|
605 |
+
#: includes/class-gllr-settings.php:276
|
606 |
#, fuzzy
|
607 |
msgid "Gallery Images"
|
608 |
msgstr "Размер на изображението в галерия"
|
609 |
|
610 |
+
#: includes/class-gllr-settings.php:281
|
611 |
msgid "Images adding requires JavaScript."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/class-gllr-settings.php:284
|
615 |
msgid "Add Media"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/class-gllr-settings.php:293
|
619 |
msgid "The grid view for the Gallery images requires JavaScript."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/class-gllr-settings.php:293
|
623 |
msgid "Switch to the list view"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: includes/class-gllr-settings.php:320
|
627 |
+
#, fuzzy
|
628 |
+
msgid "Add Gallery to the Slider"
|
629 |
+
msgstr "Добави нова галерия"
|
630 |
+
|
631 |
+
#: includes/class-gllr-settings.php:332
|
632 |
+
#, fuzzy
|
633 |
+
msgid "Activate"
|
634 |
+
msgstr "Активовані плагіни"
|
635 |
+
|
636 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
637 |
+
#, fuzzy
|
638 |
+
msgid "Install Now"
|
639 |
+
msgstr "Встановити Зараз"
|
640 |
+
|
641 |
+
#: includes/class-gllr-settings.php:337
|
642 |
+
msgid "Add"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/class-gllr-settings.php:340
|
646 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: includes/class-gllr-settings.php:351
|
650 |
#, fuzzy
|
651 |
msgid "Single Gallery Settings"
|
652 |
msgstr "Настройки на галерията"
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:353
|
655 |
#, php-format
|
656 |
msgid "Enable to configure single gallery settings and disable %s."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
660 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
661 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
662 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
663 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
664 |
#, fuzzy
|
665 |
msgid "Close"
|
666 |
msgstr "Закрити"
|
667 |
|
668 |
+
#: includes/class-gllr-settings.php:369
|
669 |
#, fuzzy
|
670 |
msgid "Gallery Layout"
|
671 |
msgstr "Няма намерена галерия"
|
672 |
|
673 |
+
#: includes/class-gllr-settings.php:374
|
674 |
msgid "Grid"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:380
|
678 |
msgid "Masonry"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: includes/class-gllr-settings.php:393
|
682 |
msgid "Number of Columns"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: includes/class-gllr-settings.php:396
|
686 |
#, php-format
|
687 |
msgid "Number of gallery columns (default is %s)."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
691 |
#, fuzzy
|
692 |
msgid "Image Size"
|
693 |
msgstr "Размер на изображението"
|
694 |
|
695 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
696 |
#, fuzzy
|
697 |
msgid "Custom"
|
698 |
msgstr "Користувацьке"
|
699 |
|
700 |
+
#: includes/class-gllr-settings.php:408
|
701 |
msgid ""
|
702 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/class-gllr-settings.php:412
|
706 |
#, fuzzy
|
707 |
msgid "Custom Image Size"
|
708 |
msgstr "Размер на изображението"
|
709 |
|
710 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
711 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
712 |
msgid "px"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/class-gllr-settings.php:415
|
716 |
msgid ""
|
717 |
"Adjust these values based on the number of columns in your gallery. This "
|
718 |
"won't effect the full size of your images in the lightbox."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-gllr-settings.php:426
|
722 |
#, fuzzy
|
723 |
msgid "Crop Images"
|
724 |
msgstr "Подреди изображенията"
|
725 |
|
726 |
+
#: includes/class-gllr-settings.php:428
|
727 |
msgid ""
|
728 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
729 |
"to resize images automatically using their aspect ratio."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
733 |
#, fuzzy
|
734 |
msgid "Crop Position"
|
735 |
msgstr "Позиция за изрязване"
|
736 |
|
737 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
738 |
msgid "Select crop position base (by default: center)."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/class-gllr-settings.php:457
|
742 |
#, fuzzy
|
743 |
msgid "Image Title"
|
744 |
msgstr "Размер на изображението"
|
745 |
|
746 |
+
#: includes/class-gllr-settings.php:459
|
747 |
msgid "Enable to display image title along with the gallery image."
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: includes/class-gllr-settings.php:470
|
751 |
#, fuzzy
|
752 |
msgid "Image Title Position"
|
753 |
msgstr "Размер на изображението"
|
754 |
|
755 |
+
#: includes/class-gllr-settings.php:475
|
756 |
#, fuzzy
|
757 |
msgid "Under image"
|
758 |
msgstr "подреди изображенията"
|
759 |
|
760 |
+
#: includes/class-gllr-settings.php:481
|
761 |
msgid "On mouse hover"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/class-gllr-settings.php:494
|
765 |
#, fuzzy
|
766 |
msgid "Image Border"
|
767 |
msgstr "Изображения с рамка"
|
768 |
|
769 |
+
#: includes/class-gllr-settings.php:496
|
770 |
msgid ""
|
771 |
"Enable images border using the styles defined for Image Border Size and "
|
772 |
"Color options."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: includes/class-gllr-settings.php:500
|
776 |
#, fuzzy
|
777 |
msgid "Image Border Size"
|
778 |
msgstr "Размер на изображението"
|
779 |
|
780 |
+
#: includes/class-gllr-settings.php:503
|
781 |
#, php-format
|
782 |
msgid "Gallery image border width (default is %s)"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/class-gllr-settings.php:507
|
786 |
#, fuzzy
|
787 |
msgid "Image Border Color"
|
788 |
msgstr "Изберете цвят за рамката"
|
789 |
|
790 |
+
#: includes/class-gllr-settings.php:520
|
791 |
msgid "Pagination"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: includes/class-gllr-settings.php:523
|
795 |
msgid ""
|
796 |
"Enable pagination for images to limit number of images displayed on a single "
|
797 |
"gallery page."
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/class-gllr-settings.php:527
|
801 |
#, fuzzy
|
802 |
msgid "Number of Images"
|
803 |
msgstr "Брой изображения на ред"
|
804 |
|
805 |
+
#: includes/class-gllr-settings.php:530
|
806 |
#, php-format
|
807 |
msgid "Number of images displayed per page (default is %d)."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/class-gllr-settings.php:540
|
811 |
#, fuzzy
|
812 |
msgid "Sort Images by"
|
813 |
msgstr "Подреди изображенията по"
|
814 |
|
815 |
+
#: includes/class-gllr-settings.php:543
|
816 |
msgid "Manually (default)"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/class-gllr-settings.php:544
|
820 |
#, fuzzy
|
821 |
msgid "Image ID"
|
822 |
msgstr "Изображение"
|
823 |
|
824 |
+
#: includes/class-gllr-settings.php:545
|
825 |
#, fuzzy
|
826 |
msgid "Name"
|
827 |
msgstr "Им'я"
|
828 |
|
829 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
830 |
msgid ""
|
831 |
"Select images sorting order in your gallery. By default, you can sort images "
|
832 |
"manually in the images tab."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:553
|
836 |
#, fuzzy
|
837 |
msgid "Arrange Images by"
|
838 |
msgstr "Подреди изображенията по"
|
839 |
|
840 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
841 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
845 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/class-gllr-settings.php:562
|
849 |
#, fuzzy
|
850 |
msgid "Back Link"
|
851 |
msgstr "URL за линка 'Назад'"
|
852 |
|
853 |
+
#: includes/class-gllr-settings.php:564
|
854 |
msgid ""
|
855 |
"Enable to show a back link in a single gallery page which navigate to a "
|
856 |
"previous page."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/class-gllr-settings.php:568
|
860 |
#, fuzzy
|
861 |
msgid "Back Link URL"
|
862 |
msgstr "URL за линка 'Назад'"
|
863 |
|
864 |
+
#: includes/class-gllr-settings.php:571
|
865 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/class-gllr-settings.php:575
|
869 |
#, fuzzy
|
870 |
msgid "Back Link Label"
|
871 |
msgstr "URL за линка 'Назад'"
|
872 |
|
873 |
+
#: includes/class-gllr-settings.php:581
|
874 |
#, fuzzy
|
875 |
msgid "Back Link with Shortcode"
|
876 |
msgstr "Показване на линк 'Назад' в шорткода"
|
877 |
|
878 |
+
#: includes/class-gllr-settings.php:584
|
879 |
#, fuzzy
|
880 |
msgid "Enable to display a back link on a page where shortcode is used."
|
881 |
msgstr "Показване на линк 'Назад' в шорткода"
|
882 |
|
883 |
+
#: includes/class-gllr-settings.php:595
|
884 |
#, fuzzy
|
885 |
msgid "Cover Settings"
|
886 |
msgstr "Настройки на галерията"
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:600
|
889 |
#, fuzzy
|
890 |
msgid "Galleries Page"
|
891 |
msgstr "Галерии"
|
892 |
|
893 |
+
#: includes/class-gllr-settings.php:608
|
894 |
msgid "Base page where all existing galleries will be displayed."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class-gllr-settings.php:612
|
898 |
msgid "Albums Displaying"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class-gllr-settings.php:615
|
902 |
msgid "Column"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/class-gllr-settings.php:616
|
906 |
msgid "Rows"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/class-gllr-settings.php:618
|
910 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/class-gllr-settings.php:622
|
914 |
msgid "Column Alignment"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: includes/class-gllr-settings.php:625
|
918 |
msgid "Left"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/class-gllr-settings.php:626
|
922 |
msgid "Right"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/class-gllr-settings.php:627
|
926 |
msgid "Center"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/class-gllr-settings.php:629
|
930 |
msgid "Select the column alignment."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:633
|
934 |
#, fuzzy
|
935 |
msgid "Cover Image Size"
|
936 |
msgstr "Размер на изображението"
|
937 |
|
938 |
+
#: includes/class-gllr-settings.php:641
|
939 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: includes/class-gllr-settings.php:645
|
943 |
msgid "Custom Cover Image Size"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:658
|
947 |
msgid "Crop Cover Images"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/class-gllr-settings.php:660
|
951 |
msgid ""
|
952 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
953 |
"Disable to resize images automatically using their aspect ratio."
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/class-gllr-settings.php:689
|
957 |
#, fuzzy
|
958 |
msgid "Cover Image Border"
|
959 |
msgstr "Изображения с рамка"
|
960 |
|
961 |
+
#: includes/class-gllr-settings.php:691
|
962 |
msgid ""
|
963 |
"Enable cover images border using the styles defined for Image Border Size "
|
964 |
"and Color."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/class-gllr-settings.php:695
|
968 |
msgid "Cover Image Border Size"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:698
|
972 |
#, php-format
|
973 |
msgid "Cover image border width (default is %s)"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:702
|
977 |
#, fuzzy
|
978 |
msgid "Cover Image Border Color"
|
979 |
msgstr "Изберете цвят за рамката"
|
980 |
|
981 |
+
#: includes/class-gllr-settings.php:708
|
982 |
#, fuzzy
|
983 |
msgid "Sort Albums by"
|
984 |
msgstr "Подреди изображенията по"
|
985 |
|
986 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
987 |
msgid "Select galleries sorting order in your galleries page."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/class-gllr-settings.php:724
|
991 |
msgid "Arrange Albums by"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/class-gllr-settings.php:733
|
995 |
#, fuzzy
|
996 |
msgid "Read More Link Label"
|
997 |
msgstr "Текст за линка 'Прочети повече'"
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:746
|
1000 |
msgid "Instant Lightbox"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/class-gllr-settings.php:749
|
1004 |
msgid ""
|
1005 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1006 |
"URL instead of going to a single gallery page."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: includes/class-gllr-settings.php:763
|
1010 |
#, fuzzy
|
1011 |
msgid "Lightbox Settings"
|
1012 |
msgstr "Фон на lightbox"
|
1013 |
|
1014 |
+
#: includes/class-gllr-settings.php:768
|
1015 |
+
msgid "Unclickable Thumbnail Images"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/class-gllr-settings.php:771
|
1019 |
+
msgid ""
|
1020 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1021 |
+
"URLs. This option also disables Lightbox."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/class-gllr-settings.php:775
|
1025 |
msgid "Enable Lightbox"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:778
|
1029 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: includes/class-gllr-settings.php:796
|
1033 |
msgid ""
|
1034 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1035 |
"will display the original, full size image."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/class-gllr-settings.php:800
|
1039 |
msgid "Overlay Color"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/class-gllr-settings.php:806
|
1043 |
msgid "Overlay Opacity"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/class-gllr-settings.php:809
|
1047 |
#, php-format
|
1048 |
msgid ""
|
1049 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1050 |
"is %s)."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/class-gllr-settings.php:819
|
1054 |
#, fuzzy
|
1055 |
msgid "Slideshow"
|
1056 |
msgstr "Слайдшоу"
|
1057 |
|
1058 |
+
#: includes/class-gllr-settings.php:821
|
1059 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/class-gllr-settings.php:825
|
1063 |
#, fuzzy
|
1064 |
msgid "Slideshow Duration"
|
1065 |
msgstr "Интервал за слайдшоу"
|
1066 |
|
1067 |
+
#: includes/class-gllr-settings.php:827
|
1068 |
msgid "ms"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/class-gllr-settings.php:828
|
1072 |
msgid "Slideshow interval duration between two images."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/class-gllr-settings.php:839
|
1076 |
#, fuzzy
|
1077 |
msgid "Lightbox Helpers"
|
1078 |
msgstr "Фон на lightbox"
|
1079 |
|
1080 |
+
#: includes/class-gllr-settings.php:841
|
1081 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/class-gllr-settings.php:845
|
1085 |
#, fuzzy
|
1086 |
msgid "Lightbox Thumbnails"
|
1087 |
msgstr "Размер на изображението за корица на албума"
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:847
|
1090 |
msgid "Enable to use a lightbox helper navigation between images."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/class-gllr-settings.php:851
|
1094 |
msgid "Lightbox Thumbnails Position"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:854
|
1098 |
#, fuzzy
|
1099 |
msgid "Top"
|
1100 |
msgstr "отгоре"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:859
|
1103 |
#, fuzzy
|
1104 |
msgid "Lightbox Button Label"
|
1105 |
msgstr "Фон на lightbox"
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:861
|
1108 |
#, fuzzy
|
1109 |
msgid "Read More"
|
1110 |
msgstr "Читати далі"
|
1111 |
|
1112 |
+
#: includes/class-gllr-settings.php:871
|
1113 |
msgid "Download Button"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/class-gllr-settings.php:873
|
1117 |
msgid "Enable to display download button."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/class-gllr-settings.php:877
|
1121 |
msgid "Single Lightbox"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/class-gllr-settings.php:879
|
1125 |
msgid ""
|
1126 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1127 |
"page."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/class-gllr-settings.php:889
|
1131 |
msgid "Social Sharing Buttons Settings"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/class-gllr-settings.php:898
|
1135 |
msgid "Social Buttons"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:900
|
1139 |
msgid "Enable social sharing buttons in the lightbox."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/class-gllr-settings.php:904
|
1143 |
msgid "Social Networks"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/class-gllr-settings.php:915
|
1147 |
#, fuzzy
|
1148 |
msgid "Counter"
|
1149 |
msgstr "Интервал за слайдшоу"
|
1150 |
|
1151 |
+
#: includes/class-gllr-settings.php:918
|
1152 |
msgid ""
|
1153 |
"Enable to show likes counter for each social button (not available for "
|
1154 |
"Google +1)."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/class-gllr-settings.php:933
|
1158 |
#, fuzzy
|
1159 |
msgid "Demo Data"
|
1160 |
msgstr "Демо дані"
|
1161 |
|
1162 |
+
#: includes/class-gllr-settings.php:935
|
1163 |
msgid ""
|
1164 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1165 |
"page with a list of all galleries."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/class-gllr-settings.php:973
|
1169 |
#, fuzzy
|
1170 |
msgid "Gallery Post Type"
|
1171 |
msgstr "Шорткод за галерия"
|
1172 |
|
1173 |
+
#: includes/class-gllr-settings.php:975
|
1174 |
msgid ""
|
1175 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1176 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1178 |
"used."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/class-gllr-settings.php:987
|
1182 |
#, fuzzy
|
1183 |
msgid "Gallery Slug"
|
1184 |
msgstr "Галерия"
|
1185 |
|
1186 |
+
#: includes/class-gllr-settings.php:991
|
1187 |
msgid "Enter the unique gallery slug."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/class-gllr-settings.php:1007
|
1191 |
#, fuzzy
|
1192 |
msgid "Activate Now"
|
1193 |
msgstr "Активовані плагіни"
|
1194 |
|
1195 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1196 |
msgid "Enable to include galleries to your website search."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/class-gllr-settings.php:1025
|
1200 |
#, php-format
|
1201 |
msgid "%s is required."
|
1202 |
msgstr ""
|
1343 |
#~ msgid "Learn more"
|
1344 |
#~ msgstr "Читати далі"
|
1345 |
|
|
|
|
|
|
|
|
|
1346 |
#, fuzzy
|
1347 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1348 |
#~ msgstr "Показване на Like бутони в lightbox"
|
1526 |
#~ msgid "Select a background color"
|
1527 |
#~ msgstr "Изберете цвят за фон"
|
1528 |
|
|
|
|
|
|
|
|
|
1529 |
#~ msgid "Width (in px)"
|
1530 |
#~ msgstr "Ширина (в px)"
|
1531 |
|
languages/gallery-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-plugin-cs_CZ.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Gallery\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Mik013\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: cs_CZ\n"
|
@@ -12,123 +12,123 @@ msgstr ""
|
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
15 |
-
"X-Generator: Poedit
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
22 |
msgid "Gallery Settings"
|
23 |
msgstr "Nastavení galerie"
|
24 |
|
25 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Obecná nastavení"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Aktualizovat na Pro"
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr "Vrátit se ke všem albům"
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "See images »"
|
39 |
msgstr "Prohlédnout obrázky »"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerie"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerie"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Přidat novou galerii"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Upravit galerii"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nová galerie"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Zobrazit galerii"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Hledat galerie"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Žádná galerie nenalezena"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Gallery Categories"
|
77 |
msgstr "Kategorie galerií"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Gallery Category"
|
81 |
msgstr "Kategorie galerie"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Add Gallery Category"
|
85 |
msgstr "Přidat kategorii galerie"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Add New Gallery Category"
|
89 |
msgstr "Přidat novou kategorii galerie"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Edit Gallery Category"
|
93 |
msgstr "Upravit kategorii galerie"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "New Gallery Category"
|
97 |
msgstr "Nová kategorie galerie"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "View Gallery Category"
|
101 |
msgstr "Zobrazit kategorii galerie"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Find Gallery Category"
|
105 |
msgstr "Najít kategorii galerie"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "No Gallery Categories found"
|
109 |
msgstr "Žádná kategorie galerie nenalezena"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "No Gallery Categories found in Trash"
|
113 |
msgstr "Žádná kategorie galerie nebyla v koši nenalezena"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Parent Gallery Category"
|
117 |
msgstr "Nadřazená kategorie galerií"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
msgstr "Navigace seznamem kategorií galerií"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Gallery Categories list"
|
125 |
msgstr "Seznam kategorií galerií"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Zkrácený kód galerie"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid ""
|
133 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
134 |
"widgets by using the following shortcode:"
|
@@ -136,7 +136,7 @@ msgstr ""
|
|
136 |
"Přidat galerii s obrázky do příspěvků, stránek, vlastních typů příspěvků "
|
137 |
"nebo widgetů pomocí následujícího zkráceného kódu:"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid ""
|
141 |
"Add a gallery cover including featured image, description, and a link to "
|
142 |
"your single gallery using the following shortcode:"
|
@@ -144,11 +144,11 @@ msgstr ""
|
|
144 |
"Přidat obal galerie včetně náhledového obrázku, popisu a odkazu na vaši "
|
145 |
"konkrétní galerii pomocí následujícího zkráceného kódu:"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "Note"
|
149 |
msgstr "Poznámka"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
@@ -157,79 +157,124 @@ msgstr ""
|
|
157 |
"Při mazání kategorie, galerie, patřící do této kategorie nebudou odstraněny. "
|
158 |
"Tyto galerie budou přesunuty do kategorie %s."
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
msgid "Shortcode"
|
162 |
msgstr "Zkrácený kód galerie"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
msgid "All Gallery Categories"
|
166 |
msgstr "Všechny kategorie galerií"
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "You can't delete default gallery category."
|
170 |
msgstr "Výchozí kategorii galerie nelze odstranit."
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Sorry, nothing found."
|
174 |
msgstr "Je nám líto, nic nenalezeno."
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "Featured Image"
|
178 |
msgstr "Náhledový obrázek"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
182 |
-
msgid "Title"
|
183 |
-
msgstr "Název"
|
184 |
-
|
185 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
186 |
msgid "Images"
|
187 |
msgstr "Obrázky"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
msgid "Author"
|
191 |
-
msgstr "Autor"
|
192 |
-
|
193 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
194 |
-
#: includes/class-gllr-settings.php:680
|
195 |
-
msgid "Date"
|
196 |
-
msgstr "Datum"
|
197 |
-
|
198 |
-
#: gallery-plugin.php:1688
|
199 |
#, php-format
|
200 |
msgid "%s Settings"
|
201 |
msgstr "%s nastavení"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavení"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "FAQ"
|
210 |
msgstr "Často kladené otázky (FAQ)"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "Support"
|
214 |
msgstr "Podpora"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Updating images..."
|
218 |
msgstr "Aktualizace obrázků..."
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "No images found."
|
222 |
msgstr "Nenalezeny žádné obrázky."
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "All images were updated."
|
226 |
msgstr "Všechny obrázky byly aktualizovány."
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Error."
|
230 |
msgstr "Chyba."
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid ""
|
234 |
"You are about to remove these items from this gallery.\n"
|
235 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -237,7 +282,7 @@ msgstr ""
|
|
237 |
"Chystáte se odstranit tyto položky z této galerie.\n"
|
238 |
" 'Cancel' pro zrušení, 'OK' pro smazání."
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid ""
|
242 |
"You are about to remove this image from the gallery.\n"
|
243 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -245,7 +290,7 @@ msgstr ""
|
|
245 |
"Chystáte se odstranit tento obrázek z této galerie.\n"
|
246 |
" 'Cancel' pro zrušení, 'OK' pro smazání."
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid ""
|
250 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
251 |
"switching?"
|
@@ -253,19 +298,25 @@ msgstr ""
|
|
253 |
"Přepnutím do jiného módu dojde ke ztrátě všech neuložených dat. Uložit dat "
|
254 |
"před přepnutím?"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Insert Media"
|
258 |
msgstr "Vložit média"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Insert"
|
262 |
msgstr "Vložit"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
msgid "Image size not defined"
|
266 |
msgstr "Velikost obrázku není definována"
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid ""
|
270 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
271 |
"reload images manually."
|
@@ -273,75 +324,75 @@ msgstr ""
|
|
273 |
"Plugin dokáže aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. "
|
274 |
"Ostatní musíte nahrát ručně."
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "Invalid path"
|
278 |
msgstr "Nesprávná cesta"
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "List View"
|
282 |
msgstr "Zobrazení seznamu"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Grid View"
|
286 |
msgstr "Zobrazení mřížky"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Filter"
|
290 |
msgstr "Filtr"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "Empty Trash"
|
294 |
msgstr "Vysypat koš"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
msgid "No images found"
|
298 |
msgstr "Nenalezeny žádné obrázky"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Select bulk action"
|
302 |
msgstr "Vyberte hromadnou akci"
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Bulk Actions"
|
306 |
msgstr "Hromadné akce"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Apply"
|
310 |
msgstr "Použít"
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Delete from Gallery"
|
314 |
msgstr "Smazat z galerie"
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Bulk Select"
|
318 |
msgstr "Hromadný výběr"
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Cancel Selection"
|
322 |
msgstr "Zrušit výběr"
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Delete Selected"
|
326 |
msgstr "Smazat vybrané"
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "File"
|
330 |
msgstr "Soubor"
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "Dimensions"
|
334 |
msgstr "Rozměry"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "Alt Text"
|
338 |
msgstr "Alternativní text (alt tag)"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "URL"
|
342 |
msgstr "URL"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid ""
|
346 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
347 |
"to open a full size image."
|
@@ -349,144 +400,140 @@ msgstr ""
|
|
349 |
"Zadejte vlastní URL pro odkaz u tohoto obrázku na jinou stránku nebo soubor. "
|
350 |
"Ponechte prázdné pro otevření obrázku v plné velikosti."
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Remove Image from Gallery"
|
354 |
msgstr "Odstranit obrázek z galerie"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Edit Image Info"
|
358 |
msgstr "Upravit informace o obrázku"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Deselect"
|
362 |
msgstr "Zrušit výběr"
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "File name"
|
366 |
msgstr "Jméno souboru"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "File type"
|
370 |
msgstr "Typ souboru"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Description"
|
374 |
msgstr "Popis"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "Lightbox Button URL"
|
378 |
msgstr "URL tlačítka v Lightboxu"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "New Tab"
|
382 |
msgstr "Nová záložka"
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Enable to open URLs above in a new tab."
|
386 |
msgstr "Zapnout otevření URL adresy na nové záložce."
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Go Pro"
|
390 |
msgstr "Přejít na PRO"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Edit more details"
|
394 |
msgstr "Upravit další detaily"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Remove from Gallery"
|
398 |
msgstr "Odstranit z galerie"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
#, php-format
|
402 |
msgid "Select %s"
|
403 |
msgstr "Vybrat %s"
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, php-format
|
407 |
msgid "Edit “%s”"
|
408 |
msgstr "Upravit “%s”"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Edit Attachment Info"
|
412 |
msgstr "Upravit informace o příloze"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "Edit"
|
416 |
msgstr "Upravit"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Trash"
|
420 |
msgstr "Koš"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Delete Permanently"
|
424 |
msgstr "Smazat trvale"
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
#, php-format
|
428 |
msgid "View “%s”"
|
429 |
msgstr "Zobrazit “%s”"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "View"
|
433 |
msgstr "Zobrazit"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "Attach"
|
437 |
msgstr "Přiložit"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "Restore"
|
441 |
msgstr "Obnovit"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "A list or dropdown of Gallery categories."
|
445 |
msgstr "Seznam nebo rozbalovací menu kategorií galerií."
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "Select Gallery Category"
|
449 |
msgstr "Vybrat kategorii galerie"
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Title:"
|
453 |
msgstr "Titulek:"
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Display as dropdown"
|
457 |
msgstr "Zobrazit jako rozbalovací menu"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "Show gallery counts"
|
461 |
msgstr "Zobrazit počet galerií"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
msgid "Show hierarchy"
|
465 |
msgstr "Zobrazit hierarchii"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Warning"
|
469 |
msgstr "Upozornění"
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "You can add only images to the gallery"
|
473 |
msgstr "Do galerie můžete přidat pouze obrázky"
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
-
msgid "or"
|
477 |
-
msgstr "anebo"
|
478 |
-
|
479 |
-
#: gallery-plugin.php:3181
|
480 |
msgid "no title"
|
481 |
msgstr "bez titulku"
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid ""
|
485 |
"Display an album image with the description and the link to a single gallery "
|
486 |
"page"
|
487 |
msgstr "Zobrazit obrázek alba s popisem a odkazem na danou stránku galerie"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid "Sorry, no gallery found."
|
491 |
msgstr "Je nám líto, žádná galerie nenalezena."
|
492 |
|
@@ -518,107 +565,131 @@ msgstr "Import / Export"
|
|
518 |
msgid "License Key"
|
519 |
msgstr "Licenční klíč"
|
520 |
|
521 |
-
#: includes/class-gllr-settings.php:
|
522 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
523 |
-
msgstr ""
|
524 |
-
"Vlastní velikost obrázku byla změněna. Je potřeba aktualizovat obrázky "
|
525 |
-
"galerie."
|
526 |
-
|
527 |
-
#: includes/class-gllr-settings.php:247
|
528 |
msgid "Settings saved"
|
529 |
msgstr "Nastavení uloženo"
|
530 |
|
531 |
-
#: includes/class-gllr-settings.php:
|
532 |
msgid "Please, enable JavaScript in Your browser."
|
533 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
534 |
|
535 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
536 |
msgid "Update Images"
|
537 |
msgstr "Aktualizace obrázků galerie"
|
538 |
|
539 |
-
#: includes/class-gllr-settings.php:
|
540 |
msgid "Gallery Images"
|
541 |
msgstr "Obrázky v galerii"
|
542 |
|
543 |
-
#: includes/class-gllr-settings.php:
|
544 |
msgid "Images adding requires JavaScript."
|
545 |
msgstr "Přidání obrázků vyžaduje JavaScript."
|
546 |
|
547 |
-
#: includes/class-gllr-settings.php:
|
548 |
msgid "Add Media"
|
549 |
msgstr "Přidat média"
|
550 |
|
551 |
-
#: includes/class-gllr-settings.php:
|
552 |
msgid "The grid view for the Gallery images requires JavaScript."
|
553 |
msgstr "Zobrazení obrázků galerie v mřížce vyžaduje JavaScript."
|
554 |
|
555 |
-
#: includes/class-gllr-settings.php:
|
556 |
msgid "Switch to the list view"
|
557 |
msgstr "Přepnout do zobrazení seznamu"
|
558 |
|
559 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
msgid "Single Gallery Settings"
|
561 |
msgstr "Nastavení konkrétní galerie"
|
562 |
|
563 |
-
#: includes/class-gllr-settings.php:
|
564 |
#, php-format
|
565 |
msgid "Enable to configure single gallery settings and disable %s."
|
566 |
msgstr "Umožňuje nastavení konkrétní galerie a zákaz %s."
|
567 |
|
568 |
-
#: includes/class-gllr-settings.php:
|
569 |
-
#: includes/class-gllr-settings.php:
|
570 |
-
#: includes/class-gllr-settings.php:
|
571 |
-
#: includes/class-gllr-settings.php:
|
572 |
-
#: includes/class-gllr-settings.php:
|
573 |
msgid "Close"
|
574 |
msgstr "Zavřít"
|
575 |
|
576 |
-
#: includes/class-gllr-settings.php:
|
577 |
msgid "Gallery Layout"
|
578 |
msgstr "Vzhled galerie"
|
579 |
|
580 |
-
#: includes/class-gllr-settings.php:
|
581 |
msgid "Grid"
|
582 |
msgstr "Mřížka"
|
583 |
|
584 |
-
#: includes/class-gllr-settings.php:
|
585 |
msgid "Masonry"
|
586 |
msgstr "Dlaždice"
|
587 |
|
588 |
-
#: includes/class-gllr-settings.php:
|
589 |
msgid "Number of Columns"
|
590 |
msgstr "Počet sloupců"
|
591 |
|
592 |
-
#: includes/class-gllr-settings.php:
|
593 |
#, php-format
|
594 |
msgid "Number of gallery columns (default is %s)."
|
595 |
msgstr "Počet sloupců galerie (výchozí hodnota je %s)."
|
596 |
|
597 |
-
#: includes/class-gllr-settings.php:
|
598 |
msgid "Image Size"
|
599 |
msgstr "Velikost obrázku"
|
600 |
|
601 |
-
#: includes/class-gllr-settings.php:
|
602 |
msgid "Custom"
|
603 |
msgstr "Vlastní"
|
604 |
|
605 |
-
#: includes/class-gllr-settings.php:
|
606 |
msgid ""
|
607 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
608 |
msgstr ""
|
609 |
"Maximální velikost obrázku galerie. \"Vlastní\" používá hodnoty rozměru "
|
610 |
"obrázku."
|
611 |
|
612 |
-
#: includes/class-gllr-settings.php:
|
613 |
msgid "Custom Image Size"
|
614 |
msgstr "Vlastní velikost obrázku"
|
615 |
|
616 |
-
#: includes/class-gllr-settings.php:
|
617 |
-
#: includes/class-gllr-settings.php:
|
618 |
msgid "px"
|
619 |
msgstr "px"
|
620 |
|
621 |
-
#: includes/class-gllr-settings.php:
|
622 |
msgid ""
|
623 |
"Adjust these values based on the number of columns in your gallery. This "
|
624 |
"won't effect the full size of your images in the lightbox."
|
@@ -626,11 +697,11 @@ msgstr ""
|
|
626 |
"Upravit tyto hodnoty v závislosti na počtu sloupců ve galerii. Toto nemá "
|
627 |
"vliv na plnou velikost vašich snímků v Lightboxu."
|
628 |
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
msgid "Crop Images"
|
631 |
msgstr "Oříznout obrázky"
|
632 |
|
633 |
-
#: includes/class-gllr-settings.php:
|
634 |
msgid ""
|
635 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
636 |
"to resize images automatically using their aspect ratio."
|
@@ -639,39 +710,39 @@ msgstr ""
|
|
639 |
"obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
|
640 |
"stran."
|
641 |
|
642 |
-
#: includes/class-gllr-settings.php:
|
643 |
msgid "Crop Position"
|
644 |
msgstr "Pozice ořezu"
|
645 |
|
646 |
-
#: includes/class-gllr-settings.php:
|
647 |
msgid "Select crop position base (by default: center)."
|
648 |
msgstr "Vybrat základnu pozice ořezu (výchozí: střed)."
|
649 |
|
650 |
-
#: includes/class-gllr-settings.php:
|
651 |
msgid "Image Title"
|
652 |
msgstr "Název obrázku"
|
653 |
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
msgid "Enable to display image title along with the gallery image."
|
656 |
msgstr "Povolit zobrazení názvu obrázku spolu s obrázkem galerie."
|
657 |
|
658 |
-
#: includes/class-gllr-settings.php:
|
659 |
msgid "Image Title Position"
|
660 |
msgstr "Umístění názvu obrázku"
|
661 |
|
662 |
-
#: includes/class-gllr-settings.php:
|
663 |
msgid "Under image"
|
664 |
msgstr "Pod obrázkem"
|
665 |
|
666 |
-
#: includes/class-gllr-settings.php:
|
667 |
msgid "On mouse hover"
|
668 |
msgstr "Při přejetí myší"
|
669 |
|
670 |
-
#: includes/class-gllr-settings.php:
|
671 |
msgid "Image Border"
|
672 |
msgstr "Rámeček obrázku"
|
673 |
|
674 |
-
#: includes/class-gllr-settings.php:
|
675 |
msgid ""
|
676 |
"Enable images border using the styles defined for Image Border Size and "
|
677 |
"Color options."
|
@@ -679,24 +750,24 @@ msgstr ""
|
|
679 |
"Povolit ohraničení obrázků s použitím stylů definovaných pro velikost "
|
680 |
"rámečku obrázku a barvu."
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
msgid "Image Border Size"
|
684 |
msgstr "Velikost rámečku obrázku"
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
#, php-format
|
688 |
msgid "Gallery image border width (default is %s)"
|
689 |
msgstr "Šířka rámečku obrázku galerie (výchozí je %s)"
|
690 |
|
691 |
-
#: includes/class-gllr-settings.php:
|
692 |
msgid "Image Border Color"
|
693 |
msgstr "Barva rámečku obrázku"
|
694 |
|
695 |
-
#: includes/class-gllr-settings.php:
|
696 |
msgid "Pagination"
|
697 |
msgstr "Stránkování"
|
698 |
|
699 |
-
#: includes/class-gllr-settings.php:
|
700 |
msgid ""
|
701 |
"Enable pagination for images to limit number of images displayed on a single "
|
702 |
"gallery page."
|
@@ -704,36 +775,32 @@ msgstr ""
|
|
704 |
"Povolit stránkování obrázků a omezit tak jejich počet zobrazených na jedné "
|
705 |
"stránce galerie."
|
706 |
|
707 |
-
#: includes/class-gllr-settings.php:
|
708 |
msgid "Number of Images"
|
709 |
msgstr "Počet obrázků"
|
710 |
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
#, php-format
|
713 |
msgid "Number of images displayed per page (default is %d)."
|
714 |
msgstr "Počet zobrazovaných obrázků na stránku (výchozí hodnota je %d)."
|
715 |
|
716 |
-
#: includes/class-gllr-settings.php:
|
717 |
msgid "Sort Images by"
|
718 |
msgstr "Řazení obrázků dle"
|
719 |
|
720 |
-
#: includes/class-gllr-settings.php:
|
721 |
msgid "Manually (default)"
|
722 |
msgstr "Ručně (výchozí)"
|
723 |
|
724 |
-
#: includes/class-gllr-settings.php:
|
725 |
msgid "Image ID"
|
726 |
msgstr "ID obrázku"
|
727 |
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
msgid "Name"
|
730 |
msgstr "Jméno"
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
-
msgid "Random"
|
734 |
-
msgstr "Náhodně"
|
735 |
-
|
736 |
-
#: includes/class-gllr-settings.php:516
|
737 |
msgid ""
|
738 |
"Select images sorting order in your gallery. By default, you can sort images "
|
739 |
"manually in the images tab."
|
@@ -741,23 +808,23 @@ msgstr ""
|
|
741 |
"Zvolte způsob řazení obrázků ve vaší galerii. Ve výchozím nastavení, můžete "
|
742 |
"snímky uspořádat ručně na kartě obrázky."
|
743 |
|
744 |
-
#: includes/class-gllr-settings.php:
|
745 |
msgid "Arrange Images by"
|
746 |
msgstr "Řazení obrázků dle"
|
747 |
|
748 |
-
#: includes/class-gllr-settings.php:
|
749 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
750 |
msgstr "Vzestupně (např. 1, 2, 3; a, b, c)"
|
751 |
|
752 |
-
#: includes/class-gllr-settings.php:
|
753 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
754 |
msgstr "Sestupně (např. 3, 2, 1; c, b, a)"
|
755 |
|
756 |
-
#: includes/class-gllr-settings.php:
|
757 |
msgid "Back Link"
|
758 |
msgstr "Zpětný odkaz"
|
759 |
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
msgid ""
|
762 |
"Enable to show a back link in a single gallery page which navigate to a "
|
763 |
"previous page."
|
@@ -765,96 +832,96 @@ msgstr ""
|
|
765 |
"Povolit zobrazení zpětného odkazu na stránce galerie, který bude odkazovat "
|
766 |
"na předchozí stránku."
|
767 |
|
768 |
-
#: includes/class-gllr-settings.php:
|
769 |
msgid "Back Link URL"
|
770 |
msgstr "URL zpětného odkazu"
|
771 |
|
772 |
-
#: includes/class-gllr-settings.php:
|
773 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
774 |
msgstr ""
|
775 |
"Zpětný URL odkaz na vlastní stránku. Ponechte nevyplněné pro použití "
|
776 |
"nastavení ze šablony galerie."
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
msgid "Back Link Label"
|
780 |
msgstr "Popisek zpětného odkazu"
|
781 |
|
782 |
-
#: includes/class-gllr-settings.php:
|
783 |
msgid "Back Link with Shortcode"
|
784 |
msgstr "Zpětný odkaz se zkráceným kódem"
|
785 |
|
786 |
-
#: includes/class-gllr-settings.php:
|
787 |
msgid "Enable to display a back link on a page where shortcode is used."
|
788 |
msgstr ""
|
789 |
"Povolit zobrazení zpětného odkazu na stránce, kde se používá zkrácený kód."
|
790 |
|
791 |
-
#: includes/class-gllr-settings.php:
|
792 |
msgid "Cover Settings"
|
793 |
msgstr "Nastavení obalu"
|
794 |
|
795 |
-
#: includes/class-gllr-settings.php:
|
796 |
msgid "Galleries Page"
|
797 |
msgstr "Stránka galerií"
|
798 |
|
799 |
-
#: includes/class-gllr-settings.php:
|
800 |
msgid "Base page where all existing galleries will be displayed."
|
801 |
msgstr "Základní stránka, kde budou zobrazeny všechny existující galerie."
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
msgid "Albums Displaying"
|
805 |
msgstr "Zobrazení alb"
|
806 |
|
807 |
-
#: includes/class-gllr-settings.php:
|
808 |
msgid "Column"
|
809 |
msgstr "Sloupec"
|
810 |
|
811 |
-
#: includes/class-gllr-settings.php:
|
812 |
msgid "Rows"
|
813 |
msgstr "Řádky"
|
814 |
|
815 |
-
#: includes/class-gllr-settings.php:
|
816 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
817 |
msgstr "Vyberte způsob, jakým se galerie zobrazí na stránce Galerie."
|
818 |
|
819 |
-
#: includes/class-gllr-settings.php:
|
820 |
msgid "Column Alignment"
|
821 |
msgstr "Zarovnání sloupce"
|
822 |
|
823 |
-
#: includes/class-gllr-settings.php:
|
824 |
msgid "Left"
|
825 |
msgstr "Vlevo"
|
826 |
|
827 |
-
#: includes/class-gllr-settings.php:
|
828 |
msgid "Right"
|
829 |
msgstr "Vpravo"
|
830 |
|
831 |
-
#: includes/class-gllr-settings.php:
|
832 |
msgid "Center"
|
833 |
msgstr "Na střed"
|
834 |
|
835 |
-
#: includes/class-gllr-settings.php:
|
836 |
msgid "Select the column alignment."
|
837 |
msgstr "Zvolte zarovnání sloupce."
|
838 |
|
839 |
-
#: includes/class-gllr-settings.php:
|
840 |
msgid "Cover Image Size"
|
841 |
msgstr "Velikost obrázku obalu"
|
842 |
|
843 |
-
#: includes/class-gllr-settings.php:
|
844 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
845 |
msgstr ""
|
846 |
"Maximální velikost obalu obrázku galerie. \"Vlastní\" používá hodnoty "
|
847 |
"rozměru obrázku."
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Custom Cover Image Size"
|
851 |
msgstr "Vlastní velikost obrázku obalu"
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
msgid "Crop Cover Images"
|
855 |
msgstr "Oříznout obrázky obalu"
|
856 |
|
857 |
-
#: includes/class-gllr-settings.php:
|
858 |
msgid ""
|
859 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
860 |
"Disable to resize images automatically using their aspect ratio."
|
@@ -863,11 +930,11 @@ msgstr ""
|
|
863 |
"obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
|
864 |
"stran."
|
865 |
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
msgid "Cover Image Border"
|
868 |
msgstr "Rámeček obrázku obalu"
|
869 |
|
870 |
-
#: includes/class-gllr-settings.php:
|
871 |
msgid ""
|
872 |
"Enable cover images border using the styles defined for Image Border Size "
|
873 |
"and Color."
|
@@ -875,56 +942,40 @@ msgstr ""
|
|
875 |
"Povolit ohraničení obrázku obalu s použitím stylů definovaných pro Velikost "
|
876 |
"rámečku obrázku a Barvu."
|
877 |
|
878 |
-
#: includes/class-gllr-settings.php:
|
879 |
msgid "Cover Image Border Size"
|
880 |
msgstr "Velikost rámečku obrázku obalu"
|
881 |
|
882 |
-
#: includes/class-gllr-settings.php:
|
883 |
#, php-format
|
884 |
msgid "Cover image border width (default is %s)"
|
885 |
msgstr "Šířka rámečku obrázku obalu (výchozí je %s)"
|
886 |
|
887 |
-
#: includes/class-gllr-settings.php:
|
888 |
msgid "Cover Image Border Color"
|
889 |
msgstr "Barva rámečku obrázku obalu"
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
msgid "Sort Albums by"
|
893 |
msgstr "Řazení alb dle"
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
-
msgid "Gallery ID"
|
897 |
-
msgstr "Podle ID galerie"
|
898 |
-
|
899 |
-
#: includes/class-gllr-settings.php:681
|
900 |
-
msgid "Last modified date"
|
901 |
-
msgstr "Podle data poslední úpravy"
|
902 |
-
|
903 |
-
#: includes/class-gllr-settings.php:682
|
904 |
-
msgid "Comment count"
|
905 |
-
msgstr "Podle počtu komentářů"
|
906 |
-
|
907 |
-
#: includes/class-gllr-settings.php:683
|
908 |
-
msgid "\"Order\" field on the gallery edit page"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: includes/class-gllr-settings.php:687
|
912 |
msgid "Select galleries sorting order in your galleries page."
|
913 |
msgstr "Zvolit způsob řazení galerií na vaší stránce galerií."
|
914 |
|
915 |
-
#: includes/class-gllr-settings.php:
|
916 |
msgid "Arrange Albums by"
|
917 |
msgstr "Řazení alb dle"
|
918 |
|
919 |
-
#: includes/class-gllr-settings.php:
|
920 |
msgid "Read More Link Label"
|
921 |
msgstr "Popisek odkazu Dozvědět se více"
|
922 |
|
923 |
-
#: includes/class-gllr-settings.php:
|
924 |
msgid "Instant Lightbox"
|
925 |
msgstr "Instant Lightbox"
|
926 |
|
927 |
-
#: includes/class-gllr-settings.php:
|
928 |
msgid ""
|
929 |
"Enable to display all images in the lightbox after clicking cover image or "
|
930 |
"URL instead of going to a single gallery page."
|
@@ -932,19 +983,29 @@ msgstr ""
|
|
932 |
"Povolit zobrazení všech obrázků v Lightboxu po kliknutí na obrázek obalu "
|
933 |
"nebo URL namísto přechodu na stránku konkrétní galerie."
|
934 |
|
935 |
-
#: includes/class-gllr-settings.php:
|
936 |
msgid "Lightbox Settings"
|
937 |
msgstr "Nastavení Lightbox"
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Enable Lightbox"
|
941 |
msgstr "Povolit Lightbox"
|
942 |
|
943 |
-
#: includes/class-gllr-settings.php:
|
944 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
945 |
msgstr "Povolit zobrazení Lightboxu při kliknutí na obrázky galerie."
|
946 |
|
947 |
-
#: includes/class-gllr-settings.php:
|
948 |
msgid ""
|
949 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
950 |
"will display the original, full size image."
|
@@ -952,15 +1013,15 @@ msgstr ""
|
|
952 |
"Zvolte maximální velikost obrázku galerie pro zobrazení v Lightboxu. "
|
953 |
"\"Výchozí\" zobrazí původní obrázek v plné velikosti."
|
954 |
|
955 |
-
#: includes/class-gllr-settings.php:
|
956 |
msgid "Overlay Color"
|
957 |
msgstr "Barva překrytí"
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid "Overlay Opacity"
|
961 |
msgstr "Průhlednost překrytí"
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
#, php-format
|
965 |
msgid ""
|
966 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -969,97 +1030,97 @@ msgstr ""
|
|
969 |
"Překrytí a průhlednost Lightboxu. Pro vypnutí průhlednosti ponechte prázdné "
|
970 |
"(výchozí je %s, maximální je %s)."
|
971 |
|
972 |
-
#: includes/class-gllr-settings.php:
|
973 |
msgid "Slideshow"
|
974 |
msgstr "Prezentace"
|
975 |
|
976 |
-
#: includes/class-gllr-settings.php:
|
977 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
978 |
msgstr "Povolit automatické spuštění prezentace při použití Lightboxu."
|
979 |
|
980 |
-
#: includes/class-gllr-settings.php:
|
981 |
msgid "Slideshow Duration"
|
982 |
msgstr "Interval prezentace"
|
983 |
|
984 |
-
#: includes/class-gllr-settings.php:
|
985 |
msgid "ms"
|
986 |
msgstr "ms"
|
987 |
|
988 |
-
#: includes/class-gllr-settings.php:
|
989 |
msgid "Slideshow interval duration between two images."
|
990 |
msgstr "Interval prezentace mezi dvěma obrázky."
|
991 |
|
992 |
-
#: includes/class-gllr-settings.php:
|
993 |
msgid "Lightbox Helpers"
|
994 |
msgstr "Lightbox pomocníci"
|
995 |
|
996 |
-
#: includes/class-gllr-settings.php:
|
997 |
msgid "Enable to display the lightbox toolbar and arrows."
|
998 |
msgstr "Povolit zobrazení lightbox nástrojů a šipek."
|
999 |
|
1000 |
-
#: includes/class-gllr-settings.php:
|
1001 |
msgid "Lightbox Thumbnails"
|
1002 |
msgstr "Lightbox miniatury"
|
1003 |
|
1004 |
-
#: includes/class-gllr-settings.php:
|
1005 |
msgid "Enable to use a lightbox helper navigation between images."
|
1006 |
msgstr "Povolit využívat Lightbox pomocníka při navigaci mezi snímky."
|
1007 |
|
1008 |
-
#: includes/class-gllr-settings.php:
|
1009 |
msgid "Lightbox Thumbnails Position"
|
1010 |
msgstr "Umístění Lightbox miniatur"
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
msgid "Top"
|
1014 |
msgstr "Nahoře"
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid "Lightbox Button Label"
|
1018 |
msgstr "Popisek tlačítka Lightboxu"
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
msgid "Read More"
|
1022 |
msgstr "Dozvědět se více"
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
msgid "Download Button"
|
1026 |
msgstr "Tlačítko Stáhnout"
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
1029 |
msgid "Enable to display download button."
|
1030 |
msgstr "Povolit zobrazení tlačítka Stáhnout."
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
msgid "Single Lightbox"
|
1034 |
msgstr "Jediný Lightbox"
|
1035 |
|
1036 |
-
#: includes/class-gllr-settings.php:
|
1037 |
msgid ""
|
1038 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1039 |
"page."
|
1040 |
msgstr "Povolit jeden Lightbox pro více galerií umístěných na jediné stránce."
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
msgid "Social Sharing Buttons Settings"
|
1044 |
msgstr "Nastavení Social Sharing Buttons"
|
1045 |
|
1046 |
-
#: includes/class-gllr-settings.php:
|
1047 |
msgid "Social Buttons"
|
1048 |
msgstr "Sociální tlačítka"
|
1049 |
|
1050 |
-
#: includes/class-gllr-settings.php:
|
1051 |
msgid "Enable social sharing buttons in the lightbox."
|
1052 |
msgstr "Povolit Social Buttons v Lightboxu."
|
1053 |
|
1054 |
-
#: includes/class-gllr-settings.php:
|
1055 |
msgid "Social Networks"
|
1056 |
msgstr "Sociální sítě"
|
1057 |
|
1058 |
-
#: includes/class-gllr-settings.php:
|
1059 |
msgid "Counter"
|
1060 |
msgstr "Zobrazit počítadlo"
|
1061 |
|
1062 |
-
#: includes/class-gllr-settings.php:
|
1063 |
msgid ""
|
1064 |
"Enable to show likes counter for each social button (not available for "
|
1065 |
"Google +1)."
|
@@ -1067,11 +1128,11 @@ msgstr ""
|
|
1067 |
"Povolit zobrazení počítadla lajků pro všechna sociální tlačítka (není k "
|
1068 |
"dispozici pro Google +1)."
|
1069 |
|
1070 |
-
#: includes/class-gllr-settings.php:
|
1071 |
msgid "Demo Data"
|
1072 |
msgstr "Demo data"
|
1073 |
|
1074 |
-
#: includes/class-gllr-settings.php:
|
1075 |
msgid ""
|
1076 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1077 |
"page with a list of all galleries."
|
@@ -1079,11 +1140,11 @@ msgstr ""
|
|
1079 |
"Nainstalovat demo data pro vytvoření galerií s obrázky, příspěvkem se "
|
1080 |
"zkrácenými kódy a stránkou se seznamem všech galerií."
|
1081 |
|
1082 |
-
#: includes/class-gllr-settings.php:
|
1083 |
msgid "Gallery Post Type"
|
1084 |
msgstr "Typ příspěvku Galerie"
|
1085 |
|
1086 |
-
#: includes/class-gllr-settings.php:
|
1087 |
msgid ""
|
1088 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1089 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1095,27 +1156,23 @@ msgstr ""
|
|
1095 |
"doporučujeme zkontrolovat nastavení dalších pluginů, které používají typ "
|
1096 |
"poříspěvku \"galerie\"."
|
1097 |
|
1098 |
-
#: includes/class-gllr-settings.php:
|
1099 |
msgid "Gallery Slug"
|
1100 |
msgstr "Název v URL Galerie"
|
1101 |
|
1102 |
-
#: includes/class-gllr-settings.php:
|
1103 |
msgid "Enter the unique gallery slug."
|
1104 |
msgstr "Vložit unikátní název v URL Galerie."
|
1105 |
|
1106 |
-
#: includes/class-gllr-settings.php:
|
1107 |
msgid "Activate Now"
|
1108 |
msgstr "Aktivovat nyní"
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
-
msgid "Install Now"
|
1112 |
-
msgstr "Instalovat nyní"
|
1113 |
-
|
1114 |
-
#: includes/class-gllr-settings.php:965
|
1115 |
msgid "Enable to include galleries to your website search."
|
1116 |
msgstr "Povolit zahrnutí galerií do vyhledávání na vašem webu."
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
#, php-format
|
1120 |
msgid "%s is required."
|
1121 |
msgstr "%s je vyžádován."
|
@@ -1209,6 +1266,9 @@ msgstr ""
|
|
1209 |
msgid "Yes, install demo now"
|
1210 |
msgstr "Ano, instalovat demo data nyní"
|
1211 |
|
|
|
|
|
|
|
1212 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1213 |
#~ msgstr "Podle řazení (vstupní pole pro řazení v dialogovém okně)"
|
1214 |
|
@@ -2024,9 +2084,6 @@ msgstr "Ano, instalovat demo data nyní"
|
|
2024 |
#~ msgid "Not enough permissions to create or update the file"
|
2025 |
#~ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
|
2026 |
|
2027 |
-
#~ msgid "File %s edited successfully."
|
2028 |
-
#~ msgstr "Soubor %s byl úspěšně upraven."
|
2029 |
-
|
2030 |
#~ msgid ""
|
2031 |
#~ "You do not have sufficient permissions to edit plugins for this site."
|
2032 |
#~ msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
|
@@ -2234,9 +2291,6 @@ msgstr "Ano, instalovat demo data nyní"
|
|
2234 |
#~ msgid "Notice"
|
2235 |
#~ msgstr "Poznámka"
|
2236 |
|
2237 |
-
#~ msgid "Add New"
|
2238 |
-
#~ msgstr "Přidat nový"
|
2239 |
-
|
2240 |
#~ msgid "Let's get started"
|
2241 |
#~ msgstr "Začněme"
|
2242 |
|
@@ -2346,9 +2400,6 @@ msgstr "Ano, instalovat demo data nyní"
|
|
2346 |
#~ msgstr ""
|
2347 |
#~ "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
|
2348 |
|
2349 |
-
#~ msgid "Activate"
|
2350 |
-
#~ msgstr "Aktivovat"
|
2351 |
-
|
2352 |
#~ msgid "Start Your Free %s-Day Trial Now"
|
2353 |
#~ msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
|
2354 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Gallery\n"
|
6 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-03-26 12:52+0200\n"
|
8 |
"Last-Translator: Mik013\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: cs_CZ\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
15 |
+
"X-Generator: Poedit 2.0.6\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
22 |
msgid "Gallery Settings"
|
23 |
msgstr "Nastavení galerie"
|
24 |
|
25 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Obecná nastavení"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Aktualizovat na Pro"
|
32 |
|
33 |
+
#: gallery-plugin.php:340
|
34 |
msgid "Return to all albums"
|
35 |
msgstr "Vrátit se ke všem albům"
|
36 |
|
37 |
+
#: gallery-plugin.php:354
|
38 |
msgid "See images »"
|
39 |
msgstr "Prohlédnout obrázky »"
|
40 |
|
41 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerie"
|
44 |
|
45 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerie"
|
48 |
|
49 |
+
#: gallery-plugin.php:444
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Přidat novou galerii"
|
52 |
|
53 |
+
#: gallery-plugin.php:445
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Upravit galerii"
|
56 |
|
57 |
+
#: gallery-plugin.php:446
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nová galerie"
|
60 |
|
61 |
+
#: gallery-plugin.php:447
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Zobrazit galerii"
|
64 |
|
65 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Hledat galerie"
|
68 |
|
69 |
+
#: gallery-plugin.php:449
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Žádná galerie nenalezena"
|
72 |
|
73 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
74 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
75 |
+
#: gallery-plugin.php:3332
|
76 |
msgid "Gallery Categories"
|
77 |
msgstr "Kategorie galerií"
|
78 |
|
79 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
80 |
msgid "Gallery Category"
|
81 |
msgstr "Kategorie galerie"
|
82 |
|
83 |
+
#: gallery-plugin.php:473
|
84 |
msgid "Add Gallery Category"
|
85 |
msgstr "Přidat kategorii galerie"
|
86 |
|
87 |
+
#: gallery-plugin.php:474
|
88 |
msgid "Add New Gallery Category"
|
89 |
msgstr "Přidat novou kategorii galerie"
|
90 |
|
91 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
92 |
msgid "Edit Gallery Category"
|
93 |
msgstr "Upravit kategorii galerie"
|
94 |
|
95 |
+
#: gallery-plugin.php:477
|
96 |
msgid "New Gallery Category"
|
97 |
msgstr "Nová kategorie galerie"
|
98 |
|
99 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
100 |
msgid "View Gallery Category"
|
101 |
msgstr "Zobrazit kategorii galerie"
|
102 |
|
103 |
+
#: gallery-plugin.php:480
|
104 |
msgid "Find Gallery Category"
|
105 |
msgstr "Najít kategorii galerie"
|
106 |
|
107 |
+
#: gallery-plugin.php:481
|
108 |
msgid "No Gallery Categories found"
|
109 |
msgstr "Žádná kategorie galerie nenalezena"
|
110 |
|
111 |
+
#: gallery-plugin.php:482
|
112 |
msgid "No Gallery Categories found in Trash"
|
113 |
msgstr "Žádná kategorie galerie nebyla v koši nenalezena"
|
114 |
|
115 |
+
#: gallery-plugin.php:483
|
116 |
msgid "Parent Gallery Category"
|
117 |
msgstr "Nadřazená kategorie galerií"
|
118 |
|
119 |
+
#: gallery-plugin.php:484
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
msgstr "Navigace seznamem kategorií galerií"
|
122 |
|
123 |
+
#: gallery-plugin.php:485
|
124 |
msgid "Gallery Categories list"
|
125 |
msgstr "Seznam kategorií galerií"
|
126 |
|
127 |
+
#: gallery-plugin.php:533
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Zkrácený kód galerie"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
msgid ""
|
133 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
134 |
"widgets by using the following shortcode:"
|
136 |
"Přidat galerii s obrázky do příspěvků, stránek, vlastních typů příspěvků "
|
137 |
"nebo widgetů pomocí následujícího zkráceného kódu:"
|
138 |
|
139 |
+
#: gallery-plugin.php:546
|
140 |
msgid ""
|
141 |
"Add a gallery cover including featured image, description, and a link to "
|
142 |
"your single gallery using the following shortcode:"
|
144 |
"Přidat obal galerie včetně náhledového obrázku, popisu a odkazu na vaši "
|
145 |
"konkrétní galerii pomocí následujícího zkráceného kódu:"
|
146 |
|
147 |
+
#: gallery-plugin.php:659
|
148 |
msgid "Note"
|
149 |
msgstr "Poznámka"
|
150 |
|
151 |
+
#: gallery-plugin.php:659
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
157 |
"Při mazání kategorie, galerie, patřící do této kategorie nebudou odstraněny. "
|
158 |
"Tyto galerie budou přesunuty do kategorie %s."
|
159 |
|
160 |
+
#: gallery-plugin.php:670
|
161 |
+
#, fuzzy
|
162 |
+
#| msgid "Parent Gallery Category"
|
163 |
+
msgid "Sort Galleries in Category by"
|
164 |
+
msgstr "Nadřazená kategorie galerií"
|
165 |
+
|
166 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
167 |
+
#: includes/class-gllr-settings.php:711
|
168 |
+
msgid "Gallery ID"
|
169 |
+
msgstr "Podle ID galerie"
|
170 |
+
|
171 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
172 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
173 |
+
#: includes/class-gllr-settings.php:712
|
174 |
+
msgid "Title"
|
175 |
+
msgstr "Název"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
178 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
179 |
+
msgid "Date"
|
180 |
+
msgstr "Datum"
|
181 |
+
|
182 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
183 |
+
#: includes/class-gllr-settings.php:714
|
184 |
+
msgid "Last modified date"
|
185 |
+
msgstr "Podle data poslední úpravy"
|
186 |
+
|
187 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
188 |
+
#: includes/class-gllr-settings.php:715
|
189 |
+
msgid "Comment count"
|
190 |
+
msgstr "Podle počtu komentářů"
|
191 |
+
|
192 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
193 |
+
#: includes/class-gllr-settings.php:716
|
194 |
+
msgid "\"Order\" field on the gallery edit page"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
198 |
+
#: includes/class-gllr-settings.php:717
|
199 |
+
msgid "Author"
|
200 |
+
msgstr "Autor"
|
201 |
+
|
202 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
203 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
204 |
+
msgid "Random"
|
205 |
+
msgstr "Náhodně"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
208 |
+
#, fuzzy
|
209 |
+
#| msgid "Settings"
|
210 |
+
msgid "Plugin Settings"
|
211 |
+
msgstr "Nastavení"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
214 |
+
#, fuzzy
|
215 |
+
#| msgid "Select galleries sorting order in your galleries page."
|
216 |
+
msgid "Select galleries sorting order in your category."
|
217 |
+
msgstr "Zvolit způsob řazení galerií na vaší stránce galerií."
|
218 |
+
|
219 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
220 |
msgid "Shortcode"
|
221 |
msgstr "Zkrácený kód galerie"
|
222 |
|
223 |
+
#: gallery-plugin.php:749
|
224 |
msgid "All Gallery Categories"
|
225 |
msgstr "Všechny kategorie galerií"
|
226 |
|
227 |
+
#: gallery-plugin.php:827
|
228 |
msgid "You can't delete default gallery category."
|
229 |
msgstr "Výchozí kategorii galerie nelze odstranit."
|
230 |
|
231 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
232 |
msgid "Sorry, nothing found."
|
233 |
msgstr "Je nám líto, nic nenalezeno."
|
234 |
|
235 |
+
#: gallery-plugin.php:1717
|
236 |
msgid "Featured Image"
|
237 |
msgstr "Náhledový obrázek"
|
238 |
|
239 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid "Images"
|
241 |
msgstr "Obrázky"
|
242 |
|
243 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#, php-format
|
245 |
msgid "%s Settings"
|
246 |
msgstr "%s nastavení"
|
247 |
|
248 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
249 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
250 |
msgid "Settings"
|
251 |
msgstr "Nastavení"
|
252 |
|
253 |
+
#: gallery-plugin.php:1838
|
254 |
msgid "FAQ"
|
255 |
msgstr "Často kladené otázky (FAQ)"
|
256 |
|
257 |
+
#: gallery-plugin.php:1839
|
258 |
msgid "Support"
|
259 |
msgstr "Podpora"
|
260 |
|
261 |
+
#: gallery-plugin.php:1878
|
262 |
msgid "Updating images..."
|
263 |
msgstr "Aktualizace obrázků..."
|
264 |
|
265 |
+
#: gallery-plugin.php:1879
|
266 |
msgid "No images found."
|
267 |
msgstr "Nenalezeny žádné obrázky."
|
268 |
|
269 |
+
#: gallery-plugin.php:1880
|
270 |
msgid "All images were updated."
|
271 |
msgstr "Všechny obrázky byly aktualizovány."
|
272 |
|
273 |
+
#: gallery-plugin.php:1881
|
274 |
msgid "Error."
|
275 |
msgstr "Chyba."
|
276 |
|
277 |
+
#: gallery-plugin.php:1893
|
278 |
msgid ""
|
279 |
"You are about to remove these items from this gallery.\n"
|
280 |
" 'Cancel' to stop, 'OK' to delete."
|
282 |
"Chystáte se odstranit tyto položky z této galerie.\n"
|
283 |
" 'Cancel' pro zrušení, 'OK' pro smazání."
|
284 |
|
285 |
+
#: gallery-plugin.php:1894
|
286 |
msgid ""
|
287 |
"You are about to remove this image from the gallery.\n"
|
288 |
" 'Cancel' to stop, 'OK' to delete."
|
290 |
"Chystáte se odstranit tento obrázek z této galerie.\n"
|
291 |
" 'Cancel' pro zrušení, 'OK' pro smazání."
|
292 |
|
293 |
+
#: gallery-plugin.php:1895
|
294 |
msgid ""
|
295 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
296 |
"switching?"
|
298 |
"Přepnutím do jiného módu dojde ke ztrátě všech neuložených dat. Uložit dat "
|
299 |
"před přepnutím?"
|
300 |
|
301 |
+
#: gallery-plugin.php:1896
|
302 |
msgid "Insert Media"
|
303 |
msgstr "Vložit média"
|
304 |
|
305 |
+
#: gallery-plugin.php:1897
|
306 |
msgid "Insert"
|
307 |
msgstr "Vložit"
|
308 |
|
309 |
+
#: gallery-plugin.php:1898
|
310 |
+
#, fuzzy
|
311 |
+
#| msgid "File %s edited successfully."
|
312 |
+
msgid "Gallery has been successfully added!"
|
313 |
+
msgstr "Soubor %s byl úspěšně upraven."
|
314 |
+
|
315 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
316 |
msgid "Image size not defined"
|
317 |
msgstr "Velikost obrázku není definována"
|
318 |
|
319 |
+
#: gallery-plugin.php:2455
|
320 |
msgid ""
|
321 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
322 |
"reload images manually."
|
324 |
"Plugin dokáže aktualizovat pouze PNG, JPEG, GIF, WPMP nebo XBM soubory. "
|
325 |
"Ostatní musíte nahrát ručně."
|
326 |
|
327 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
328 |
msgid "Invalid path"
|
329 |
msgstr "Nesprávná cesta"
|
330 |
|
331 |
+
#: gallery-plugin.php:2607
|
332 |
msgid "List View"
|
333 |
msgstr "Zobrazení seznamu"
|
334 |
|
335 |
+
#: gallery-plugin.php:2608
|
336 |
msgid "Grid View"
|
337 |
msgstr "Zobrazení mřížky"
|
338 |
|
339 |
+
#: gallery-plugin.php:2665
|
340 |
msgid "Filter"
|
341 |
msgstr "Filtr"
|
342 |
|
343 |
+
#: gallery-plugin.php:2669
|
344 |
msgid "Empty Trash"
|
345 |
msgstr "Vysypat koš"
|
346 |
|
347 |
+
#: gallery-plugin.php:2692
|
348 |
msgid "No images found"
|
349 |
msgstr "Nenalezeny žádné obrázky"
|
350 |
|
351 |
+
#: gallery-plugin.php:2745
|
352 |
msgid "Select bulk action"
|
353 |
msgstr "Vyberte hromadnou akci"
|
354 |
|
355 |
+
#: gallery-plugin.php:2747
|
356 |
msgid "Bulk Actions"
|
357 |
msgstr "Hromadné akce"
|
358 |
|
359 |
+
#: gallery-plugin.php:2757
|
360 |
msgid "Apply"
|
361 |
msgstr "Použít"
|
362 |
|
363 |
+
#: gallery-plugin.php:2764
|
364 |
msgid "Delete from Gallery"
|
365 |
msgstr "Smazat z galerie"
|
366 |
|
367 |
+
#: gallery-plugin.php:2773
|
368 |
msgid "Bulk Select"
|
369 |
msgstr "Hromadný výběr"
|
370 |
|
371 |
+
#: gallery-plugin.php:2774
|
372 |
msgid "Cancel Selection"
|
373 |
msgstr "Zrušit výběr"
|
374 |
|
375 |
+
#: gallery-plugin.php:2775
|
376 |
msgid "Delete Selected"
|
377 |
msgstr "Smazat vybrané"
|
378 |
|
379 |
+
#: gallery-plugin.php:2786
|
380 |
msgid "File"
|
381 |
msgstr "Soubor"
|
382 |
|
383 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
384 |
msgid "Dimensions"
|
385 |
msgstr "Rozměry"
|
386 |
|
387 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
388 |
msgid "Alt Text"
|
389 |
msgstr "Alternativní text (alt tag)"
|
390 |
|
391 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
392 |
msgid "URL"
|
393 |
msgstr "URL"
|
394 |
|
395 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
396 |
msgid ""
|
397 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
398 |
"to open a full size image."
|
400 |
"Zadejte vlastní URL pro odkaz u tohoto obrázku na jinou stránku nebo soubor. "
|
401 |
"Ponechte prázdné pro otevření obrázku v plné velikosti."
|
402 |
|
403 |
+
#: gallery-plugin.php:2872
|
404 |
msgid "Remove Image from Gallery"
|
405 |
msgstr "Odstranit obrázek z galerie"
|
406 |
|
407 |
+
#: gallery-plugin.php:2875
|
408 |
msgid "Edit Image Info"
|
409 |
msgstr "Upravit informace o obrázku"
|
410 |
|
411 |
+
#: gallery-plugin.php:2876
|
412 |
msgid "Deselect"
|
413 |
msgstr "Zrušit výběr"
|
414 |
|
415 |
+
#: gallery-plugin.php:2888
|
416 |
msgid "File name"
|
417 |
msgstr "Jméno souboru"
|
418 |
|
419 |
+
#: gallery-plugin.php:2889
|
420 |
msgid "File type"
|
421 |
msgstr "Typ souboru"
|
422 |
|
423 |
+
#: gallery-plugin.php:2914
|
424 |
msgid "Description"
|
425 |
msgstr "Popis"
|
426 |
|
427 |
+
#: gallery-plugin.php:2920
|
428 |
msgid "Lightbox Button URL"
|
429 |
msgstr "URL tlačítka v Lightboxu"
|
430 |
|
431 |
+
#: gallery-plugin.php:2927
|
432 |
msgid "New Tab"
|
433 |
msgstr "Nová záložka"
|
434 |
|
435 |
+
#: gallery-plugin.php:2929
|
436 |
msgid "Enable to open URLs above in a new tab."
|
437 |
msgstr "Zapnout otevření URL adresy na nové záložce."
|
438 |
|
439 |
+
#: gallery-plugin.php:2934
|
440 |
msgid "Go Pro"
|
441 |
msgstr "Přejít na PRO"
|
442 |
|
443 |
+
#: gallery-plugin.php:2940
|
444 |
msgid "Edit more details"
|
445 |
msgstr "Upravit další detaily"
|
446 |
|
447 |
+
#: gallery-plugin.php:2942
|
448 |
msgid "Remove from Gallery"
|
449 |
msgstr "Odstranit z galerie"
|
450 |
|
451 |
+
#: gallery-plugin.php:2978
|
452 |
#, php-format
|
453 |
msgid "Select %s"
|
454 |
msgstr "Vybrat %s"
|
455 |
|
456 |
+
#: gallery-plugin.php:2991
|
457 |
#, php-format
|
458 |
msgid "Edit “%s”"
|
459 |
msgstr "Upravit “%s”"
|
460 |
|
461 |
+
#: gallery-plugin.php:2999
|
462 |
msgid "Edit Attachment Info"
|
463 |
msgstr "Upravit informace o příloze"
|
464 |
|
465 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
466 |
msgid "Edit"
|
467 |
msgstr "Upravit"
|
468 |
|
469 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
470 |
msgid "Trash"
|
471 |
msgstr "Koš"
|
472 |
|
473 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
474 |
msgid "Delete Permanently"
|
475 |
msgstr "Smazat trvale"
|
476 |
|
477 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
478 |
#, php-format
|
479 |
msgid "View “%s”"
|
480 |
msgstr "Zobrazit “%s”"
|
481 |
|
482 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
483 |
msgid "View"
|
484 |
msgstr "Zobrazit"
|
485 |
|
486 |
+
#: gallery-plugin.php:3048
|
487 |
msgid "Attach"
|
488 |
msgstr "Přiložit"
|
489 |
|
490 |
+
#: gallery-plugin.php:3056
|
491 |
msgid "Restore"
|
492 |
msgstr "Obnovit"
|
493 |
|
494 |
+
#: gallery-plugin.php:3086
|
495 |
msgid "A list or dropdown of Gallery categories."
|
496 |
msgstr "Seznam nebo rozbalovací menu kategorií galerií."
|
497 |
|
498 |
+
#: gallery-plugin.php:3131
|
499 |
msgid "Select Gallery Category"
|
500 |
msgstr "Vybrat kategorii galerie"
|
501 |
|
502 |
+
#: gallery-plugin.php:3189
|
503 |
msgid "Title:"
|
504 |
msgstr "Titulek:"
|
505 |
|
506 |
+
#: gallery-plugin.php:3192
|
507 |
msgid "Display as dropdown"
|
508 |
msgstr "Zobrazit jako rozbalovací menu"
|
509 |
|
510 |
+
#: gallery-plugin.php:3194
|
511 |
msgid "Show gallery counts"
|
512 |
msgstr "Zobrazit počet galerií"
|
513 |
|
514 |
+
#: gallery-plugin.php:3196
|
515 |
msgid "Show hierarchy"
|
516 |
msgstr "Zobrazit hierarchii"
|
517 |
|
518 |
+
#: gallery-plugin.php:3312
|
519 |
msgid "Warning"
|
520 |
msgstr "Upozornění"
|
521 |
|
522 |
+
#: gallery-plugin.php:3312
|
523 |
msgid "You can add only images to the gallery"
|
524 |
msgstr "Do galerie můžete přidat pouze obrázky"
|
525 |
|
526 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
527 |
msgid "no title"
|
528 |
msgstr "bez titulku"
|
529 |
|
530 |
+
#: gallery-plugin.php:3377
|
531 |
msgid ""
|
532 |
"Display an album image with the description and the link to a single gallery "
|
533 |
"page"
|
534 |
msgstr "Zobrazit obrázek alba s popisem a odkazem na danou stránku galerie"
|
535 |
|
536 |
+
#: gallery-plugin.php:3381
|
537 |
msgid "Sorry, no gallery found."
|
538 |
msgstr "Je nám líto, žádná galerie nenalezena."
|
539 |
|
565 |
msgid "License Key"
|
566 |
msgstr "Licenční klíč"
|
567 |
|
568 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
msgid "Settings saved"
|
570 |
msgstr "Nastavení uloženo"
|
571 |
|
572 |
+
#: includes/class-gllr-settings.php:256
|
573 |
msgid "Please, enable JavaScript in Your browser."
|
574 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
575 |
|
576 |
+
#: includes/class-gllr-settings.php:260
|
577 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
578 |
+
msgstr ""
|
579 |
+
"Vlastní velikost obrázku byla změněna. Je potřeba aktualizovat obrázky "
|
580 |
+
"galerie."
|
581 |
+
|
582 |
+
#: includes/class-gllr-settings.php:261
|
583 |
msgid "Update Images"
|
584 |
msgstr "Aktualizace obrázků galerie"
|
585 |
|
586 |
+
#: includes/class-gllr-settings.php:276
|
587 |
msgid "Gallery Images"
|
588 |
msgstr "Obrázky v galerii"
|
589 |
|
590 |
+
#: includes/class-gllr-settings.php:281
|
591 |
msgid "Images adding requires JavaScript."
|
592 |
msgstr "Přidání obrázků vyžaduje JavaScript."
|
593 |
|
594 |
+
#: includes/class-gllr-settings.php:284
|
595 |
msgid "Add Media"
|
596 |
msgstr "Přidat média"
|
597 |
|
598 |
+
#: includes/class-gllr-settings.php:293
|
599 |
msgid "The grid view for the Gallery images requires JavaScript."
|
600 |
msgstr "Zobrazení obrázků galerie v mřížce vyžaduje JavaScript."
|
601 |
|
602 |
+
#: includes/class-gllr-settings.php:293
|
603 |
msgid "Switch to the list view"
|
604 |
msgstr "Přepnout do zobrazení seznamu"
|
605 |
|
606 |
+
#: includes/class-gllr-settings.php:320
|
607 |
+
#, fuzzy
|
608 |
+
#| msgid "Add Gallery Category"
|
609 |
+
msgid "Add Gallery to the Slider"
|
610 |
+
msgstr "Přidat kategorii galerie"
|
611 |
+
|
612 |
+
#: includes/class-gllr-settings.php:332
|
613 |
+
msgid "Activate"
|
614 |
+
msgstr "Aktivovat"
|
615 |
+
|
616 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
617 |
+
msgid "Install Now"
|
618 |
+
msgstr "Instalovat nyní"
|
619 |
+
|
620 |
+
#: includes/class-gllr-settings.php:337
|
621 |
+
#, fuzzy
|
622 |
+
#| msgid "Add New"
|
623 |
+
msgid "Add"
|
624 |
+
msgstr "Přidat nový"
|
625 |
+
|
626 |
+
#: includes/class-gllr-settings.php:340
|
627 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: includes/class-gllr-settings.php:351
|
631 |
msgid "Single Gallery Settings"
|
632 |
msgstr "Nastavení konkrétní galerie"
|
633 |
|
634 |
+
#: includes/class-gllr-settings.php:353
|
635 |
#, php-format
|
636 |
msgid "Enable to configure single gallery settings and disable %s."
|
637 |
msgstr "Umožňuje nastavení konkrétní galerie a zákaz %s."
|
638 |
|
639 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
640 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
641 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
642 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
643 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
644 |
msgid "Close"
|
645 |
msgstr "Zavřít"
|
646 |
|
647 |
+
#: includes/class-gllr-settings.php:369
|
648 |
msgid "Gallery Layout"
|
649 |
msgstr "Vzhled galerie"
|
650 |
|
651 |
+
#: includes/class-gllr-settings.php:374
|
652 |
msgid "Grid"
|
653 |
msgstr "Mřížka"
|
654 |
|
655 |
+
#: includes/class-gllr-settings.php:380
|
656 |
msgid "Masonry"
|
657 |
msgstr "Dlaždice"
|
658 |
|
659 |
+
#: includes/class-gllr-settings.php:393
|
660 |
msgid "Number of Columns"
|
661 |
msgstr "Počet sloupců"
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:396
|
664 |
#, php-format
|
665 |
msgid "Number of gallery columns (default is %s)."
|
666 |
msgstr "Počet sloupců galerie (výchozí hodnota je %s)."
|
667 |
|
668 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
669 |
msgid "Image Size"
|
670 |
msgstr "Velikost obrázku"
|
671 |
|
672 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
673 |
msgid "Custom"
|
674 |
msgstr "Vlastní"
|
675 |
|
676 |
+
#: includes/class-gllr-settings.php:408
|
677 |
msgid ""
|
678 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
679 |
msgstr ""
|
680 |
"Maximální velikost obrázku galerie. \"Vlastní\" používá hodnoty rozměru "
|
681 |
"obrázku."
|
682 |
|
683 |
+
#: includes/class-gllr-settings.php:412
|
684 |
msgid "Custom Image Size"
|
685 |
msgstr "Vlastní velikost obrázku"
|
686 |
|
687 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
688 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
689 |
msgid "px"
|
690 |
msgstr "px"
|
691 |
|
692 |
+
#: includes/class-gllr-settings.php:415
|
693 |
msgid ""
|
694 |
"Adjust these values based on the number of columns in your gallery. This "
|
695 |
"won't effect the full size of your images in the lightbox."
|
697 |
"Upravit tyto hodnoty v závislosti na počtu sloupců ve galerii. Toto nemá "
|
698 |
"vliv na plnou velikost vašich snímků v Lightboxu."
|
699 |
|
700 |
+
#: includes/class-gllr-settings.php:426
|
701 |
msgid "Crop Images"
|
702 |
msgstr "Oříznout obrázky"
|
703 |
|
704 |
+
#: includes/class-gllr-settings.php:428
|
705 |
msgid ""
|
706 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
707 |
"to resize images automatically using their aspect ratio."
|
710 |
"obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
|
711 |
"stran."
|
712 |
|
713 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
714 |
msgid "Crop Position"
|
715 |
msgstr "Pozice ořezu"
|
716 |
|
717 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
718 |
msgid "Select crop position base (by default: center)."
|
719 |
msgstr "Vybrat základnu pozice ořezu (výchozí: střed)."
|
720 |
|
721 |
+
#: includes/class-gllr-settings.php:457
|
722 |
msgid "Image Title"
|
723 |
msgstr "Název obrázku"
|
724 |
|
725 |
+
#: includes/class-gllr-settings.php:459
|
726 |
msgid "Enable to display image title along with the gallery image."
|
727 |
msgstr "Povolit zobrazení názvu obrázku spolu s obrázkem galerie."
|
728 |
|
729 |
+
#: includes/class-gllr-settings.php:470
|
730 |
msgid "Image Title Position"
|
731 |
msgstr "Umístění názvu obrázku"
|
732 |
|
733 |
+
#: includes/class-gllr-settings.php:475
|
734 |
msgid "Under image"
|
735 |
msgstr "Pod obrázkem"
|
736 |
|
737 |
+
#: includes/class-gllr-settings.php:481
|
738 |
msgid "On mouse hover"
|
739 |
msgstr "Při přejetí myší"
|
740 |
|
741 |
+
#: includes/class-gllr-settings.php:494
|
742 |
msgid "Image Border"
|
743 |
msgstr "Rámeček obrázku"
|
744 |
|
745 |
+
#: includes/class-gllr-settings.php:496
|
746 |
msgid ""
|
747 |
"Enable images border using the styles defined for Image Border Size and "
|
748 |
"Color options."
|
750 |
"Povolit ohraničení obrázků s použitím stylů definovaných pro velikost "
|
751 |
"rámečku obrázku a barvu."
|
752 |
|
753 |
+
#: includes/class-gllr-settings.php:500
|
754 |
msgid "Image Border Size"
|
755 |
msgstr "Velikost rámečku obrázku"
|
756 |
|
757 |
+
#: includes/class-gllr-settings.php:503
|
758 |
#, php-format
|
759 |
msgid "Gallery image border width (default is %s)"
|
760 |
msgstr "Šířka rámečku obrázku galerie (výchozí je %s)"
|
761 |
|
762 |
+
#: includes/class-gllr-settings.php:507
|
763 |
msgid "Image Border Color"
|
764 |
msgstr "Barva rámečku obrázku"
|
765 |
|
766 |
+
#: includes/class-gllr-settings.php:520
|
767 |
msgid "Pagination"
|
768 |
msgstr "Stránkování"
|
769 |
|
770 |
+
#: includes/class-gllr-settings.php:523
|
771 |
msgid ""
|
772 |
"Enable pagination for images to limit number of images displayed on a single "
|
773 |
"gallery page."
|
775 |
"Povolit stránkování obrázků a omezit tak jejich počet zobrazených na jedné "
|
776 |
"stránce galerie."
|
777 |
|
778 |
+
#: includes/class-gllr-settings.php:527
|
779 |
msgid "Number of Images"
|
780 |
msgstr "Počet obrázků"
|
781 |
|
782 |
+
#: includes/class-gllr-settings.php:530
|
783 |
#, php-format
|
784 |
msgid "Number of images displayed per page (default is %d)."
|
785 |
msgstr "Počet zobrazovaných obrázků na stránku (výchozí hodnota je %d)."
|
786 |
|
787 |
+
#: includes/class-gllr-settings.php:540
|
788 |
msgid "Sort Images by"
|
789 |
msgstr "Řazení obrázků dle"
|
790 |
|
791 |
+
#: includes/class-gllr-settings.php:543
|
792 |
msgid "Manually (default)"
|
793 |
msgstr "Ručně (výchozí)"
|
794 |
|
795 |
+
#: includes/class-gllr-settings.php:544
|
796 |
msgid "Image ID"
|
797 |
msgstr "ID obrázku"
|
798 |
|
799 |
+
#: includes/class-gllr-settings.php:545
|
800 |
msgid "Name"
|
801 |
msgstr "Jméno"
|
802 |
|
803 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
804 |
msgid ""
|
805 |
"Select images sorting order in your gallery. By default, you can sort images "
|
806 |
"manually in the images tab."
|
808 |
"Zvolte způsob řazení obrázků ve vaší galerii. Ve výchozím nastavení, můžete "
|
809 |
"snímky uspořádat ručně na kartě obrázky."
|
810 |
|
811 |
+
#: includes/class-gllr-settings.php:553
|
812 |
msgid "Arrange Images by"
|
813 |
msgstr "Řazení obrázků dle"
|
814 |
|
815 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
816 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
817 |
msgstr "Vzestupně (např. 1, 2, 3; a, b, c)"
|
818 |
|
819 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
820 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
821 |
msgstr "Sestupně (např. 3, 2, 1; c, b, a)"
|
822 |
|
823 |
+
#: includes/class-gllr-settings.php:562
|
824 |
msgid "Back Link"
|
825 |
msgstr "Zpětný odkaz"
|
826 |
|
827 |
+
#: includes/class-gllr-settings.php:564
|
828 |
msgid ""
|
829 |
"Enable to show a back link in a single gallery page which navigate to a "
|
830 |
"previous page."
|
832 |
"Povolit zobrazení zpětného odkazu na stránce galerie, který bude odkazovat "
|
833 |
"na předchozí stránku."
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:568
|
836 |
msgid "Back Link URL"
|
837 |
msgstr "URL zpětného odkazu"
|
838 |
|
839 |
+
#: includes/class-gllr-settings.php:571
|
840 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
841 |
msgstr ""
|
842 |
"Zpětný URL odkaz na vlastní stránku. Ponechte nevyplněné pro použití "
|
843 |
"nastavení ze šablony galerie."
|
844 |
|
845 |
+
#: includes/class-gllr-settings.php:575
|
846 |
msgid "Back Link Label"
|
847 |
msgstr "Popisek zpětného odkazu"
|
848 |
|
849 |
+
#: includes/class-gllr-settings.php:581
|
850 |
msgid "Back Link with Shortcode"
|
851 |
msgstr "Zpětný odkaz se zkráceným kódem"
|
852 |
|
853 |
+
#: includes/class-gllr-settings.php:584
|
854 |
msgid "Enable to display a back link on a page where shortcode is used."
|
855 |
msgstr ""
|
856 |
"Povolit zobrazení zpětného odkazu na stránce, kde se používá zkrácený kód."
|
857 |
|
858 |
+
#: includes/class-gllr-settings.php:595
|
859 |
msgid "Cover Settings"
|
860 |
msgstr "Nastavení obalu"
|
861 |
|
862 |
+
#: includes/class-gllr-settings.php:600
|
863 |
msgid "Galleries Page"
|
864 |
msgstr "Stránka galerií"
|
865 |
|
866 |
+
#: includes/class-gllr-settings.php:608
|
867 |
msgid "Base page where all existing galleries will be displayed."
|
868 |
msgstr "Základní stránka, kde budou zobrazeny všechny existující galerie."
|
869 |
|
870 |
+
#: includes/class-gllr-settings.php:612
|
871 |
msgid "Albums Displaying"
|
872 |
msgstr "Zobrazení alb"
|
873 |
|
874 |
+
#: includes/class-gllr-settings.php:615
|
875 |
msgid "Column"
|
876 |
msgstr "Sloupec"
|
877 |
|
878 |
+
#: includes/class-gllr-settings.php:616
|
879 |
msgid "Rows"
|
880 |
msgstr "Řádky"
|
881 |
|
882 |
+
#: includes/class-gllr-settings.php:618
|
883 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
884 |
msgstr "Vyberte způsob, jakým se galerie zobrazí na stránce Galerie."
|
885 |
|
886 |
+
#: includes/class-gllr-settings.php:622
|
887 |
msgid "Column Alignment"
|
888 |
msgstr "Zarovnání sloupce"
|
889 |
|
890 |
+
#: includes/class-gllr-settings.php:625
|
891 |
msgid "Left"
|
892 |
msgstr "Vlevo"
|
893 |
|
894 |
+
#: includes/class-gllr-settings.php:626
|
895 |
msgid "Right"
|
896 |
msgstr "Vpravo"
|
897 |
|
898 |
+
#: includes/class-gllr-settings.php:627
|
899 |
msgid "Center"
|
900 |
msgstr "Na střed"
|
901 |
|
902 |
+
#: includes/class-gllr-settings.php:629
|
903 |
msgid "Select the column alignment."
|
904 |
msgstr "Zvolte zarovnání sloupce."
|
905 |
|
906 |
+
#: includes/class-gllr-settings.php:633
|
907 |
msgid "Cover Image Size"
|
908 |
msgstr "Velikost obrázku obalu"
|
909 |
|
910 |
+
#: includes/class-gllr-settings.php:641
|
911 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
912 |
msgstr ""
|
913 |
"Maximální velikost obalu obrázku galerie. \"Vlastní\" používá hodnoty "
|
914 |
"rozměru obrázku."
|
915 |
|
916 |
+
#: includes/class-gllr-settings.php:645
|
917 |
msgid "Custom Cover Image Size"
|
918 |
msgstr "Vlastní velikost obrázku obalu"
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:658
|
921 |
msgid "Crop Cover Images"
|
922 |
msgstr "Oříznout obrázky obalu"
|
923 |
|
924 |
+
#: includes/class-gllr-settings.php:660
|
925 |
msgid ""
|
926 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
927 |
"Disable to resize images automatically using their aspect ratio."
|
930 |
"obrázku. Zakáže změnu velikosti obrázků automaticky pomocí poměru jejich "
|
931 |
"stran."
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:689
|
934 |
msgid "Cover Image Border"
|
935 |
msgstr "Rámeček obrázku obalu"
|
936 |
|
937 |
+
#: includes/class-gllr-settings.php:691
|
938 |
msgid ""
|
939 |
"Enable cover images border using the styles defined for Image Border Size "
|
940 |
"and Color."
|
942 |
"Povolit ohraničení obrázku obalu s použitím stylů definovaných pro Velikost "
|
943 |
"rámečku obrázku a Barvu."
|
944 |
|
945 |
+
#: includes/class-gllr-settings.php:695
|
946 |
msgid "Cover Image Border Size"
|
947 |
msgstr "Velikost rámečku obrázku obalu"
|
948 |
|
949 |
+
#: includes/class-gllr-settings.php:698
|
950 |
#, php-format
|
951 |
msgid "Cover image border width (default is %s)"
|
952 |
msgstr "Šířka rámečku obrázku obalu (výchozí je %s)"
|
953 |
|
954 |
+
#: includes/class-gllr-settings.php:702
|
955 |
msgid "Cover Image Border Color"
|
956 |
msgstr "Barva rámečku obrázku obalu"
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:708
|
959 |
msgid "Sort Albums by"
|
960 |
msgstr "Řazení alb dle"
|
961 |
|
962 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
963 |
msgid "Select galleries sorting order in your galleries page."
|
964 |
msgstr "Zvolit způsob řazení galerií na vaší stránce galerií."
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:724
|
967 |
msgid "Arrange Albums by"
|
968 |
msgstr "Řazení alb dle"
|
969 |
|
970 |
+
#: includes/class-gllr-settings.php:733
|
971 |
msgid "Read More Link Label"
|
972 |
msgstr "Popisek odkazu Dozvědět se více"
|
973 |
|
974 |
+
#: includes/class-gllr-settings.php:746
|
975 |
msgid "Instant Lightbox"
|
976 |
msgstr "Instant Lightbox"
|
977 |
|
978 |
+
#: includes/class-gllr-settings.php:749
|
979 |
msgid ""
|
980 |
"Enable to display all images in the lightbox after clicking cover image or "
|
981 |
"URL instead of going to a single gallery page."
|
983 |
"Povolit zobrazení všech obrázků v Lightboxu po kliknutí na obrázek obalu "
|
984 |
"nebo URL namísto přechodu na stránku konkrétní galerie."
|
985 |
|
986 |
+
#: includes/class-gllr-settings.php:763
|
987 |
msgid "Lightbox Settings"
|
988 |
msgstr "Nastavení Lightbox"
|
989 |
|
990 |
+
#: includes/class-gllr-settings.php:768
|
991 |
+
msgid "Unclickable Thumbnail Images"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: includes/class-gllr-settings.php:771
|
995 |
+
msgid ""
|
996 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
997 |
+
"URLs. This option also disables Lightbox."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/class-gllr-settings.php:775
|
1001 |
msgid "Enable Lightbox"
|
1002 |
msgstr "Povolit Lightbox"
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:778
|
1005 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1006 |
msgstr "Povolit zobrazení Lightboxu při kliknutí na obrázky galerie."
|
1007 |
|
1008 |
+
#: includes/class-gllr-settings.php:796
|
1009 |
msgid ""
|
1010 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1011 |
"will display the original, full size image."
|
1013 |
"Zvolte maximální velikost obrázku galerie pro zobrazení v Lightboxu. "
|
1014 |
"\"Výchozí\" zobrazí původní obrázek v plné velikosti."
|
1015 |
|
1016 |
+
#: includes/class-gllr-settings.php:800
|
1017 |
msgid "Overlay Color"
|
1018 |
msgstr "Barva překrytí"
|
1019 |
|
1020 |
+
#: includes/class-gllr-settings.php:806
|
1021 |
msgid "Overlay Opacity"
|
1022 |
msgstr "Průhlednost překrytí"
|
1023 |
|
1024 |
+
#: includes/class-gllr-settings.php:809
|
1025 |
#, php-format
|
1026 |
msgid ""
|
1027 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1030 |
"Překrytí a průhlednost Lightboxu. Pro vypnutí průhlednosti ponechte prázdné "
|
1031 |
"(výchozí je %s, maximální je %s)."
|
1032 |
|
1033 |
+
#: includes/class-gllr-settings.php:819
|
1034 |
msgid "Slideshow"
|
1035 |
msgstr "Prezentace"
|
1036 |
|
1037 |
+
#: includes/class-gllr-settings.php:821
|
1038 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1039 |
msgstr "Povolit automatické spuštění prezentace při použití Lightboxu."
|
1040 |
|
1041 |
+
#: includes/class-gllr-settings.php:825
|
1042 |
msgid "Slideshow Duration"
|
1043 |
msgstr "Interval prezentace"
|
1044 |
|
1045 |
+
#: includes/class-gllr-settings.php:827
|
1046 |
msgid "ms"
|
1047 |
msgstr "ms"
|
1048 |
|
1049 |
+
#: includes/class-gllr-settings.php:828
|
1050 |
msgid "Slideshow interval duration between two images."
|
1051 |
msgstr "Interval prezentace mezi dvěma obrázky."
|
1052 |
|
1053 |
+
#: includes/class-gllr-settings.php:839
|
1054 |
msgid "Lightbox Helpers"
|
1055 |
msgstr "Lightbox pomocníci"
|
1056 |
|
1057 |
+
#: includes/class-gllr-settings.php:841
|
1058 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1059 |
msgstr "Povolit zobrazení lightbox nástrojů a šipek."
|
1060 |
|
1061 |
+
#: includes/class-gllr-settings.php:845
|
1062 |
msgid "Lightbox Thumbnails"
|
1063 |
msgstr "Lightbox miniatury"
|
1064 |
|
1065 |
+
#: includes/class-gllr-settings.php:847
|
1066 |
msgid "Enable to use a lightbox helper navigation between images."
|
1067 |
msgstr "Povolit využívat Lightbox pomocníka při navigaci mezi snímky."
|
1068 |
|
1069 |
+
#: includes/class-gllr-settings.php:851
|
1070 |
msgid "Lightbox Thumbnails Position"
|
1071 |
msgstr "Umístění Lightbox miniatur"
|
1072 |
|
1073 |
+
#: includes/class-gllr-settings.php:854
|
1074 |
msgid "Top"
|
1075 |
msgstr "Nahoře"
|
1076 |
|
1077 |
+
#: includes/class-gllr-settings.php:859
|
1078 |
msgid "Lightbox Button Label"
|
1079 |
msgstr "Popisek tlačítka Lightboxu"
|
1080 |
|
1081 |
+
#: includes/class-gllr-settings.php:861
|
1082 |
msgid "Read More"
|
1083 |
msgstr "Dozvědět se více"
|
1084 |
|
1085 |
+
#: includes/class-gllr-settings.php:871
|
1086 |
msgid "Download Button"
|
1087 |
msgstr "Tlačítko Stáhnout"
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:873
|
1090 |
msgid "Enable to display download button."
|
1091 |
msgstr "Povolit zobrazení tlačítka Stáhnout."
|
1092 |
|
1093 |
+
#: includes/class-gllr-settings.php:877
|
1094 |
msgid "Single Lightbox"
|
1095 |
msgstr "Jediný Lightbox"
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:879
|
1098 |
msgid ""
|
1099 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1100 |
"page."
|
1101 |
msgstr "Povolit jeden Lightbox pro více galerií umístěných na jediné stránce."
|
1102 |
|
1103 |
+
#: includes/class-gllr-settings.php:889
|
1104 |
msgid "Social Sharing Buttons Settings"
|
1105 |
msgstr "Nastavení Social Sharing Buttons"
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:898
|
1108 |
msgid "Social Buttons"
|
1109 |
msgstr "Sociální tlačítka"
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:900
|
1112 |
msgid "Enable social sharing buttons in the lightbox."
|
1113 |
msgstr "Povolit Social Buttons v Lightboxu."
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:904
|
1116 |
msgid "Social Networks"
|
1117 |
msgstr "Sociální sítě"
|
1118 |
|
1119 |
+
#: includes/class-gllr-settings.php:915
|
1120 |
msgid "Counter"
|
1121 |
msgstr "Zobrazit počítadlo"
|
1122 |
|
1123 |
+
#: includes/class-gllr-settings.php:918
|
1124 |
msgid ""
|
1125 |
"Enable to show likes counter for each social button (not available for "
|
1126 |
"Google +1)."
|
1128 |
"Povolit zobrazení počítadla lajků pro všechna sociální tlačítka (není k "
|
1129 |
"dispozici pro Google +1)."
|
1130 |
|
1131 |
+
#: includes/class-gllr-settings.php:933
|
1132 |
msgid "Demo Data"
|
1133 |
msgstr "Demo data"
|
1134 |
|
1135 |
+
#: includes/class-gllr-settings.php:935
|
1136 |
msgid ""
|
1137 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1138 |
"page with a list of all galleries."
|
1140 |
"Nainstalovat demo data pro vytvoření galerií s obrázky, příspěvkem se "
|
1141 |
"zkrácenými kódy a stránkou se seznamem všech galerií."
|
1142 |
|
1143 |
+
#: includes/class-gllr-settings.php:973
|
1144 |
msgid "Gallery Post Type"
|
1145 |
msgstr "Typ příspěvku Galerie"
|
1146 |
|
1147 |
+
#: includes/class-gllr-settings.php:975
|
1148 |
msgid ""
|
1149 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1150 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1156 |
"doporučujeme zkontrolovat nastavení dalších pluginů, které používají typ "
|
1157 |
"poříspěvku \"galerie\"."
|
1158 |
|
1159 |
+
#: includes/class-gllr-settings.php:987
|
1160 |
msgid "Gallery Slug"
|
1161 |
msgstr "Název v URL Galerie"
|
1162 |
|
1163 |
+
#: includes/class-gllr-settings.php:991
|
1164 |
msgid "Enter the unique gallery slug."
|
1165 |
msgstr "Vložit unikátní název v URL Galerie."
|
1166 |
|
1167 |
+
#: includes/class-gllr-settings.php:1007
|
1168 |
msgid "Activate Now"
|
1169 |
msgstr "Aktivovat nyní"
|
1170 |
|
1171 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1172 |
msgid "Enable to include galleries to your website search."
|
1173 |
msgstr "Povolit zahrnutí galerií do vyhledávání na vašem webu."
|
1174 |
|
1175 |
+
#: includes/class-gllr-settings.php:1025
|
1176 |
#, php-format
|
1177 |
msgid "%s is required."
|
1178 |
msgstr "%s je vyžádován."
|
1266 |
msgid "Yes, install demo now"
|
1267 |
msgstr "Ano, instalovat demo data nyní"
|
1268 |
|
1269 |
+
#~ msgid "or"
|
1270 |
+
#~ msgstr "anebo"
|
1271 |
+
|
1272 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1273 |
#~ msgstr "Podle řazení (vstupní pole pro řazení v dialogovém okně)"
|
1274 |
|
2084 |
#~ msgid "Not enough permissions to create or update the file"
|
2085 |
#~ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
|
2086 |
|
|
|
|
|
|
|
2087 |
#~ msgid ""
|
2088 |
#~ "You do not have sufficient permissions to edit plugins for this site."
|
2089 |
#~ msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
|
2291 |
#~ msgid "Notice"
|
2292 |
#~ msgstr "Poznámka"
|
2293 |
|
|
|
|
|
|
|
2294 |
#~ msgid "Let's get started"
|
2295 |
#~ msgstr "Začněme"
|
2296 |
|
2400 |
#~ msgstr ""
|
2401 |
#~ "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
|
2402 |
|
|
|
|
|
|
|
2403 |
#~ msgid "Start Your Free %s-Day Trial Now"
|
2404 |
#~ msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
|
2405 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: de\n"
|
@@ -13,493 +13,536 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galerie Einstellungen"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galerie Einstellungen"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
#, fuzzy
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Оновити до Pro"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Return to all albums"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "See images »"
|
40 |
msgstr "Fotos anzeigen »"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Galleries"
|
44 |
msgstr "Galerien"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "Gallery"
|
48 |
msgstr "Galerie"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "Add New Gallery"
|
52 |
msgstr "Galerie hinzufügen"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Edit Gallery"
|
56 |
msgstr "Galerie bearbeiten"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Neue Galerie"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "View Gallery"
|
64 |
msgstr "Galerie anzeigen"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
#, fuzzy
|
68 |
msgid "Search Galleries"
|
69 |
msgstr "Galerien"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "No Gallery found"
|
73 |
msgstr "Keine Galerien gefunden"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
-
#: gallery-plugin.php:
|
77 |
-
#: gallery-plugin.php:
|
78 |
#, fuzzy
|
79 |
msgid "Gallery Categories"
|
80 |
msgstr "Bildgröße für Galerie"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Category"
|
85 |
msgstr "Bildgröße für Galerie"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Add Gallery Category"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
#, fuzzy
|
93 |
msgid "Add New Gallery Category"
|
94 |
msgstr "Galerie hinzufügen"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Edit Gallery Category"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "New Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "View Gallery Category"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
msgid "Find Gallery Category"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: gallery-plugin.php:
|
113 |
msgid "No Gallery Categories found"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "No Gallery Categories found in Trash"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Parent Gallery Category"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Gallery Categories list navigation"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
msgid "Gallery Categories list"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Gallery Shortcode"
|
134 |
msgstr "Galerie Einstellungen"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid ""
|
138 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
139 |
"widgets by using the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid ""
|
144 |
"Add a gallery cover including featured image, description, and a link to "
|
145 |
"your single gallery using the following shortcode:"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
#, fuzzy
|
150 |
msgid "Note"
|
151 |
msgstr "Notitz"
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"When deleting a category, the galleries that belong to this category will "
|
157 |
"not be deleted. These galleries will be moved to the category %s."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
#, fuzzy
|
162 |
msgid "Shortcode"
|
163 |
msgstr "Galerie Einstellungen"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "All Gallery Categories"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "You can't delete default gallery category."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "Sorry, nothing found."
|
175 |
msgstr "Leider nichts gefunden."
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Featured Image"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
183 |
-
msgid "Title"
|
184 |
-
msgstr "Titel"
|
185 |
-
|
186 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
187 |
#, fuzzy
|
188 |
msgid "Images"
|
189 |
msgstr "Bild"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
msgid "Author"
|
193 |
-
msgstr "Author"
|
194 |
-
|
195 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
196 |
-
#: includes/class-gllr-settings.php:680
|
197 |
-
msgid "Date"
|
198 |
-
msgstr "Datum"
|
199 |
-
|
200 |
-
#: gallery-plugin.php:1688
|
201 |
#, fuzzy, php-format
|
202 |
msgid "%s Settings"
|
203 |
msgstr "Перейти до Налаштувань %s"
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
207 |
msgid "Settings"
|
208 |
msgstr "Einstellungen"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "FAQ"
|
212 |
msgstr "FAQ"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Support"
|
216 |
msgstr "Support"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Updating images..."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
#, fuzzy
|
224 |
msgid "No images found."
|
225 |
msgstr "Keine Galerien gefunden"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "All images were updated."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "Error."
|
234 |
msgstr "Ein Fehler ist während der Aktualisierung der Statusliste aufgetreten."
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid ""
|
238 |
"You are about to remove these items from this gallery.\n"
|
239 |
" 'Cancel' to stop, 'OK' to delete."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid ""
|
244 |
"You are about to remove this image from the gallery.\n"
|
245 |
" 'Cancel' to stop, 'OK' to delete."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid ""
|
250 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
251 |
"switching?"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "Insert Media"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Insert"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
263 |
#, fuzzy
|
264 |
msgid "Image size not defined"
|
265 |
msgstr "Name der Bilder"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid ""
|
269 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
270 |
"reload images manually."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Invalid path"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "List View"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Grid View"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
#, fuzzy
|
287 |
msgid "Filter"
|
288 |
msgstr "Filter"
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Empty Trash"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
#, fuzzy
|
296 |
msgid "No images found"
|
297 |
msgstr "Keine Galerien gefunden"
|
298 |
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Select bulk action"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Bulk Actions"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
msgid "Apply"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
#, fuzzy
|
313 |
msgid "Delete from Gallery"
|
314 |
msgstr "Neue Galerie"
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Bulk Select"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Cancel Selection"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Delete Selected"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "File"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "Dimensions"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "Alt Text"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "URL"
|
342 |
msgstr "URL"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid ""
|
346 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
347 |
"to open a full size image."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
#, fuzzy
|
352 |
msgid "Remove Image from Gallery"
|
353 |
msgstr "Neue Galerie"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
#, fuzzy
|
357 |
msgid "Edit Image Info"
|
358 |
msgstr "Anhang ID"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Deselect"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "File name"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "File type"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
#, fuzzy
|
374 |
msgid "Description"
|
375 |
msgstr "Slide beschreibung"
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
#, fuzzy
|
379 |
msgid "Lightbox Button URL"
|
380 |
msgstr "Lightbox Hintergrund"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid "New Tab"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
msgid "Enable to open URLs above in a new tab."
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
msgid "Go Pro"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Edit more details"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, fuzzy
|
400 |
msgid "Remove from Gallery"
|
401 |
msgstr "Neue Galerie"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, php-format
|
405 |
msgid "Select %s"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
#, php-format
|
410 |
msgid "Edit “%s”"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
#, fuzzy
|
415 |
msgid "Edit Attachment Info"
|
416 |
msgstr "Anhang ID"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
#, fuzzy
|
420 |
msgid "Edit"
|
421 |
msgstr "Bearbeiten"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "Trash"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Delete Permanently"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
#, php-format
|
433 |
msgid "View “%s”"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
#, fuzzy
|
438 |
msgid "View"
|
439 |
msgstr "Fahrzeugtyp ansehen"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
#, fuzzy
|
443 |
msgid "Attach"
|
444 |
msgstr "Anhang ID"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "Restore"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "A list or dropdown of Gallery categories."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Select Gallery Category"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
#, fuzzy
|
460 |
msgid "Title:"
|
461 |
msgstr "Titel"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
msgid "Display as dropdown"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Show gallery counts"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Show hierarchy"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
#, fuzzy
|
477 |
msgid "Warning"
|
478 |
msgstr ""
|
479 |
"Warnung! Der Status \"%1$s\" kann nicht entfernt werden, da er in der "
|
480 |
"Bestellung %2$s verwendet wird."
|
481 |
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid "You can add only images to the gallery"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
-
msgid "or"
|
488 |
-
msgstr ""
|
489 |
-
|
490 |
-
#: gallery-plugin.php:3181
|
491 |
#, fuzzy
|
492 |
msgid "no title"
|
493 |
msgstr "Titel"
|
494 |
|
495 |
-
#: gallery-plugin.php:
|
496 |
#, fuzzy
|
497 |
msgid ""
|
498 |
"Display an album image with the description and the link to a single gallery "
|
499 |
"page"
|
500 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Sorry, no gallery found."
|
505 |
msgstr "Leider nichts gefunden."
|
@@ -533,581 +576,592 @@ msgstr ""
|
|
533 |
msgid "License Key"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/class-gllr-settings.php:
|
537 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: includes/class-gllr-settings.php:247
|
541 |
#, fuzzy
|
542 |
msgid "Settings saved"
|
543 |
msgstr "Slider Einstellung gespeichert"
|
544 |
|
545 |
-
#: includes/class-gllr-settings.php:
|
546 |
#, fuzzy
|
547 |
msgid "Please, enable JavaScript in Your browser."
|
548 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
549 |
|
550 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
551 |
#, fuzzy
|
552 |
msgid "Update Images"
|
553 |
msgstr "Reihenfolge Bilder"
|
554 |
|
555 |
-
#: includes/class-gllr-settings.php:
|
556 |
#, fuzzy
|
557 |
msgid "Gallery Images"
|
558 |
msgstr "Bildgröße für Galerie"
|
559 |
|
560 |
-
#: includes/class-gllr-settings.php:
|
561 |
msgid "Images adding requires JavaScript."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: includes/class-gllr-settings.php:
|
565 |
msgid "Add Media"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: includes/class-gllr-settings.php:
|
569 |
msgid "The grid view for the Gallery images requires JavaScript."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: includes/class-gllr-settings.php:
|
573 |
msgid "Switch to the list view"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
577 |
#, fuzzy
|
578 |
msgid "Single Gallery Settings"
|
579 |
msgstr "Galerie Einstellungen"
|
580 |
|
581 |
-
#: includes/class-gllr-settings.php:
|
582 |
#, php-format
|
583 |
msgid "Enable to configure single gallery settings and disable %s."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: includes/class-gllr-settings.php:
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
-
#: includes/class-gllr-settings.php:
|
589 |
-
#: includes/class-gllr-settings.php:
|
590 |
-
#: includes/class-gllr-settings.php:
|
591 |
#, fuzzy
|
592 |
msgid "Close"
|
593 |
msgstr "Details ausblenden"
|
594 |
|
595 |
-
#: includes/class-gllr-settings.php:
|
596 |
#, fuzzy
|
597 |
msgid "Gallery Layout"
|
598 |
msgstr "Keine Galerien gefunden"
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
msgid "Grid"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
msgid "Masonry"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
msgid "Number of Columns"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: includes/class-gllr-settings.php:
|
613 |
#, php-format
|
614 |
msgid "Number of gallery columns (default is %s)."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-gllr-settings.php:
|
618 |
#, fuzzy
|
619 |
msgid "Image Size"
|
620 |
msgstr "Name der Bilder"
|
621 |
|
622 |
-
#: includes/class-gllr-settings.php:
|
623 |
msgid "Custom"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: includes/class-gllr-settings.php:
|
627 |
msgid ""
|
628 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/class-gllr-settings.php:
|
632 |
#, fuzzy
|
633 |
msgid "Custom Image Size"
|
634 |
msgstr "Name der Bilder"
|
635 |
|
636 |
-
#: includes/class-gllr-settings.php:
|
637 |
-
#: includes/class-gllr-settings.php:
|
638 |
msgid "px"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/class-gllr-settings.php:
|
642 |
msgid ""
|
643 |
"Adjust these values based on the number of columns in your gallery. This "
|
644 |
"won't effect the full size of your images in the lightbox."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/class-gllr-settings.php:
|
648 |
#, fuzzy
|
649 |
msgid "Crop Images"
|
650 |
msgstr "Reihenfolge"
|
651 |
|
652 |
-
#: includes/class-gllr-settings.php:
|
653 |
msgid ""
|
654 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
655 |
"to resize images automatically using their aspect ratio."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: includes/class-gllr-settings.php:
|
659 |
#, fuzzy
|
660 |
msgid "Crop Position"
|
661 |
msgstr "Crop Position"
|
662 |
|
663 |
-
#: includes/class-gllr-settings.php:
|
664 |
msgid "Select crop position base (by default: center)."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/class-gllr-settings.php:
|
668 |
#, fuzzy
|
669 |
msgid "Image Title"
|
670 |
msgstr "Name der Bilder"
|
671 |
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
msgid "Enable to display image title along with the gallery image."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: includes/class-gllr-settings.php:
|
677 |
#, fuzzy
|
678 |
msgid "Image Title Position"
|
679 |
msgstr "Name der Bilder"
|
680 |
|
681 |
-
#: includes/class-gllr-settings.php:
|
682 |
#, fuzzy
|
683 |
msgid "Under image"
|
684 |
msgstr "Reihenfolge Bilder"
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
msgid "On mouse hover"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: includes/class-gllr-settings.php:
|
691 |
#, fuzzy
|
692 |
msgid "Image Border"
|
693 |
msgstr "Bilder mit Rand"
|
694 |
|
695 |
-
#: includes/class-gllr-settings.php:
|
696 |
msgid ""
|
697 |
"Enable images border using the styles defined for Image Border Size and "
|
698 |
"Color options."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/class-gllr-settings.php:
|
702 |
#, fuzzy
|
703 |
msgid "Image Border Size"
|
704 |
msgstr "Name der Bilder"
|
705 |
|
706 |
-
#: includes/class-gllr-settings.php:
|
707 |
#, php-format
|
708 |
msgid "Gallery image border width (default is %s)"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
#, fuzzy
|
713 |
msgid "Image Border Color"
|
714 |
msgstr "Rahmenfarbe"
|
715 |
|
716 |
-
#: includes/class-gllr-settings.php:
|
717 |
msgid "Pagination"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/class-gllr-settings.php:
|
721 |
msgid ""
|
722 |
"Enable pagination for images to limit number of images displayed on a single "
|
723 |
"gallery page."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: includes/class-gllr-settings.php:
|
727 |
#, fuzzy
|
728 |
msgid "Number of Images"
|
729 |
msgstr "Anzahl Bilder in einer Reihe"
|
730 |
|
731 |
-
#: includes/class-gllr-settings.php:
|
732 |
#, php-format
|
733 |
msgid "Number of images displayed per page (default is %d)."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/class-gllr-settings.php:
|
737 |
#, fuzzy
|
738 |
msgid "Sort Images by"
|
739 |
msgstr "Sortieren nach"
|
740 |
|
741 |
-
#: includes/class-gllr-settings.php:
|
742 |
msgid "Manually (default)"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: includes/class-gllr-settings.php:
|
746 |
#, fuzzy
|
747 |
msgid "Image ID"
|
748 |
msgstr "Bild"
|
749 |
|
750 |
-
#: includes/class-gllr-settings.php:
|
751 |
#, fuzzy
|
752 |
msgid "Name"
|
753 |
msgstr "Name"
|
754 |
|
755 |
-
#: includes/class-gllr-settings.php:
|
756 |
-
msgid "Random"
|
757 |
-
msgstr "Zufall"
|
758 |
-
|
759 |
-
#: includes/class-gllr-settings.php:516
|
760 |
msgid ""
|
761 |
"Select images sorting order in your gallery. By default, you can sort images "
|
762 |
"manually in the images tab."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
#, fuzzy
|
767 |
msgid "Arrange Images by"
|
768 |
msgstr "Sortieren nach"
|
769 |
|
770 |
-
#: includes/class-gllr-settings.php:
|
771 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: includes/class-gllr-settings.php:
|
775 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
#, fuzzy
|
780 |
msgid "Back Link"
|
781 |
msgstr "Zurück-Link URL"
|
782 |
|
783 |
-
#: includes/class-gllr-settings.php:
|
784 |
msgid ""
|
785 |
"Enable to show a back link in a single gallery page which navigate to a "
|
786 |
"previous page."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/class-gllr-settings.php:
|
790 |
#, fuzzy
|
791 |
msgid "Back Link URL"
|
792 |
msgstr "Zurück-Link URL"
|
793 |
|
794 |
-
#: includes/class-gllr-settings.php:
|
795 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
#, fuzzy
|
800 |
msgid "Back Link Label"
|
801 |
msgstr "Zurück-Link URL"
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
#, fuzzy
|
805 |
msgid "Back Link with Shortcode"
|
806 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
807 |
|
808 |
-
#: includes/class-gllr-settings.php:
|
809 |
#, fuzzy
|
810 |
msgid "Enable to display a back link on a page where shortcode is used."
|
811 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
#, fuzzy
|
815 |
msgid "Cover Settings"
|
816 |
msgstr "Galerie Einstellungen"
|
817 |
|
818 |
-
#: includes/class-gllr-settings.php:
|
819 |
#, fuzzy
|
820 |
msgid "Galleries Page"
|
821 |
msgstr "Galerien"
|
822 |
|
823 |
-
#: includes/class-gllr-settings.php:
|
824 |
msgid "Base page where all existing galleries will be displayed."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/class-gllr-settings.php:
|
828 |
msgid "Albums Displaying"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/class-gllr-settings.php:
|
832 |
msgid "Column"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/class-gllr-settings.php:
|
836 |
msgid "Rows"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: includes/class-gllr-settings.php:
|
840 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: includes/class-gllr-settings.php:
|
844 |
msgid "Column Alignment"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/class-gllr-settings.php:
|
848 |
msgid "Left"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/class-gllr-settings.php:
|
852 |
msgid "Right"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/class-gllr-settings.php:
|
856 |
msgid "Center"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/class-gllr-settings.php:
|
860 |
msgid "Select the column alignment."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/class-gllr-settings.php:
|
864 |
#, fuzzy
|
865 |
msgid "Cover Image Size"
|
866 |
msgstr "Name der Bilder"
|
867 |
|
868 |
-
#: includes/class-gllr-settings.php:
|
869 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: includes/class-gllr-settings.php:
|
873 |
msgid "Custom Cover Image Size"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/class-gllr-settings.php:
|
877 |
msgid "Crop Cover Images"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class-gllr-settings.php:
|
881 |
msgid ""
|
882 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
883 |
"Disable to resize images automatically using their aspect ratio."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/class-gllr-settings.php:
|
887 |
#, fuzzy
|
888 |
msgid "Cover Image Border"
|
889 |
msgstr "Bilder mit Rand"
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
msgid ""
|
893 |
"Enable cover images border using the styles defined for Image Border Size "
|
894 |
"and Color."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/class-gllr-settings.php:
|
898 |
msgid "Cover Image Border Size"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/class-gllr-settings.php:
|
902 |
#, php-format
|
903 |
msgid "Cover image border width (default is %s)"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/class-gllr-settings.php:
|
907 |
#, fuzzy
|
908 |
msgid "Cover Image Border Color"
|
909 |
msgstr "Rahmenfarbe"
|
910 |
|
911 |
-
#: includes/class-gllr-settings.php:
|
912 |
#, fuzzy
|
913 |
msgid "Sort Albums by"
|
914 |
msgstr "Sortieren nach"
|
915 |
|
916 |
-
#: includes/class-gllr-settings.php:
|
917 |
-
#, fuzzy
|
918 |
-
msgid "Gallery ID"
|
919 |
-
msgstr "Galerie"
|
920 |
-
|
921 |
-
#: includes/class-gllr-settings.php:681
|
922 |
-
msgid "Last modified date"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: includes/class-gllr-settings.php:682
|
926 |
-
msgid "Comment count"
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: includes/class-gllr-settings.php:683
|
930 |
-
msgid "\"Order\" field on the gallery edit page"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: includes/class-gllr-settings.php:687
|
934 |
msgid "Select galleries sorting order in your galleries page."
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/class-gllr-settings.php:
|
938 |
msgid "Arrange Albums by"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: includes/class-gllr-settings.php:
|
942 |
#, fuzzy
|
943 |
msgid "Read More Link Label"
|
944 |
msgstr "Weiterlesen link Text"
|
945 |
|
946 |
-
#: includes/class-gllr-settings.php:
|
947 |
msgid "Instant Lightbox"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-gllr-settings.php:
|
951 |
msgid ""
|
952 |
"Enable to display all images in the lightbox after clicking cover image or "
|
953 |
"URL instead of going to a single gallery page."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/class-gllr-settings.php:
|
957 |
#, fuzzy
|
958 |
msgid "Lightbox Settings"
|
959 |
msgstr "Lightbox Hintergrund"
|
960 |
|
961 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
msgid "Enable Lightbox"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/class-gllr-settings.php:
|
966 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
msgid ""
|
971 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
972 |
"will display the original, full size image."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/class-gllr-settings.php:
|
976 |
msgid "Overlay Color"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: includes/class-gllr-settings.php:
|
980 |
msgid "Overlay Opacity"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/class-gllr-settings.php:
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
987 |
"is %s)."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/class-gllr-settings.php:
|
991 |
#, fuzzy
|
992 |
msgid "Slideshow"
|
993 |
msgstr "Starte Slideshow"
|
994 |
|
995 |
-
#: includes/class-gllr-settings.php:
|
996 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: includes/class-gllr-settings.php:
|
1000 |
#, fuzzy
|
1001 |
msgid "Slideshow Duration"
|
1002 |
msgstr "Slideshow Geschwindigkeit"
|
1003 |
|
1004 |
-
#: includes/class-gllr-settings.php:
|
1005 |
msgid "ms"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/class-gllr-settings.php:
|
1009 |
msgid "Slideshow interval duration between two images."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
#, fuzzy
|
1014 |
msgid "Lightbox Helpers"
|
1015 |
msgstr "Lightbox Hintergrund"
|
1016 |
|
1017 |
-
#: includes/class-gllr-settings.php:
|
1018 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: includes/class-gllr-settings.php:
|
1022 |
#, fuzzy
|
1023 |
msgid "Lightbox Thumbnails"
|
1024 |
msgstr "Bildgröße für Beitragsbild"
|
1025 |
|
1026 |
-
#: includes/class-gllr-settings.php:
|
1027 |
msgid "Enable to use a lightbox helper navigation between images."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/class-gllr-settings.php:
|
1031 |
msgid "Lightbox Thumbnails Position"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
#, fuzzy
|
1036 |
msgid "Top"
|
1037 |
msgstr "oben"
|
1038 |
|
1039 |
-
#: includes/class-gllr-settings.php:
|
1040 |
#, fuzzy
|
1041 |
msgid "Lightbox Button Label"
|
1042 |
msgstr "Lightbox Hintergrund"
|
1043 |
|
1044 |
-
#: includes/class-gllr-settings.php:
|
1045 |
#, fuzzy
|
1046 |
msgid "Read More"
|
1047 |
msgstr "Mehr erfahren"
|
1048 |
|
1049 |
-
#: includes/class-gllr-settings.php:
|
1050 |
msgid "Download Button"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/class-gllr-settings.php:
|
1054 |
msgid "Enable to display download button."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/class-gllr-settings.php:
|
1058 |
msgid "Single Lightbox"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/class-gllr-settings.php:
|
1062 |
msgid ""
|
1063 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1064 |
"page."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/class-gllr-settings.php:
|
1068 |
msgid "Social Sharing Buttons Settings"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/class-gllr-settings.php:
|
1072 |
msgid "Social Buttons"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Enable social sharing buttons in the lightbox."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
msgid "Social Networks"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/class-gllr-settings.php:
|
1084 |
#, fuzzy
|
1085 |
msgid "Counter"
|
1086 |
msgstr "Slideshow Geschwindigkeit"
|
1087 |
|
1088 |
-
#: includes/class-gllr-settings.php:
|
1089 |
msgid ""
|
1090 |
"Enable to show likes counter for each social button (not available for "
|
1091 |
"Google +1)."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
#, fuzzy
|
1096 |
msgid "Demo Data"
|
1097 |
msgstr "Sind Sie sicher, dass Sie Demo-Daten installieren möchten?"
|
1098 |
|
1099 |
-
#: includes/class-gllr-settings.php:
|
1100 |
msgid ""
|
1101 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1102 |
"page with a list of all galleries."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/class-gllr-settings.php:
|
1106 |
#, fuzzy
|
1107 |
msgid "Gallery Post Type"
|
1108 |
msgstr "Galerie Einstellungen"
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
msgid ""
|
1112 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1113 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1115,29 +1169,25 @@ msgid ""
|
|
1115 |
"used."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Gallery Slug"
|
1121 |
msgstr "Galerie"
|
1122 |
|
1123 |
-
#: includes/class-gllr-settings.php:
|
1124 |
msgid "Enter the unique gallery slug."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/class-gllr-settings.php:
|
1128 |
#, fuzzy
|
1129 |
msgid "Activate Now"
|
1130 |
msgstr "Aktivierte Plugins"
|
1131 |
|
1132 |
-
#: includes/class-gllr-settings.php:
|
1133 |
-
msgid "Install Now"
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: includes/class-gllr-settings.php:965
|
1137 |
msgid "Enable to include galleries to your website search."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: includes/class-gllr-settings.php:
|
1141 |
#, php-format
|
1142 |
msgid "%s is required."
|
1143 |
msgstr ""
|
@@ -1284,10 +1334,6 @@ msgstr "Installiere %s"
|
|
1284 |
#~ msgid "Learn more"
|
1285 |
#~ msgstr "Mehr erfahren"
|
1286 |
|
1287 |
-
#, fuzzy
|
1288 |
-
#~ msgid "Activate"
|
1289 |
-
#~ msgstr "Aktivierte Plugins"
|
1290 |
-
|
1291 |
#, fuzzy
|
1292 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1293 |
#~ msgstr "Aktivier Like-Button in der Lightbox"
|
@@ -1468,10 +1514,6 @@ msgstr "Installiere %s"
|
|
1468 |
#~ msgid "Select a background color"
|
1469 |
#~ msgstr "Wähle eine Hintergrundfarbe"
|
1470 |
|
1471 |
-
#, fuzzy
|
1472 |
-
#~ msgid "Sort galleries by"
|
1473 |
-
#~ msgstr "Sortieren nach"
|
1474 |
-
|
1475 |
#~ msgid "Width (in px)"
|
1476 |
#~ msgstr "Breite (in px)"
|
1477 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:52+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Jonas Seemann <info@ahoidesign.de>\n"
|
9 |
"Language: de\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galerie Einstellungen"
|
23 |
|
24 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galerie Einstellungen"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
#, fuzzy
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr "Оновити до Pro"
|
33 |
|
34 |
+
#: gallery-plugin.php:340
|
35 |
msgid "Return to all albums"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: gallery-plugin.php:354
|
39 |
msgid "See images »"
|
40 |
msgstr "Fotos anzeigen »"
|
41 |
|
42 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
43 |
msgid "Galleries"
|
44 |
msgstr "Galerien"
|
45 |
|
46 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
47 |
msgid "Gallery"
|
48 |
msgstr "Galerie"
|
49 |
|
50 |
+
#: gallery-plugin.php:444
|
51 |
msgid "Add New Gallery"
|
52 |
msgstr "Galerie hinzufügen"
|
53 |
|
54 |
+
#: gallery-plugin.php:445
|
55 |
msgid "Edit Gallery"
|
56 |
msgstr "Galerie bearbeiten"
|
57 |
|
58 |
+
#: gallery-plugin.php:446
|
59 |
msgid "New Gallery"
|
60 |
msgstr "Neue Galerie"
|
61 |
|
62 |
+
#: gallery-plugin.php:447
|
63 |
msgid "View Gallery"
|
64 |
msgstr "Galerie anzeigen"
|
65 |
|
66 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
67 |
#, fuzzy
|
68 |
msgid "Search Galleries"
|
69 |
msgstr "Galerien"
|
70 |
|
71 |
+
#: gallery-plugin.php:449
|
72 |
msgid "No Gallery found"
|
73 |
msgstr "Keine Galerien gefunden"
|
74 |
|
75 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
76 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
77 |
+
#: gallery-plugin.php:3332
|
78 |
#, fuzzy
|
79 |
msgid "Gallery Categories"
|
80 |
msgstr "Bildgröße für Galerie"
|
81 |
|
82 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
83 |
#, fuzzy
|
84 |
msgid "Gallery Category"
|
85 |
msgstr "Bildgröße für Galerie"
|
86 |
|
87 |
+
#: gallery-plugin.php:473
|
88 |
msgid "Add Gallery Category"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: gallery-plugin.php:474
|
92 |
#, fuzzy
|
93 |
msgid "Add New Gallery Category"
|
94 |
msgstr "Galerie hinzufügen"
|
95 |
|
96 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
97 |
msgid "Edit Gallery Category"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: gallery-plugin.php:477
|
101 |
msgid "New Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
105 |
msgid "View Gallery Category"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:480
|
109 |
msgid "Find Gallery Category"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: gallery-plugin.php:481
|
113 |
msgid "No Gallery Categories found"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: gallery-plugin.php:482
|
117 |
msgid "No Gallery Categories found in Trash"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: gallery-plugin.php:483
|
121 |
msgid "Parent Gallery Category"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: gallery-plugin.php:484
|
125 |
msgid "Gallery Categories list navigation"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: gallery-plugin.php:485
|
129 |
msgid "Gallery Categories list"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: gallery-plugin.php:533
|
133 |
msgid "Gallery Shortcode"
|
134 |
msgstr "Galerie Einstellungen"
|
135 |
|
136 |
+
#: gallery-plugin.php:542
|
137 |
msgid ""
|
138 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
139 |
"widgets by using the following shortcode:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: gallery-plugin.php:546
|
143 |
msgid ""
|
144 |
"Add a gallery cover including featured image, description, and a link to "
|
145 |
"your single gallery using the following shortcode:"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: gallery-plugin.php:659
|
149 |
#, fuzzy
|
150 |
msgid "Note"
|
151 |
msgstr "Notitz"
|
152 |
|
153 |
+
#: gallery-plugin.php:659
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"When deleting a category, the galleries that belong to this category will "
|
157 |
"not be deleted. These galleries will be moved to the category %s."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: gallery-plugin.php:670
|
161 |
+
#, fuzzy
|
162 |
+
msgid "Sort Galleries in Category by"
|
163 |
+
msgstr "Sortieren nach"
|
164 |
+
|
165 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
166 |
+
#: includes/class-gllr-settings.php:711
|
167 |
+
#, fuzzy
|
168 |
+
msgid "Gallery ID"
|
169 |
+
msgstr "Galerie"
|
170 |
+
|
171 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
172 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
173 |
+
#: includes/class-gllr-settings.php:712
|
174 |
+
msgid "Title"
|
175 |
+
msgstr "Titel"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
178 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
179 |
+
msgid "Date"
|
180 |
+
msgstr "Datum"
|
181 |
+
|
182 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
183 |
+
#: includes/class-gllr-settings.php:714
|
184 |
+
msgid "Last modified date"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
188 |
+
#: includes/class-gllr-settings.php:715
|
189 |
+
msgid "Comment count"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
193 |
+
#: includes/class-gllr-settings.php:716
|
194 |
+
msgid "\"Order\" field on the gallery edit page"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
198 |
+
#: includes/class-gllr-settings.php:717
|
199 |
+
msgid "Author"
|
200 |
+
msgstr "Author"
|
201 |
+
|
202 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
203 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
204 |
+
msgid "Random"
|
205 |
+
msgstr "Zufall"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
208 |
+
#, fuzzy
|
209 |
+
#| msgid "Settings"
|
210 |
+
msgid "Plugin Settings"
|
211 |
+
msgstr "Einstellungen"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
214 |
+
msgid "Select galleries sorting order in your category."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
218 |
#, fuzzy
|
219 |
msgid "Shortcode"
|
220 |
msgstr "Galerie Einstellungen"
|
221 |
|
222 |
+
#: gallery-plugin.php:749
|
223 |
msgid "All Gallery Categories"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:827
|
227 |
msgid "You can't delete default gallery category."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
231 |
msgid "Sorry, nothing found."
|
232 |
msgstr "Leider nichts gefunden."
|
233 |
|
234 |
+
#: gallery-plugin.php:1717
|
235 |
msgid "Featured Image"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
239 |
#, fuzzy
|
240 |
msgid "Images"
|
241 |
msgstr "Bild"
|
242 |
|
243 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#, fuzzy, php-format
|
245 |
msgid "%s Settings"
|
246 |
msgstr "Перейти до Налаштувань %s"
|
247 |
|
248 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
249 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
250 |
msgid "Settings"
|
251 |
msgstr "Einstellungen"
|
252 |
|
253 |
+
#: gallery-plugin.php:1838
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ"
|
256 |
|
257 |
+
#: gallery-plugin.php:1839
|
258 |
msgid "Support"
|
259 |
msgstr "Support"
|
260 |
|
261 |
+
#: gallery-plugin.php:1878
|
262 |
msgid "Updating images..."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: gallery-plugin.php:1879
|
266 |
#, fuzzy
|
267 |
msgid "No images found."
|
268 |
msgstr "Keine Galerien gefunden"
|
269 |
|
270 |
+
#: gallery-plugin.php:1880
|
271 |
msgid "All images were updated."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: gallery-plugin.php:1881
|
275 |
#, fuzzy
|
276 |
msgid "Error."
|
277 |
msgstr "Ein Fehler ist während der Aktualisierung der Statusliste aufgetreten."
|
278 |
|
279 |
+
#: gallery-plugin.php:1893
|
280 |
msgid ""
|
281 |
"You are about to remove these items from this gallery.\n"
|
282 |
" 'Cancel' to stop, 'OK' to delete."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: gallery-plugin.php:1894
|
286 |
msgid ""
|
287 |
"You are about to remove this image from the gallery.\n"
|
288 |
" 'Cancel' to stop, 'OK' to delete."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: gallery-plugin.php:1895
|
292 |
msgid ""
|
293 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
294 |
"switching?"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: gallery-plugin.php:1896
|
298 |
msgid "Insert Media"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: gallery-plugin.php:1897
|
302 |
msgid "Insert"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: gallery-plugin.php:1898
|
306 |
+
msgid "Gallery has been successfully added!"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
310 |
#, fuzzy
|
311 |
msgid "Image size not defined"
|
312 |
msgstr "Name der Bilder"
|
313 |
|
314 |
+
#: gallery-plugin.php:2455
|
315 |
msgid ""
|
316 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
317 |
"reload images manually."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
321 |
msgid "Invalid path"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: gallery-plugin.php:2607
|
325 |
msgid "List View"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: gallery-plugin.php:2608
|
329 |
msgid "Grid View"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: gallery-plugin.php:2665
|
333 |
#, fuzzy
|
334 |
msgid "Filter"
|
335 |
msgstr "Filter"
|
336 |
|
337 |
+
#: gallery-plugin.php:2669
|
338 |
msgid "Empty Trash"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: gallery-plugin.php:2692
|
342 |
#, fuzzy
|
343 |
msgid "No images found"
|
344 |
msgstr "Keine Galerien gefunden"
|
345 |
|
346 |
+
#: gallery-plugin.php:2745
|
347 |
msgid "Select bulk action"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: gallery-plugin.php:2747
|
351 |
msgid "Bulk Actions"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:2757
|
355 |
msgid "Apply"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: gallery-plugin.php:2764
|
359 |
#, fuzzy
|
360 |
msgid "Delete from Gallery"
|
361 |
msgstr "Neue Galerie"
|
362 |
|
363 |
+
#: gallery-plugin.php:2773
|
364 |
msgid "Bulk Select"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: gallery-plugin.php:2774
|
368 |
msgid "Cancel Selection"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: gallery-plugin.php:2775
|
372 |
msgid "Delete Selected"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: gallery-plugin.php:2786
|
376 |
msgid "File"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
380 |
msgid "Dimensions"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
384 |
msgid "Alt Text"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
388 |
msgid "URL"
|
389 |
msgstr "URL"
|
390 |
|
391 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
392 |
msgid ""
|
393 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
394 |
"to open a full size image."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: gallery-plugin.php:2872
|
398 |
#, fuzzy
|
399 |
msgid "Remove Image from Gallery"
|
400 |
msgstr "Neue Galerie"
|
401 |
|
402 |
+
#: gallery-plugin.php:2875
|
403 |
#, fuzzy
|
404 |
msgid "Edit Image Info"
|
405 |
msgstr "Anhang ID"
|
406 |
|
407 |
+
#: gallery-plugin.php:2876
|
408 |
msgid "Deselect"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: gallery-plugin.php:2888
|
412 |
msgid "File name"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: gallery-plugin.php:2889
|
416 |
msgid "File type"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: gallery-plugin.php:2914
|
420 |
#, fuzzy
|
421 |
msgid "Description"
|
422 |
msgstr "Slide beschreibung"
|
423 |
|
424 |
+
#: gallery-plugin.php:2920
|
425 |
#, fuzzy
|
426 |
msgid "Lightbox Button URL"
|
427 |
msgstr "Lightbox Hintergrund"
|
428 |
|
429 |
+
#: gallery-plugin.php:2927
|
430 |
msgid "New Tab"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: gallery-plugin.php:2929
|
434 |
msgid "Enable to open URLs above in a new tab."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: gallery-plugin.php:2934
|
438 |
msgid "Go Pro"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: gallery-plugin.php:2940
|
442 |
msgid "Edit more details"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: gallery-plugin.php:2942
|
446 |
#, fuzzy
|
447 |
msgid "Remove from Gallery"
|
448 |
msgstr "Neue Galerie"
|
449 |
|
450 |
+
#: gallery-plugin.php:2978
|
451 |
#, php-format
|
452 |
msgid "Select %s"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:2991
|
456 |
#, php-format
|
457 |
msgid "Edit “%s”"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:2999
|
461 |
#, fuzzy
|
462 |
msgid "Edit Attachment Info"
|
463 |
msgstr "Anhang ID"
|
464 |
|
465 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
466 |
#, fuzzy
|
467 |
msgid "Edit"
|
468 |
msgstr "Bearbeiten"
|
469 |
|
470 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
471 |
msgid "Trash"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
475 |
msgid "Delete Permanently"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
479 |
#, php-format
|
480 |
msgid "View “%s”"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
484 |
#, fuzzy
|
485 |
msgid "View"
|
486 |
msgstr "Fahrzeugtyp ansehen"
|
487 |
|
488 |
+
#: gallery-plugin.php:3048
|
489 |
#, fuzzy
|
490 |
msgid "Attach"
|
491 |
msgstr "Anhang ID"
|
492 |
|
493 |
+
#: gallery-plugin.php:3056
|
494 |
msgid "Restore"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:3086
|
498 |
msgid "A list or dropdown of Gallery categories."
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: gallery-plugin.php:3131
|
502 |
msgid "Select Gallery Category"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: gallery-plugin.php:3189
|
506 |
#, fuzzy
|
507 |
msgid "Title:"
|
508 |
msgstr "Titel"
|
509 |
|
510 |
+
#: gallery-plugin.php:3192
|
511 |
msgid "Display as dropdown"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:3194
|
515 |
msgid "Show gallery counts"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:3196
|
519 |
msgid "Show hierarchy"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:3312
|
523 |
#, fuzzy
|
524 |
msgid "Warning"
|
525 |
msgstr ""
|
526 |
"Warnung! Der Status \"%1$s\" kann nicht entfernt werden, da er in der "
|
527 |
"Bestellung %2$s verwendet wird."
|
528 |
|
529 |
+
#: gallery-plugin.php:3312
|
530 |
msgid "You can add only images to the gallery"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
534 |
#, fuzzy
|
535 |
msgid "no title"
|
536 |
msgstr "Titel"
|
537 |
|
538 |
+
#: gallery-plugin.php:3377
|
539 |
#, fuzzy
|
540 |
msgid ""
|
541 |
"Display an album image with the description and the link to a single gallery "
|
542 |
"page"
|
543 |
msgstr "Shortcode zum Anzeigen einer Kurzbeschreibung, Link und Bild"
|
544 |
|
545 |
+
#: gallery-plugin.php:3381
|
546 |
#, fuzzy
|
547 |
msgid "Sorry, no gallery found."
|
548 |
msgstr "Leider nichts gefunden."
|
576 |
msgid "License Key"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
580 |
#, fuzzy
|
581 |
msgid "Settings saved"
|
582 |
msgstr "Slider Einstellung gespeichert"
|
583 |
|
584 |
+
#: includes/class-gllr-settings.php:256
|
585 |
#, fuzzy
|
586 |
msgid "Please, enable JavaScript in Your browser."
|
587 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
588 |
|
589 |
+
#: includes/class-gllr-settings.php:260
|
590 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/class-gllr-settings.php:261
|
594 |
#, fuzzy
|
595 |
msgid "Update Images"
|
596 |
msgstr "Reihenfolge Bilder"
|
597 |
|
598 |
+
#: includes/class-gllr-settings.php:276
|
599 |
#, fuzzy
|
600 |
msgid "Gallery Images"
|
601 |
msgstr "Bildgröße für Galerie"
|
602 |
|
603 |
+
#: includes/class-gllr-settings.php:281
|
604 |
msgid "Images adding requires JavaScript."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/class-gllr-settings.php:284
|
608 |
msgid "Add Media"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/class-gllr-settings.php:293
|
612 |
msgid "The grid view for the Gallery images requires JavaScript."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: includes/class-gllr-settings.php:293
|
616 |
msgid "Switch to the list view"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: includes/class-gllr-settings.php:320
|
620 |
+
#, fuzzy
|
621 |
+
msgid "Add Gallery to the Slider"
|
622 |
+
msgstr "Galerie hinzufügen"
|
623 |
+
|
624 |
+
#: includes/class-gllr-settings.php:332
|
625 |
+
#, fuzzy
|
626 |
+
msgid "Activate"
|
627 |
+
msgstr "Aktivierte Plugins"
|
628 |
+
|
629 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
630 |
+
msgid "Install Now"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: includes/class-gllr-settings.php:337
|
634 |
+
msgid "Add"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/class-gllr-settings.php:340
|
638 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/class-gllr-settings.php:351
|
642 |
#, fuzzy
|
643 |
msgid "Single Gallery Settings"
|
644 |
msgstr "Galerie Einstellungen"
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:353
|
647 |
#, php-format
|
648 |
msgid "Enable to configure single gallery settings and disable %s."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
652 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
653 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
654 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
655 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
656 |
#, fuzzy
|
657 |
msgid "Close"
|
658 |
msgstr "Details ausblenden"
|
659 |
|
660 |
+
#: includes/class-gllr-settings.php:369
|
661 |
#, fuzzy
|
662 |
msgid "Gallery Layout"
|
663 |
msgstr "Keine Galerien gefunden"
|
664 |
|
665 |
+
#: includes/class-gllr-settings.php:374
|
666 |
msgid "Grid"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/class-gllr-settings.php:380
|
670 |
msgid "Masonry"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: includes/class-gllr-settings.php:393
|
674 |
msgid "Number of Columns"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:396
|
678 |
#, php-format
|
679 |
msgid "Number of gallery columns (default is %s)."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
683 |
#, fuzzy
|
684 |
msgid "Image Size"
|
685 |
msgstr "Name der Bilder"
|
686 |
|
687 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
688 |
msgid "Custom"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: includes/class-gllr-settings.php:408
|
692 |
msgid ""
|
693 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/class-gllr-settings.php:412
|
697 |
#, fuzzy
|
698 |
msgid "Custom Image Size"
|
699 |
msgstr "Name der Bilder"
|
700 |
|
701 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
702 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
703 |
msgid "px"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/class-gllr-settings.php:415
|
707 |
msgid ""
|
708 |
"Adjust these values based on the number of columns in your gallery. This "
|
709 |
"won't effect the full size of your images in the lightbox."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/class-gllr-settings.php:426
|
713 |
#, fuzzy
|
714 |
msgid "Crop Images"
|
715 |
msgstr "Reihenfolge"
|
716 |
|
717 |
+
#: includes/class-gllr-settings.php:428
|
718 |
msgid ""
|
719 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
720 |
"to resize images automatically using their aspect ratio."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
724 |
#, fuzzy
|
725 |
msgid "Crop Position"
|
726 |
msgstr "Crop Position"
|
727 |
|
728 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
729 |
msgid "Select crop position base (by default: center)."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/class-gllr-settings.php:457
|
733 |
#, fuzzy
|
734 |
msgid "Image Title"
|
735 |
msgstr "Name der Bilder"
|
736 |
|
737 |
+
#: includes/class-gllr-settings.php:459
|
738 |
msgid "Enable to display image title along with the gallery image."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/class-gllr-settings.php:470
|
742 |
#, fuzzy
|
743 |
msgid "Image Title Position"
|
744 |
msgstr "Name der Bilder"
|
745 |
|
746 |
+
#: includes/class-gllr-settings.php:475
|
747 |
#, fuzzy
|
748 |
msgid "Under image"
|
749 |
msgstr "Reihenfolge Bilder"
|
750 |
|
751 |
+
#: includes/class-gllr-settings.php:481
|
752 |
msgid "On mouse hover"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/class-gllr-settings.php:494
|
756 |
#, fuzzy
|
757 |
msgid "Image Border"
|
758 |
msgstr "Bilder mit Rand"
|
759 |
|
760 |
+
#: includes/class-gllr-settings.php:496
|
761 |
msgid ""
|
762 |
"Enable images border using the styles defined for Image Border Size and "
|
763 |
"Color options."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: includes/class-gllr-settings.php:500
|
767 |
#, fuzzy
|
768 |
msgid "Image Border Size"
|
769 |
msgstr "Name der Bilder"
|
770 |
|
771 |
+
#: includes/class-gllr-settings.php:503
|
772 |
#, php-format
|
773 |
msgid "Gallery image border width (default is %s)"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/class-gllr-settings.php:507
|
777 |
#, fuzzy
|
778 |
msgid "Image Border Color"
|
779 |
msgstr "Rahmenfarbe"
|
780 |
|
781 |
+
#: includes/class-gllr-settings.php:520
|
782 |
msgid "Pagination"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/class-gllr-settings.php:523
|
786 |
msgid ""
|
787 |
"Enable pagination for images to limit number of images displayed on a single "
|
788 |
"gallery page."
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: includes/class-gllr-settings.php:527
|
792 |
#, fuzzy
|
793 |
msgid "Number of Images"
|
794 |
msgstr "Anzahl Bilder in einer Reihe"
|
795 |
|
796 |
+
#: includes/class-gllr-settings.php:530
|
797 |
#, php-format
|
798 |
msgid "Number of images displayed per page (default is %d)."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/class-gllr-settings.php:540
|
802 |
#, fuzzy
|
803 |
msgid "Sort Images by"
|
804 |
msgstr "Sortieren nach"
|
805 |
|
806 |
+
#: includes/class-gllr-settings.php:543
|
807 |
msgid "Manually (default)"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/class-gllr-settings.php:544
|
811 |
#, fuzzy
|
812 |
msgid "Image ID"
|
813 |
msgstr "Bild"
|
814 |
|
815 |
+
#: includes/class-gllr-settings.php:545
|
816 |
#, fuzzy
|
817 |
msgid "Name"
|
818 |
msgstr "Name"
|
819 |
|
820 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
821 |
msgid ""
|
822 |
"Select images sorting order in your gallery. By default, you can sort images "
|
823 |
"manually in the images tab."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/class-gllr-settings.php:553
|
827 |
#, fuzzy
|
828 |
msgid "Arrange Images by"
|
829 |
msgstr "Sortieren nach"
|
830 |
|
831 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
832 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
836 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/class-gllr-settings.php:562
|
840 |
#, fuzzy
|
841 |
msgid "Back Link"
|
842 |
msgstr "Zurück-Link URL"
|
843 |
|
844 |
+
#: includes/class-gllr-settings.php:564
|
845 |
msgid ""
|
846 |
"Enable to show a back link in a single gallery page which navigate to a "
|
847 |
"previous page."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/class-gllr-settings.php:568
|
851 |
#, fuzzy
|
852 |
msgid "Back Link URL"
|
853 |
msgstr "Zurück-Link URL"
|
854 |
|
855 |
+
#: includes/class-gllr-settings.php:571
|
856 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/class-gllr-settings.php:575
|
860 |
#, fuzzy
|
861 |
msgid "Back Link Label"
|
862 |
msgstr "Zurück-Link URL"
|
863 |
|
864 |
+
#: includes/class-gllr-settings.php:581
|
865 |
#, fuzzy
|
866 |
msgid "Back Link with Shortcode"
|
867 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
868 |
|
869 |
+
#: includes/class-gllr-settings.php:584
|
870 |
#, fuzzy
|
871 |
msgid "Enable to display a back link on a page where shortcode is used."
|
872 |
msgstr "Aktiviere Zurück-Link im Shortcode"
|
873 |
|
874 |
+
#: includes/class-gllr-settings.php:595
|
875 |
#, fuzzy
|
876 |
msgid "Cover Settings"
|
877 |
msgstr "Galerie Einstellungen"
|
878 |
|
879 |
+
#: includes/class-gllr-settings.php:600
|
880 |
#, fuzzy
|
881 |
msgid "Galleries Page"
|
882 |
msgstr "Galerien"
|
883 |
|
884 |
+
#: includes/class-gllr-settings.php:608
|
885 |
msgid "Base page where all existing galleries will be displayed."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:612
|
889 |
msgid "Albums Displaying"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-gllr-settings.php:615
|
893 |
msgid "Column"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/class-gllr-settings.php:616
|
897 |
msgid "Rows"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/class-gllr-settings.php:618
|
901 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/class-gllr-settings.php:622
|
905 |
msgid "Column Alignment"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/class-gllr-settings.php:625
|
909 |
msgid "Left"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/class-gllr-settings.php:626
|
913 |
msgid "Right"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/class-gllr-settings.php:627
|
917 |
msgid "Center"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:629
|
921 |
msgid "Select the column alignment."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/class-gllr-settings.php:633
|
925 |
#, fuzzy
|
926 |
msgid "Cover Image Size"
|
927 |
msgstr "Name der Bilder"
|
928 |
|
929 |
+
#: includes/class-gllr-settings.php:641
|
930 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:645
|
934 |
msgid "Custom Cover Image Size"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-gllr-settings.php:658
|
938 |
msgid "Crop Cover Images"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/class-gllr-settings.php:660
|
942 |
msgid ""
|
943 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
944 |
"Disable to resize images automatically using their aspect ratio."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: includes/class-gllr-settings.php:689
|
948 |
#, fuzzy
|
949 |
msgid "Cover Image Border"
|
950 |
msgstr "Bilder mit Rand"
|
951 |
|
952 |
+
#: includes/class-gllr-settings.php:691
|
953 |
msgid ""
|
954 |
"Enable cover images border using the styles defined for Image Border Size "
|
955 |
"and Color."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:695
|
959 |
msgid "Cover Image Border Size"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/class-gllr-settings.php:698
|
963 |
#, php-format
|
964 |
msgid "Cover image border width (default is %s)"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/class-gllr-settings.php:702
|
968 |
#, fuzzy
|
969 |
msgid "Cover Image Border Color"
|
970 |
msgstr "Rahmenfarbe"
|
971 |
|
972 |
+
#: includes/class-gllr-settings.php:708
|
973 |
#, fuzzy
|
974 |
msgid "Sort Albums by"
|
975 |
msgstr "Sortieren nach"
|
976 |
|
977 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Select galleries sorting order in your galleries page."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/class-gllr-settings.php:724
|
982 |
msgid "Arrange Albums by"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/class-gllr-settings.php:733
|
986 |
#, fuzzy
|
987 |
msgid "Read More Link Label"
|
988 |
msgstr "Weiterlesen link Text"
|
989 |
|
990 |
+
#: includes/class-gllr-settings.php:746
|
991 |
msgid "Instant Lightbox"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/class-gllr-settings.php:749
|
995 |
msgid ""
|
996 |
"Enable to display all images in the lightbox after clicking cover image or "
|
997 |
"URL instead of going to a single gallery page."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/class-gllr-settings.php:763
|
1001 |
#, fuzzy
|
1002 |
msgid "Lightbox Settings"
|
1003 |
msgstr "Lightbox Hintergrund"
|
1004 |
|
1005 |
+
#: includes/class-gllr-settings.php:768
|
1006 |
+
msgid "Unclickable Thumbnail Images"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/class-gllr-settings.php:771
|
1010 |
+
msgid ""
|
1011 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1012 |
+
"URLs. This option also disables Lightbox."
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: includes/class-gllr-settings.php:775
|
1016 |
msgid "Enable Lightbox"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/class-gllr-settings.php:778
|
1020 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/class-gllr-settings.php:796
|
1024 |
msgid ""
|
1025 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1026 |
"will display the original, full size image."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/class-gllr-settings.php:800
|
1030 |
msgid "Overlay Color"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/class-gllr-settings.php:806
|
1034 |
msgid "Overlay Opacity"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: includes/class-gllr-settings.php:809
|
1038 |
#, php-format
|
1039 |
msgid ""
|
1040 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1041 |
"is %s)."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/class-gllr-settings.php:819
|
1045 |
#, fuzzy
|
1046 |
msgid "Slideshow"
|
1047 |
msgstr "Starte Slideshow"
|
1048 |
|
1049 |
+
#: includes/class-gllr-settings.php:821
|
1050 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/class-gllr-settings.php:825
|
1054 |
#, fuzzy
|
1055 |
msgid "Slideshow Duration"
|
1056 |
msgstr "Slideshow Geschwindigkeit"
|
1057 |
|
1058 |
+
#: includes/class-gllr-settings.php:827
|
1059 |
msgid "ms"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/class-gllr-settings.php:828
|
1063 |
msgid "Slideshow interval duration between two images."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/class-gllr-settings.php:839
|
1067 |
#, fuzzy
|
1068 |
msgid "Lightbox Helpers"
|
1069 |
msgstr "Lightbox Hintergrund"
|
1070 |
|
1071 |
+
#: includes/class-gllr-settings.php:841
|
1072 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/class-gllr-settings.php:845
|
1076 |
#, fuzzy
|
1077 |
msgid "Lightbox Thumbnails"
|
1078 |
msgstr "Bildgröße für Beitragsbild"
|
1079 |
|
1080 |
+
#: includes/class-gllr-settings.php:847
|
1081 |
msgid "Enable to use a lightbox helper navigation between images."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/class-gllr-settings.php:851
|
1085 |
msgid "Lightbox Thumbnails Position"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/class-gllr-settings.php:854
|
1089 |
#, fuzzy
|
1090 |
msgid "Top"
|
1091 |
msgstr "oben"
|
1092 |
|
1093 |
+
#: includes/class-gllr-settings.php:859
|
1094 |
#, fuzzy
|
1095 |
msgid "Lightbox Button Label"
|
1096 |
msgstr "Lightbox Hintergrund"
|
1097 |
|
1098 |
+
#: includes/class-gllr-settings.php:861
|
1099 |
#, fuzzy
|
1100 |
msgid "Read More"
|
1101 |
msgstr "Mehr erfahren"
|
1102 |
|
1103 |
+
#: includes/class-gllr-settings.php:871
|
1104 |
msgid "Download Button"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:873
|
1108 |
msgid "Enable to display download button."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:877
|
1112 |
msgid "Single Lightbox"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:879
|
1116 |
msgid ""
|
1117 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1118 |
"page."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/class-gllr-settings.php:889
|
1122 |
msgid "Social Sharing Buttons Settings"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/class-gllr-settings.php:898
|
1126 |
msgid "Social Buttons"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/class-gllr-settings.php:900
|
1130 |
msgid "Enable social sharing buttons in the lightbox."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/class-gllr-settings.php:904
|
1134 |
msgid "Social Networks"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/class-gllr-settings.php:915
|
1138 |
#, fuzzy
|
1139 |
msgid "Counter"
|
1140 |
msgstr "Slideshow Geschwindigkeit"
|
1141 |
|
1142 |
+
#: includes/class-gllr-settings.php:918
|
1143 |
msgid ""
|
1144 |
"Enable to show likes counter for each social button (not available for "
|
1145 |
"Google +1)."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/class-gllr-settings.php:933
|
1149 |
#, fuzzy
|
1150 |
msgid "Demo Data"
|
1151 |
msgstr "Sind Sie sicher, dass Sie Demo-Daten installieren möchten?"
|
1152 |
|
1153 |
+
#: includes/class-gllr-settings.php:935
|
1154 |
msgid ""
|
1155 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1156 |
"page with a list of all galleries."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/class-gllr-settings.php:973
|
1160 |
#, fuzzy
|
1161 |
msgid "Gallery Post Type"
|
1162 |
msgstr "Galerie Einstellungen"
|
1163 |
|
1164 |
+
#: includes/class-gllr-settings.php:975
|
1165 |
msgid ""
|
1166 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1167 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1169 |
"used."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/class-gllr-settings.php:987
|
1173 |
#, fuzzy
|
1174 |
msgid "Gallery Slug"
|
1175 |
msgstr "Galerie"
|
1176 |
|
1177 |
+
#: includes/class-gllr-settings.php:991
|
1178 |
msgid "Enter the unique gallery slug."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/class-gllr-settings.php:1007
|
1182 |
#, fuzzy
|
1183 |
msgid "Activate Now"
|
1184 |
msgstr "Aktivierte Plugins"
|
1185 |
|
1186 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1187 |
msgid "Enable to include galleries to your website search."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/class-gllr-settings.php:1025
|
1191 |
#, php-format
|
1192 |
msgid "%s is required."
|
1193 |
msgstr ""
|
1334 |
#~ msgid "Learn more"
|
1335 |
#~ msgstr "Mehr erfahren"
|
1336 |
|
|
|
|
|
|
|
|
|
1337 |
#, fuzzy
|
1338 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1339 |
#~ msgstr "Aktivier Like-Button in der Lightbox"
|
1514 |
#~ msgid "Select a background color"
|
1515 |
#~ msgstr "Wähle eine Hintergrundfarbe"
|
1516 |
|
|
|
|
|
|
|
|
|
1517 |
#~ msgid "Width (in px)"
|
1518 |
#~ msgstr "Breite (in px)"
|
1519 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
@@ -19,154 +19,154 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ gallery
|
22 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Configuracion de la Galeria"
|
25 |
|
26 |
# @ gallery
|
27 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
28 |
#, fuzzy
|
29 |
msgid "Global Settings"
|
30 |
msgstr "Configuracion de la Galeria"
|
31 |
|
32 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
33 |
#, fuzzy
|
34 |
msgid "Upgrade to Pro"
|
35 |
msgstr "Actualizar a Pro"
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "Return to all albums"
|
39 |
msgstr ""
|
40 |
|
41 |
# @ gallery
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "See images »"
|
44 |
msgstr "Ver imagens »"
|
45 |
|
46 |
# @ gallery
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Galleries"
|
49 |
msgstr "Galerias"
|
50 |
|
51 |
# @ gallery
|
52 |
-
#: gallery-plugin.php:
|
53 |
msgid "Gallery"
|
54 |
msgstr "Galeria"
|
55 |
|
56 |
# @ gallery
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Add New Gallery"
|
59 |
msgstr "Agregar una Galeria nueva"
|
60 |
|
61 |
# @ gallery
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Edit Gallery"
|
64 |
msgstr "Editar Galeria"
|
65 |
|
66 |
# @ gallery
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "New Gallery"
|
69 |
msgstr "Galeria nueva"
|
70 |
|
71 |
# @ gallery
|
72 |
-
#: gallery-plugin.php:
|
73 |
msgid "View Gallery"
|
74 |
msgstr "Ver Galeria"
|
75 |
|
76 |
# @ gallery
|
77 |
-
#: gallery-plugin.php:
|
78 |
#, fuzzy
|
79 |
msgid "Search Galleries"
|
80 |
msgstr "Galerias"
|
81 |
|
82 |
# @ gallery
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "No Gallery found"
|
85 |
msgstr "Ninguna galeria encontrada"
|
86 |
|
87 |
# @ gallery
|
88 |
-
#: gallery-plugin.php:
|
89 |
-
#: gallery-plugin.php:
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Gallery Categories"
|
93 |
msgstr "Tamanño de da imagen de la galeria"
|
94 |
|
95 |
# @ gallery
|
96 |
-
#: gallery-plugin.php:
|
97 |
#, fuzzy
|
98 |
msgid "Gallery Category"
|
99 |
msgstr "Tamanño de da imagen de la galeria"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Add Gallery Category"
|
103 |
msgstr ""
|
104 |
|
105 |
# @ gallery
|
106 |
-
#: gallery-plugin.php:
|
107 |
#, fuzzy
|
108 |
msgid "Add New Gallery Category"
|
109 |
msgstr "Agregar una Galeria nueva"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Edit Gallery Category"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "New Gallery Category"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "View Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Find Gallery Category"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "No Gallery Categories found"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "No Gallery Categories found in Trash"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "Parent Gallery Category"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Gallery Categories list navigation"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Categories list"
|
145 |
msgstr ""
|
146 |
|
147 |
# @ gallery
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Gallery Shortcode"
|
150 |
msgstr "Codigo corto de Galeria"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid ""
|
154 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
155 |
"widgets by using the following shortcode:"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid ""
|
160 |
"Add a gallery cover including featured image, description, and a link to "
|
161 |
"your single gallery using the following shortcode:"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
#, fuzzy
|
166 |
msgid "Note"
|
167 |
msgstr "Nota"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"When deleting a category, the galleries that belong to this category will "
|
@@ -174,125 +174,177 @@ msgid ""
|
|
174 |
msgstr ""
|
175 |
|
176 |
# @ gallery
|
177 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
#, fuzzy
|
179 |
msgid "Shortcode"
|
180 |
msgstr "Codigo corto de Galeria"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "All Gallery Categories"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "You can't delete default gallery category."
|
188 |
msgstr ""
|
189 |
|
190 |
# @ gallery
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Sorry, nothing found."
|
193 |
msgstr "Disculpe, nada fue encontrado."
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
#, fuzzy
|
197 |
msgid "Featured Image"
|
198 |
msgstr "Foto principal"
|
199 |
|
200 |
# @ gallery
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
203 |
-
msgid "Title"
|
204 |
-
msgstr "Título"
|
205 |
-
|
206 |
-
# @ gallery
|
207 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
208 |
#, fuzzy
|
209 |
msgid "Images"
|
210 |
msgstr "Ver imagens »"
|
211 |
|
212 |
-
|
213 |
-
#: gallery-plugin.php:1601 includes/class-gllr-settings.php:684
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Autor"
|
216 |
-
|
217 |
-
# @ gallery
|
218 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
219 |
-
#: includes/class-gllr-settings.php:680
|
220 |
-
msgid "Date"
|
221 |
-
msgstr "Fecha"
|
222 |
-
|
223 |
-
#: gallery-plugin.php:1688
|
224 |
#, php-format
|
225 |
msgid "%s Settings"
|
226 |
msgstr ""
|
227 |
|
228 |
# @ bestwebsoft
|
229 |
# @ gallery
|
230 |
-
#: gallery-plugin.php:
|
231 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
232 |
msgid "Settings"
|
233 |
msgstr "Configuraciones"
|
234 |
|
235 |
# @ gallery
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "FAQ"
|
238 |
msgstr "FAQ"
|
239 |
|
240 |
# @ gallery
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Support"
|
243 |
msgstr "Soporte"
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid "Updating images..."
|
247 |
msgstr "Actualizando imagenes"
|
248 |
|
249 |
# @ gallery
|
250 |
-
#: gallery-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid "No images found."
|
253 |
msgstr "Imagen no encontrada"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "All images were updated."
|
258 |
msgstr "Todas las imgenes an sido actualizados"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Error."
|
262 |
msgstr "Error"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid ""
|
266 |
"You are about to remove these items from this gallery.\n"
|
267 |
" 'Cancel' to stop, 'OK' to delete."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid ""
|
272 |
"You are about to remove this image from the gallery.\n"
|
273 |
" 'Cancel' to stop, 'OK' to delete."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid ""
|
278 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
279 |
"switching?"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Insert Media"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Insert"
|
288 |
msgstr ""
|
289 |
|
|
|
|
|
|
|
|
|
290 |
# @ gallery
|
291 |
-
#: gallery-plugin.php:
|
292 |
msgid "Image size not defined"
|
293 |
msgstr "Tanaño de imagen no definida"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid ""
|
298 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
@@ -301,242 +353,238 @@ msgstr ""
|
|
301 |
"Solo podemos actualizar archivos PNG, JPEG, GIF, WPMP o XBM. Para otros "
|
302 |
"formatos necesita volver a subir elarchivo."
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Invalid path"
|
306 |
msgstr "Ruta incorrecta."
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "List View"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Grid View"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
#, fuzzy
|
318 |
msgid "Filter"
|
319 |
msgstr "Filtro"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Empty Trash"
|
323 |
msgstr ""
|
324 |
|
325 |
# @ gallery
|
326 |
-
#: gallery-plugin.php:
|
327 |
#, fuzzy
|
328 |
msgid "No images found"
|
329 |
msgstr "Imagen no encontrada"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "Select bulk action"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Bulk Actions"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
#, fuzzy
|
341 |
msgid "Apply"
|
342 |
msgstr "Aplicar la configuración de red"
|
343 |
|
344 |
# @ gallery
|
345 |
-
#: gallery-plugin.php:
|
346 |
#, fuzzy
|
347 |
msgid "Delete from Gallery"
|
348 |
msgstr "Galeria nueva"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Bulk Select"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Cancel Selection"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "Delete Selected"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
#, fuzzy
|
364 |
msgid "File"
|
365 |
msgstr "archivo"
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Dimensions"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
#, fuzzy
|
373 |
msgid "Alt Text"
|
374 |
msgstr "Etiqueta alternativa"
|
375 |
|
376 |
# @ gallery
|
377 |
-
#: gallery-plugin.php:
|
378 |
msgid "URL"
|
379 |
msgstr "URL"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid ""
|
383 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
384 |
"to open a full size image."
|
385 |
msgstr ""
|
386 |
|
387 |
# @ gallery
|
388 |
-
#: gallery-plugin.php:
|
389 |
#, fuzzy
|
390 |
msgid "Remove Image from Gallery"
|
391 |
msgstr "Galeria nueva"
|
392 |
|
393 |
# @ gallery
|
394 |
-
#: gallery-plugin.php:
|
395 |
#, fuzzy
|
396 |
msgid "Edit Image Info"
|
397 |
msgstr "ID del anexo"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
msgid "Deselect"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "File name"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "File type"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
#, fuzzy
|
413 |
msgid "Description"
|
414 |
msgstr "Slide Description"
|
415 |
|
416 |
# @ gallery
|
417 |
-
#: gallery-plugin.php:
|
418 |
#, fuzzy
|
419 |
msgid "Lightbox Button URL"
|
420 |
msgstr "Fundo del Lightbox"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "New Tab"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Enable to open URLs above in a new tab."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
#, fuzzy
|
432 |
msgid "Go Pro"
|
433 |
msgstr "Ir Pro"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "Edit more details"
|
437 |
msgstr ""
|
438 |
|
439 |
# @ gallery
|
440 |
-
#: gallery-plugin.php:
|
441 |
#, fuzzy
|
442 |
msgid "Remove from Gallery"
|
443 |
msgstr "Galeria nueva"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
#, php-format
|
447 |
msgid "Select %s"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
#, php-format
|
452 |
msgid "Edit “%s”"
|
453 |
msgstr ""
|
454 |
|
455 |
# @ gallery
|
456 |
-
#: gallery-plugin.php:
|
457 |
#, fuzzy
|
458 |
msgid "Edit Attachment Info"
|
459 |
msgstr "ID del anexo"
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Edit"
|
464 |
msgstr "Editar"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Trash"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
msgid "Delete Permanently"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
#, php-format
|
476 |
msgid "View “%s”"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
#, fuzzy
|
481 |
msgid "View"
|
482 |
msgstr "Ver tipos de vehículos"
|
483 |
|
484 |
# @ gallery
|
485 |
-
#: gallery-plugin.php:
|
486 |
#, fuzzy
|
487 |
msgid "Attach"
|
488 |
msgstr "ID del anexo"
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
msgid "Restore"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
msgid "A list or dropdown of Gallery categories."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
msgid "Select Gallery Category"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
#, fuzzy
|
504 |
msgid "Title:"
|
505 |
msgstr "Título:"
|
506 |
|
507 |
-
#: gallery-plugin.php:
|
508 |
msgid "Display as dropdown"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: gallery-plugin.php:
|
512 |
msgid "Show gallery counts"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: gallery-plugin.php:
|
516 |
msgid "Show hierarchy"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
#, fuzzy
|
521 |
msgid "Warning"
|
522 |
msgstr "Atención"
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
msgid "You can add only images to the gallery"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: gallery-plugin.php:3173
|
529 |
-
msgid "or"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
# @ gallery
|
533 |
-
#: gallery-plugin.php:
|
534 |
#, fuzzy
|
535 |
msgid "no title"
|
536 |
msgstr "título"
|
537 |
|
538 |
# @ gallery
|
539 |
-
#: gallery-plugin.php:
|
540 |
#, fuzzy
|
541 |
msgid ""
|
542 |
"Display an album image with the description and the link to a single gallery "
|
@@ -546,7 +594,7 @@ msgstr ""
|
|
546 |
"una pagina."
|
547 |
|
548 |
# @ gallery
|
549 |
-
#: gallery-plugin.php:
|
550 |
#, fuzzy
|
551 |
msgid "Sorry, no gallery found."
|
552 |
msgstr "Disculpe, nada fue encontrado."
|
@@ -583,490 +631,499 @@ msgstr "Import / Export"
|
|
583 |
msgid "License Key"
|
584 |
msgstr "Licencia"
|
585 |
|
586 |
-
#: includes/class-gllr-settings.php:210
|
587 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
# @ gallery
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
#, fuzzy
|
593 |
msgid "Settings saved"
|
594 |
msgstr "Ajustes guardados"
|
595 |
|
596 |
# @ gallery
|
597 |
-
#: includes/class-gllr-settings.php:
|
598 |
#, fuzzy
|
599 |
msgid "Please, enable JavaScript in Your browser."
|
600 |
msgstr "Por favor habilite el Javascript para subir sus archivos."
|
601 |
|
602 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
603 |
#, fuzzy
|
604 |
msgid "Update Images"
|
605 |
msgstr "Actualizando imagenes"
|
606 |
|
607 |
# @ gallery
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
#, fuzzy
|
610 |
msgid "Gallery Images"
|
611 |
msgstr "Tamanño de da imagen de la galeria"
|
612 |
|
613 |
-
#: includes/class-gllr-settings.php:
|
614 |
msgid "Images adding requires JavaScript."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-gllr-settings.php:
|
618 |
msgid "Add Media"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-gllr-settings.php:
|
622 |
msgid "The grid view for the Gallery images requires JavaScript."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/class-gllr-settings.php:
|
626 |
msgid "Switch to the list view"
|
627 |
msgstr ""
|
628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
# @ gallery
|
630 |
-
#: includes/class-gllr-settings.php:
|
631 |
#, fuzzy
|
632 |
msgid "Single Gallery Settings"
|
633 |
msgstr "Configuracion de la Galeria"
|
634 |
|
635 |
-
#: includes/class-gllr-settings.php:
|
636 |
#, php-format
|
637 |
msgid "Enable to configure single gallery settings and disable %s."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: includes/class-gllr-settings.php:
|
641 |
-
#: includes/class-gllr-settings.php:
|
642 |
-
#: includes/class-gllr-settings.php:
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
-
#: includes/class-gllr-settings.php:
|
645 |
#, fuzzy
|
646 |
msgid "Close"
|
647 |
msgstr "Descartar"
|
648 |
|
649 |
# @ gallery
|
650 |
-
#: includes/class-gllr-settings.php:
|
651 |
#, fuzzy
|
652 |
msgid "Gallery Layout"
|
653 |
msgstr "Ninguna galeria encontrada"
|
654 |
|
655 |
-
#: includes/class-gllr-settings.php:
|
656 |
msgid "Grid"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/class-gllr-settings.php:
|
660 |
msgid "Masonry"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/class-gllr-settings.php:
|
664 |
msgid "Number of Columns"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/class-gllr-settings.php:
|
668 |
#, php-format
|
669 |
msgid "Number of gallery columns (default is %s)."
|
670 |
msgstr ""
|
671 |
|
672 |
# @ gallery
|
673 |
-
#: includes/class-gllr-settings.php:
|
674 |
#, fuzzy
|
675 |
msgid "Image Size"
|
676 |
msgstr "Tamaño de la imagen"
|
677 |
|
678 |
-
#: includes/class-gllr-settings.php:
|
679 |
#, fuzzy
|
680 |
msgid "Custom"
|
681 |
msgstr "Personalizado"
|
682 |
|
683 |
-
#: includes/class-gllr-settings.php:
|
684 |
msgid ""
|
685 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
686 |
msgstr ""
|
687 |
|
688 |
# @ gallery
|
689 |
-
#: includes/class-gllr-settings.php:
|
690 |
#, fuzzy
|
691 |
msgid "Custom Image Size"
|
692 |
msgstr "Tamaño de la imagen"
|
693 |
|
694 |
-
#: includes/class-gllr-settings.php:
|
695 |
-
#: includes/class-gllr-settings.php:
|
696 |
msgid "px"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/class-gllr-settings.php:
|
700 |
msgid ""
|
701 |
"Adjust these values based on the number of columns in your gallery. This "
|
702 |
"won't effect the full size of your images in the lightbox."
|
703 |
msgstr ""
|
704 |
|
705 |
# @ gallery
|
706 |
-
#: includes/class-gllr-settings.php:
|
707 |
#, fuzzy
|
708 |
msgid "Crop Images"
|
709 |
msgstr "Ordenar imagenes:"
|
710 |
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
msgid ""
|
713 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
714 |
"to resize images automatically using their aspect ratio."
|
715 |
msgstr ""
|
716 |
|
717 |
# @ gallery
|
718 |
-
#: includes/class-gllr-settings.php:
|
719 |
#, fuzzy
|
720 |
msgid "Crop Position"
|
721 |
msgstr "Recortar posicion"
|
722 |
|
723 |
-
#: includes/class-gllr-settings.php:
|
724 |
msgid "Select crop position base (by default: center)."
|
725 |
msgstr ""
|
726 |
|
727 |
# @ gallery
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
#, fuzzy
|
730 |
msgid "Image Title"
|
731 |
msgstr "Tamaño de la imagen"
|
732 |
|
733 |
-
#: includes/class-gllr-settings.php:
|
734 |
msgid "Enable to display image title along with the gallery image."
|
735 |
msgstr ""
|
736 |
|
737 |
# @ gallery
|
738 |
-
#: includes/class-gllr-settings.php:
|
739 |
#, fuzzy
|
740 |
msgid "Image Title Position"
|
741 |
msgstr "Tanaño de imagen no definida"
|
742 |
|
743 |
# @ gallery
|
744 |
-
#: includes/class-gllr-settings.php:
|
745 |
#, fuzzy
|
746 |
msgid "Under image"
|
747 |
msgstr "Actualizar imagenes"
|
748 |
|
749 |
-
#: includes/class-gllr-settings.php:
|
750 |
msgid "On mouse hover"
|
751 |
msgstr ""
|
752 |
|
753 |
# @ gallery
|
754 |
-
#: includes/class-gllr-settings.php:
|
755 |
#, fuzzy
|
756 |
msgid "Image Border"
|
757 |
msgstr "Imagens con borde"
|
758 |
|
759 |
-
#: includes/class-gllr-settings.php:
|
760 |
msgid ""
|
761 |
"Enable images border using the styles defined for Image Border Size and "
|
762 |
"Color options."
|
763 |
msgstr ""
|
764 |
|
765 |
# @ gallery
|
766 |
-
#: includes/class-gllr-settings.php:
|
767 |
#, fuzzy
|
768 |
msgid "Image Border Size"
|
769 |
msgstr "Tamaño de la imagen"
|
770 |
|
771 |
-
#: includes/class-gllr-settings.php:
|
772 |
#, php-format
|
773 |
msgid "Gallery image border width (default is %s)"
|
774 |
msgstr ""
|
775 |
|
776 |
# @ gallery
|
777 |
-
#: includes/class-gllr-settings.php:
|
778 |
#, fuzzy
|
779 |
msgid "Image Border Color"
|
780 |
msgstr "Escoja el color del borde"
|
781 |
|
782 |
-
#: includes/class-gllr-settings.php:
|
783 |
msgid "Pagination"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: includes/class-gllr-settings.php:
|
787 |
msgid ""
|
788 |
"Enable pagination for images to limit number of images displayed on a single "
|
789 |
"gallery page."
|
790 |
msgstr ""
|
791 |
|
792 |
# @ gallery
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
#, fuzzy
|
795 |
msgid "Number of Images"
|
796 |
msgstr "Número de imagenes por fila"
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
#, php-format
|
800 |
msgid "Number of images displayed per page (default is %d)."
|
801 |
msgstr ""
|
802 |
|
803 |
# @ gallery
|
804 |
-
#: includes/class-gllr-settings.php:
|
805 |
#, fuzzy
|
806 |
msgid "Sort Images by"
|
807 |
msgstr "Ordenar imagens por"
|
808 |
|
809 |
-
#: includes/class-gllr-settings.php:
|
810 |
msgid "Manually (default)"
|
811 |
msgstr ""
|
812 |
|
813 |
# @ gallery
|
814 |
-
#: includes/class-gllr-settings.php:
|
815 |
#, fuzzy
|
816 |
msgid "Image ID"
|
817 |
msgstr "Imagen"
|
818 |
|
819 |
-
#: includes/class-gllr-settings.php:
|
820 |
#, fuzzy
|
821 |
msgid "Name"
|
822 |
msgstr "Nombre"
|
823 |
|
824 |
-
|
825 |
-
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
826 |
-
msgid "Random"
|
827 |
-
msgstr "Aleatório"
|
828 |
-
|
829 |
-
#: includes/class-gllr-settings.php:516
|
830 |
msgid ""
|
831 |
"Select images sorting order in your gallery. By default, you can sort images "
|
832 |
"manually in the images tab."
|
833 |
msgstr ""
|
834 |
|
835 |
# @ gallery
|
836 |
-
#: includes/class-gllr-settings.php:
|
837 |
#, fuzzy
|
838 |
msgid "Arrange Images by"
|
839 |
msgstr "Ordenar imagens por"
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
847 |
msgstr ""
|
848 |
|
849 |
# @ gallery
|
850 |
-
#: includes/class-gllr-settings.php:
|
851 |
#, fuzzy
|
852 |
msgid "Back Link"
|
853 |
msgstr "URL del enlacw Volver"
|
854 |
|
855 |
-
#: includes/class-gllr-settings.php:
|
856 |
msgid ""
|
857 |
"Enable to show a back link in a single gallery page which navigate to a "
|
858 |
"previous page."
|
859 |
msgstr ""
|
860 |
|
861 |
# @ gallery
|
862 |
-
#: includes/class-gllr-settings.php:
|
863 |
#, fuzzy
|
864 |
msgid "Back Link URL"
|
865 |
msgstr "URL del enlacw Volver"
|
866 |
|
867 |
-
#: includes/class-gllr-settings.php:
|
868 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
869 |
msgstr ""
|
870 |
|
871 |
# @ gallery
|
872 |
-
#: includes/class-gllr-settings.php:
|
873 |
#, fuzzy
|
874 |
msgid "Back Link Label"
|
875 |
msgstr "URL del enlacw Volver"
|
876 |
|
877 |
# @ gallery
|
878 |
-
#: includes/class-gllr-settings.php:
|
879 |
#, fuzzy
|
880 |
msgid "Back Link with Shortcode"
|
881 |
msgstr "Mostrar enlace Volver codigo corto"
|
882 |
|
883 |
# @ gallery
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
#, fuzzy
|
886 |
msgid "Enable to display a back link on a page where shortcode is used."
|
887 |
msgstr "Mostrar enlace Volver codigo corto"
|
888 |
|
889 |
# @ gallery
|
890 |
-
#: includes/class-gllr-settings.php:
|
891 |
#, fuzzy
|
892 |
msgid "Cover Settings"
|
893 |
msgstr "Configuracion de la Galeria"
|
894 |
|
895 |
# @ gallery
|
896 |
-
#: includes/class-gllr-settings.php:
|
897 |
#, fuzzy
|
898 |
msgid "Galleries Page"
|
899 |
msgstr "Galerias"
|
900 |
|
901 |
-
#: includes/class-gllr-settings.php:
|
902 |
#, fuzzy
|
903 |
msgid "Base page where all existing galleries will be displayed."
|
904 |
msgstr "Si actualiza a PRO sus configuraciones se guardaran"
|
905 |
|
906 |
-
#: includes/class-gllr-settings.php:
|
907 |
msgid "Albums Displaying"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class-gllr-settings.php:
|
911 |
msgid "Column"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/class-gllr-settings.php:
|
915 |
msgid "Rows"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/class-gllr-settings.php:
|
919 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/class-gllr-settings.php:
|
923 |
msgid "Column Alignment"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/class-gllr-settings.php:
|
927 |
msgid "Left"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/class-gllr-settings.php:
|
931 |
msgid "Right"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/class-gllr-settings.php:
|
935 |
msgid "Center"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/class-gllr-settings.php:
|
939 |
msgid "Select the column alignment."
|
940 |
msgstr ""
|
941 |
|
942 |
# @ gallery
|
943 |
-
#: includes/class-gllr-settings.php:
|
944 |
#, fuzzy
|
945 |
msgid "Cover Image Size"
|
946 |
msgstr "Tamaño de la imagen"
|
947 |
|
948 |
-
#: includes/class-gllr-settings.php:
|
949 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/class-gllr-settings.php:
|
953 |
msgid "Custom Cover Image Size"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/class-gllr-settings.php:
|
957 |
msgid "Crop Cover Images"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/class-gllr-settings.php:
|
961 |
msgid ""
|
962 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
963 |
"Disable to resize images automatically using their aspect ratio."
|
964 |
msgstr ""
|
965 |
|
966 |
# @ gallery
|
967 |
-
#: includes/class-gllr-settings.php:
|
968 |
#, fuzzy
|
969 |
msgid "Cover Image Border"
|
970 |
msgstr "Imagens con borde"
|
971 |
|
972 |
-
#: includes/class-gllr-settings.php:
|
973 |
msgid ""
|
974 |
"Enable cover images border using the styles defined for Image Border Size "
|
975 |
"and Color."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/class-gllr-settings.php:
|
979 |
msgid "Cover Image Border Size"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/class-gllr-settings.php:
|
983 |
#, php-format
|
984 |
msgid "Cover image border width (default is %s)"
|
985 |
msgstr ""
|
986 |
|
987 |
# @ gallery
|
988 |
-
#: includes/class-gllr-settings.php:
|
989 |
#, fuzzy
|
990 |
msgid "Cover Image Border Color"
|
991 |
msgstr "Escoja el color del borde"
|
992 |
|
993 |
# @ gallery
|
994 |
-
#: includes/class-gllr-settings.php:
|
995 |
#, fuzzy
|
996 |
msgid "Sort Albums by"
|
997 |
msgstr "Ordenar imagens por"
|
998 |
|
999 |
-
|
1000 |
-
#: includes/class-gllr-settings.php:678
|
1001 |
-
#, fuzzy
|
1002 |
-
msgid "Gallery ID"
|
1003 |
-
msgstr "Galeria"
|
1004 |
-
|
1005 |
-
#: includes/class-gllr-settings.php:681
|
1006 |
-
msgid "Last modified date"
|
1007 |
-
msgstr ""
|
1008 |
-
|
1009 |
-
#: includes/class-gllr-settings.php:682
|
1010 |
-
msgid "Comment count"
|
1011 |
-
msgstr ""
|
1012 |
-
|
1013 |
-
#: includes/class-gllr-settings.php:683
|
1014 |
-
msgid "\"Order\" field on the gallery edit page"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: includes/class-gllr-settings.php:687
|
1018 |
msgid "Select galleries sorting order in your galleries page."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: includes/class-gllr-settings.php:
|
1022 |
msgid "Arrange Albums by"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
# @ gallery
|
1026 |
-
#: includes/class-gllr-settings.php:
|
1027 |
#, fuzzy
|
1028 |
msgid "Read More Link Label"
|
1029 |
msgstr "Texto del enlace leer mas"
|
1030 |
|
1031 |
-
#: includes/class-gllr-settings.php:
|
1032 |
msgid "Instant Lightbox"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/class-gllr-settings.php:
|
1036 |
msgid ""
|
1037 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1038 |
"URL instead of going to a single gallery page."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
# @ gallery
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Lightbox Settings"
|
1045 |
msgstr "Fundo del Lightbox"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
msgid "Enable Lightbox"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/class-gllr-settings.php:
|
1052 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/class-gllr-settings.php:
|
1056 |
msgid ""
|
1057 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1058 |
"will display the original, full size image."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/class-gllr-settings.php:
|
1062 |
msgid "Overlay Color"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/class-gllr-settings.php:
|
1066 |
msgid "Overlay Opacity"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/class-gllr-settings.php:
|
1070 |
#, php-format
|
1071 |
msgid ""
|
1072 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -1074,134 +1131,134 @@ msgid ""
|
|
1074 |
msgstr ""
|
1075 |
|
1076 |
# @ gallery
|
1077 |
-
#: includes/class-gllr-settings.php:
|
1078 |
#, fuzzy
|
1079 |
msgid "Slideshow"
|
1080 |
msgstr "Iniciar Apresentacion de diapositivas"
|
1081 |
|
1082 |
-
#: includes/class-gllr-settings.php:
|
1083 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
# @ gallery
|
1087 |
-
#: includes/class-gllr-settings.php:
|
1088 |
#, fuzzy
|
1089 |
msgid "Slideshow Duration"
|
1090 |
msgstr "Intervalo entre las diapositivas"
|
1091 |
|
1092 |
-
#: includes/class-gllr-settings.php:
|
1093 |
msgid "ms"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/class-gllr-settings.php:
|
1097 |
msgid "Slideshow interval duration between two images."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
# @ gallery
|
1101 |
-
#: includes/class-gllr-settings.php:
|
1102 |
#, fuzzy
|
1103 |
msgid "Lightbox Helpers"
|
1104 |
msgstr "Fundo del Lightbox"
|
1105 |
|
1106 |
-
#: includes/class-gllr-settings.php:
|
1107 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
# @ gallery
|
1111 |
-
#: includes/class-gllr-settings.php:
|
1112 |
#, fuzzy
|
1113 |
msgid "Lightbox Thumbnails"
|
1114 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
1115 |
|
1116 |
-
#: includes/class-gllr-settings.php:
|
1117 |
msgid "Enable to use a lightbox helper navigation between images."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/class-gllr-settings.php:
|
1121 |
msgid "Lightbox Thumbnails Position"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: includes/class-gllr-settings.php:
|
1125 |
msgid "Top"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
# @ gallery
|
1129 |
-
#: includes/class-gllr-settings.php:
|
1130 |
#, fuzzy
|
1131 |
msgid "Lightbox Button Label"
|
1132 |
msgstr "Fundo del Lightbox"
|
1133 |
|
1134 |
-
#: includes/class-gllr-settings.php:
|
1135 |
#, fuzzy
|
1136 |
msgid "Read More"
|
1137 |
msgstr "Saber mas."
|
1138 |
|
1139 |
-
#: includes/class-gllr-settings.php:
|
1140 |
#, fuzzy
|
1141 |
msgid "Download Button"
|
1142 |
msgstr "Descarga Busqueda customizada"
|
1143 |
|
1144 |
-
#: includes/class-gllr-settings.php:
|
1145 |
msgid "Enable to display download button."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/class-gllr-settings.php:
|
1149 |
msgid "Single Lightbox"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/class-gllr-settings.php:
|
1153 |
#, fuzzy
|
1154 |
msgid ""
|
1155 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1156 |
"page."
|
1157 |
msgstr "Usar un LightBox unici para multiples galerias en una pagina."
|
1158 |
|
1159 |
-
#: includes/class-gllr-settings.php:
|
1160 |
msgid "Social Sharing Buttons Settings"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/class-gllr-settings.php:
|
1164 |
msgid "Social Buttons"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/class-gllr-settings.php:
|
1168 |
msgid "Enable social sharing buttons in the lightbox."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/class-gllr-settings.php:
|
1172 |
msgid "Social Networks"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
# @ gallery
|
1176 |
-
#: includes/class-gllr-settings.php:
|
1177 |
#, fuzzy
|
1178 |
msgid "Counter"
|
1179 |
msgstr "Intervalo entre las diapositivas"
|
1180 |
|
1181 |
-
#: includes/class-gllr-settings.php:
|
1182 |
msgid ""
|
1183 |
"Enable to show likes counter for each social button (not available for "
|
1184 |
"Google +1)."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/class-gllr-settings.php:
|
1188 |
#, fuzzy
|
1189 |
msgid "Demo Data"
|
1190 |
msgstr "Datos de ejemplo"
|
1191 |
|
1192 |
-
#: includes/class-gllr-settings.php:
|
1193 |
msgid ""
|
1194 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1195 |
"page with a list of all galleries."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
# @ gallery
|
1199 |
-
#: includes/class-gllr-settings.php:
|
1200 |
#, fuzzy
|
1201 |
msgid "Gallery Post Type"
|
1202 |
msgstr "Codigo corto de Galeria"
|
1203 |
|
1204 |
-
#: includes/class-gllr-settings.php:
|
1205 |
msgid ""
|
1206 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1207 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1210,28 +1267,24 @@ msgid ""
|
|
1210 |
msgstr ""
|
1211 |
|
1212 |
# @ gallery
|
1213 |
-
#: includes/class-gllr-settings.php:
|
1214 |
#, fuzzy
|
1215 |
msgid "Gallery Slug"
|
1216 |
msgstr "Galeria"
|
1217 |
|
1218 |
-
#: includes/class-gllr-settings.php:
|
1219 |
msgid "Enter the unique gallery slug."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/class-gllr-settings.php:
|
1223 |
msgid "Activate Now"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/class-gllr-settings.php:
|
1227 |
-
msgid "Install Now"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: includes/class-gllr-settings.php:965
|
1231 |
msgid "Enable to include galleries to your website search."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/class-gllr-settings.php:
|
1235 |
#, php-format
|
1236 |
msgid "%s is required."
|
1237 |
msgstr ""
|
@@ -1539,9 +1592,6 @@ msgstr ""
|
|
1539 |
#~ msgid "(Full URL to custom page)"
|
1540 |
#~ msgstr "(URL completa para a página personalizada)"
|
1541 |
|
1542 |
-
#~ msgid "Add gallery to the search"
|
1543 |
-
#~ msgstr "Agregar la galeria a la busqueda"
|
1544 |
-
|
1545 |
#~ msgid "Using"
|
1546 |
#~ msgstr "Usando"
|
1547 |
|
@@ -1621,11 +1671,6 @@ msgstr ""
|
|
1621 |
#~ msgid "Select a background color"
|
1622 |
#~ msgstr "Selecionar un color de fondo"
|
1623 |
|
1624 |
-
# @ gallery
|
1625 |
-
#, fuzzy
|
1626 |
-
#~ msgid "Sort galleries by"
|
1627 |
-
#~ msgstr "Ordenar imagens por"
|
1628 |
-
|
1629 |
# @ gallery
|
1630 |
#~ msgid "Width (in px)"
|
1631 |
#~ msgstr "Ancho (em px)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:52+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Carlos Limia <climia@climia.es>\n"
|
9 |
"Language: es_ES\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 2.0.6\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ gallery
|
22 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Configuracion de la Galeria"
|
25 |
|
26 |
# @ gallery
|
27 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
28 |
#, fuzzy
|
29 |
msgid "Global Settings"
|
30 |
msgstr "Configuracion de la Galeria"
|
31 |
|
32 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
33 |
#, fuzzy
|
34 |
msgid "Upgrade to Pro"
|
35 |
msgstr "Actualizar a Pro"
|
36 |
|
37 |
+
#: gallery-plugin.php:340
|
38 |
msgid "Return to all albums"
|
39 |
msgstr ""
|
40 |
|
41 |
# @ gallery
|
42 |
+
#: gallery-plugin.php:354
|
43 |
msgid "See images »"
|
44 |
msgstr "Ver imagens »"
|
45 |
|
46 |
# @ gallery
|
47 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
48 |
msgid "Galleries"
|
49 |
msgstr "Galerias"
|
50 |
|
51 |
# @ gallery
|
52 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
53 |
msgid "Gallery"
|
54 |
msgstr "Galeria"
|
55 |
|
56 |
# @ gallery
|
57 |
+
#: gallery-plugin.php:444
|
58 |
msgid "Add New Gallery"
|
59 |
msgstr "Agregar una Galeria nueva"
|
60 |
|
61 |
# @ gallery
|
62 |
+
#: gallery-plugin.php:445
|
63 |
msgid "Edit Gallery"
|
64 |
msgstr "Editar Galeria"
|
65 |
|
66 |
# @ gallery
|
67 |
+
#: gallery-plugin.php:446
|
68 |
msgid "New Gallery"
|
69 |
msgstr "Galeria nueva"
|
70 |
|
71 |
# @ gallery
|
72 |
+
#: gallery-plugin.php:447
|
73 |
msgid "View Gallery"
|
74 |
msgstr "Ver Galeria"
|
75 |
|
76 |
# @ gallery
|
77 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
78 |
#, fuzzy
|
79 |
msgid "Search Galleries"
|
80 |
msgstr "Galerias"
|
81 |
|
82 |
# @ gallery
|
83 |
+
#: gallery-plugin.php:449
|
84 |
msgid "No Gallery found"
|
85 |
msgstr "Ninguna galeria encontrada"
|
86 |
|
87 |
# @ gallery
|
88 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
89 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
90 |
+
#: gallery-plugin.php:3332
|
91 |
#, fuzzy
|
92 |
msgid "Gallery Categories"
|
93 |
msgstr "Tamanño de da imagen de la galeria"
|
94 |
|
95 |
# @ gallery
|
96 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
97 |
#, fuzzy
|
98 |
msgid "Gallery Category"
|
99 |
msgstr "Tamanño de da imagen de la galeria"
|
100 |
|
101 |
+
#: gallery-plugin.php:473
|
102 |
msgid "Add Gallery Category"
|
103 |
msgstr ""
|
104 |
|
105 |
# @ gallery
|
106 |
+
#: gallery-plugin.php:474
|
107 |
#, fuzzy
|
108 |
msgid "Add New Gallery Category"
|
109 |
msgstr "Agregar una Galeria nueva"
|
110 |
|
111 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
112 |
msgid "Edit Gallery Category"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: gallery-plugin.php:477
|
116 |
msgid "New Gallery Category"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
120 |
msgid "View Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: gallery-plugin.php:480
|
124 |
msgid "Find Gallery Category"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: gallery-plugin.php:481
|
128 |
msgid "No Gallery Categories found"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: gallery-plugin.php:482
|
132 |
msgid "No Gallery Categories found in Trash"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: gallery-plugin.php:483
|
136 |
msgid "Parent Gallery Category"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: gallery-plugin.php:484
|
140 |
msgid "Gallery Categories list navigation"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: gallery-plugin.php:485
|
144 |
msgid "Gallery Categories list"
|
145 |
msgstr ""
|
146 |
|
147 |
# @ gallery
|
148 |
+
#: gallery-plugin.php:533
|
149 |
msgid "Gallery Shortcode"
|
150 |
msgstr "Codigo corto de Galeria"
|
151 |
|
152 |
+
#: gallery-plugin.php:542
|
153 |
msgid ""
|
154 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
155 |
"widgets by using the following shortcode:"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: gallery-plugin.php:546
|
159 |
msgid ""
|
160 |
"Add a gallery cover including featured image, description, and a link to "
|
161 |
"your single gallery using the following shortcode:"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: gallery-plugin.php:659
|
165 |
#, fuzzy
|
166 |
msgid "Note"
|
167 |
msgstr "Nota"
|
168 |
|
169 |
+
#: gallery-plugin.php:659
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"When deleting a category, the galleries that belong to this category will "
|
174 |
msgstr ""
|
175 |
|
176 |
# @ gallery
|
177 |
+
#: gallery-plugin.php:670
|
178 |
+
#, fuzzy
|
179 |
+
msgid "Sort Galleries in Category by"
|
180 |
+
msgstr "Ordenar imagens por"
|
181 |
+
|
182 |
+
# @ gallery
|
183 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
184 |
+
#: includes/class-gllr-settings.php:711
|
185 |
+
#, fuzzy
|
186 |
+
msgid "Gallery ID"
|
187 |
+
msgstr "Galeria"
|
188 |
+
|
189 |
+
# @ gallery
|
190 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
191 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
192 |
+
#: includes/class-gllr-settings.php:712
|
193 |
+
msgid "Title"
|
194 |
+
msgstr "Título"
|
195 |
+
|
196 |
+
# @ gallery
|
197 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
198 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
199 |
+
msgid "Date"
|
200 |
+
msgstr "Fecha"
|
201 |
+
|
202 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
203 |
+
#: includes/class-gllr-settings.php:714
|
204 |
+
msgid "Last modified date"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
208 |
+
#: includes/class-gllr-settings.php:715
|
209 |
+
msgid "Comment count"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
213 |
+
#: includes/class-gllr-settings.php:716
|
214 |
+
msgid "\"Order\" field on the gallery edit page"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
# @ gallery
|
218 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
219 |
+
#: includes/class-gllr-settings.php:717
|
220 |
+
msgid "Author"
|
221 |
+
msgstr "Autor"
|
222 |
+
|
223 |
+
# @ gallery
|
224 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
225 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
226 |
+
msgid "Random"
|
227 |
+
msgstr "Aleatório"
|
228 |
+
|
229 |
+
# @ bestwebsoft
|
230 |
+
# @ gallery
|
231 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
232 |
+
#, fuzzy
|
233 |
+
#| msgid "Settings"
|
234 |
+
msgid "Plugin Settings"
|
235 |
+
msgstr "Configuraciones"
|
236 |
+
|
237 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
238 |
+
msgid "Select galleries sorting order in your category."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
# @ gallery
|
242 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
243 |
#, fuzzy
|
244 |
msgid "Shortcode"
|
245 |
msgstr "Codigo corto de Galeria"
|
246 |
|
247 |
+
#: gallery-plugin.php:749
|
248 |
msgid "All Gallery Categories"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:827
|
252 |
msgid "You can't delete default gallery category."
|
253 |
msgstr ""
|
254 |
|
255 |
# @ gallery
|
256 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
257 |
msgid "Sorry, nothing found."
|
258 |
msgstr "Disculpe, nada fue encontrado."
|
259 |
|
260 |
+
#: gallery-plugin.php:1717
|
261 |
#, fuzzy
|
262 |
msgid "Featured Image"
|
263 |
msgstr "Foto principal"
|
264 |
|
265 |
# @ gallery
|
266 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
#, fuzzy
|
268 |
msgid "Images"
|
269 |
msgstr "Ver imagens »"
|
270 |
|
271 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
#, php-format
|
273 |
msgid "%s Settings"
|
274 |
msgstr ""
|
275 |
|
276 |
# @ bestwebsoft
|
277 |
# @ gallery
|
278 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
279 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
280 |
msgid "Settings"
|
281 |
msgstr "Configuraciones"
|
282 |
|
283 |
# @ gallery
|
284 |
+
#: gallery-plugin.php:1838
|
285 |
msgid "FAQ"
|
286 |
msgstr "FAQ"
|
287 |
|
288 |
# @ gallery
|
289 |
+
#: gallery-plugin.php:1839
|
290 |
msgid "Support"
|
291 |
msgstr "Soporte"
|
292 |
|
293 |
+
#: gallery-plugin.php:1878
|
294 |
msgid "Updating images..."
|
295 |
msgstr "Actualizando imagenes"
|
296 |
|
297 |
# @ gallery
|
298 |
+
#: gallery-plugin.php:1879
|
299 |
#, fuzzy
|
300 |
msgid "No images found."
|
301 |
msgstr "Imagen no encontrada"
|
302 |
|
303 |
+
#: gallery-plugin.php:1880
|
304 |
#, fuzzy
|
305 |
msgid "All images were updated."
|
306 |
msgstr "Todas las imgenes an sido actualizados"
|
307 |
|
308 |
+
#: gallery-plugin.php:1881
|
309 |
msgid "Error."
|
310 |
msgstr "Error"
|
311 |
|
312 |
+
#: gallery-plugin.php:1893
|
313 |
msgid ""
|
314 |
"You are about to remove these items from this gallery.\n"
|
315 |
" 'Cancel' to stop, 'OK' to delete."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: gallery-plugin.php:1894
|
319 |
msgid ""
|
320 |
"You are about to remove this image from the gallery.\n"
|
321 |
" 'Cancel' to stop, 'OK' to delete."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: gallery-plugin.php:1895
|
325 |
msgid ""
|
326 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
327 |
"switching?"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: gallery-plugin.php:1896
|
331 |
msgid "Insert Media"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: gallery-plugin.php:1897
|
335 |
msgid "Insert"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: gallery-plugin.php:1898
|
339 |
+
msgid "Gallery has been successfully added!"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
# @ gallery
|
343 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
344 |
msgid "Image size not defined"
|
345 |
msgstr "Tanaño de imagen no definida"
|
346 |
|
347 |
+
#: gallery-plugin.php:2455
|
348 |
#, fuzzy
|
349 |
msgid ""
|
350 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
353 |
"Solo podemos actualizar archivos PNG, JPEG, GIF, WPMP o XBM. Para otros "
|
354 |
"formatos necesita volver a subir elarchivo."
|
355 |
|
356 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
357 |
msgid "Invalid path"
|
358 |
msgstr "Ruta incorrecta."
|
359 |
|
360 |
+
#: gallery-plugin.php:2607
|
361 |
msgid "List View"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: gallery-plugin.php:2608
|
365 |
msgid "Grid View"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: gallery-plugin.php:2665
|
369 |
#, fuzzy
|
370 |
msgid "Filter"
|
371 |
msgstr "Filtro"
|
372 |
|
373 |
+
#: gallery-plugin.php:2669
|
374 |
msgid "Empty Trash"
|
375 |
msgstr ""
|
376 |
|
377 |
# @ gallery
|
378 |
+
#: gallery-plugin.php:2692
|
379 |
#, fuzzy
|
380 |
msgid "No images found"
|
381 |
msgstr "Imagen no encontrada"
|
382 |
|
383 |
+
#: gallery-plugin.php:2745
|
384 |
msgid "Select bulk action"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: gallery-plugin.php:2747
|
388 |
msgid "Bulk Actions"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: gallery-plugin.php:2757
|
392 |
#, fuzzy
|
393 |
msgid "Apply"
|
394 |
msgstr "Aplicar la configuración de red"
|
395 |
|
396 |
# @ gallery
|
397 |
+
#: gallery-plugin.php:2764
|
398 |
#, fuzzy
|
399 |
msgid "Delete from Gallery"
|
400 |
msgstr "Galeria nueva"
|
401 |
|
402 |
+
#: gallery-plugin.php:2773
|
403 |
msgid "Bulk Select"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: gallery-plugin.php:2774
|
407 |
msgid "Cancel Selection"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: gallery-plugin.php:2775
|
411 |
msgid "Delete Selected"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: gallery-plugin.php:2786
|
415 |
#, fuzzy
|
416 |
msgid "File"
|
417 |
msgstr "archivo"
|
418 |
|
419 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
420 |
msgid "Dimensions"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
424 |
#, fuzzy
|
425 |
msgid "Alt Text"
|
426 |
msgstr "Etiqueta alternativa"
|
427 |
|
428 |
# @ gallery
|
429 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
430 |
msgid "URL"
|
431 |
msgstr "URL"
|
432 |
|
433 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
434 |
msgid ""
|
435 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
436 |
"to open a full size image."
|
437 |
msgstr ""
|
438 |
|
439 |
# @ gallery
|
440 |
+
#: gallery-plugin.php:2872
|
441 |
#, fuzzy
|
442 |
msgid "Remove Image from Gallery"
|
443 |
msgstr "Galeria nueva"
|
444 |
|
445 |
# @ gallery
|
446 |
+
#: gallery-plugin.php:2875
|
447 |
#, fuzzy
|
448 |
msgid "Edit Image Info"
|
449 |
msgstr "ID del anexo"
|
450 |
|
451 |
+
#: gallery-plugin.php:2876
|
452 |
msgid "Deselect"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:2888
|
456 |
msgid "File name"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:2889
|
460 |
msgid "File type"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: gallery-plugin.php:2914
|
464 |
#, fuzzy
|
465 |
msgid "Description"
|
466 |
msgstr "Slide Description"
|
467 |
|
468 |
# @ gallery
|
469 |
+
#: gallery-plugin.php:2920
|
470 |
#, fuzzy
|
471 |
msgid "Lightbox Button URL"
|
472 |
msgstr "Fundo del Lightbox"
|
473 |
|
474 |
+
#: gallery-plugin.php:2927
|
475 |
msgid "New Tab"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:2929
|
479 |
msgid "Enable to open URLs above in a new tab."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:2934
|
483 |
#, fuzzy
|
484 |
msgid "Go Pro"
|
485 |
msgstr "Ir Pro"
|
486 |
|
487 |
+
#: gallery-plugin.php:2940
|
488 |
msgid "Edit more details"
|
489 |
msgstr ""
|
490 |
|
491 |
# @ gallery
|
492 |
+
#: gallery-plugin.php:2942
|
493 |
#, fuzzy
|
494 |
msgid "Remove from Gallery"
|
495 |
msgstr "Galeria nueva"
|
496 |
|
497 |
+
#: gallery-plugin.php:2978
|
498 |
#, php-format
|
499 |
msgid "Select %s"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:2991
|
503 |
#, php-format
|
504 |
msgid "Edit “%s”"
|
505 |
msgstr ""
|
506 |
|
507 |
# @ gallery
|
508 |
+
#: gallery-plugin.php:2999
|
509 |
#, fuzzy
|
510 |
msgid "Edit Attachment Info"
|
511 |
msgstr "ID del anexo"
|
512 |
|
513 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
514 |
#, fuzzy
|
515 |
msgid "Edit"
|
516 |
msgstr "Editar"
|
517 |
|
518 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
519 |
msgid "Trash"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
523 |
msgid "Delete Permanently"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
527 |
#, php-format
|
528 |
msgid "View “%s”"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
532 |
#, fuzzy
|
533 |
msgid "View"
|
534 |
msgstr "Ver tipos de vehículos"
|
535 |
|
536 |
# @ gallery
|
537 |
+
#: gallery-plugin.php:3048
|
538 |
#, fuzzy
|
539 |
msgid "Attach"
|
540 |
msgstr "ID del anexo"
|
541 |
|
542 |
+
#: gallery-plugin.php:3056
|
543 |
msgid "Restore"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: gallery-plugin.php:3086
|
547 |
msgid "A list or dropdown of Gallery categories."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: gallery-plugin.php:3131
|
551 |
msgid "Select Gallery Category"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: gallery-plugin.php:3189
|
555 |
#, fuzzy
|
556 |
msgid "Title:"
|
557 |
msgstr "Título:"
|
558 |
|
559 |
+
#: gallery-plugin.php:3192
|
560 |
msgid "Display as dropdown"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: gallery-plugin.php:3194
|
564 |
msgid "Show gallery counts"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: gallery-plugin.php:3196
|
568 |
msgid "Show hierarchy"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: gallery-plugin.php:3312
|
572 |
#, fuzzy
|
573 |
msgid "Warning"
|
574 |
msgstr "Atención"
|
575 |
|
576 |
+
#: gallery-plugin.php:3312
|
577 |
msgid "You can add only images to the gallery"
|
578 |
msgstr ""
|
579 |
|
|
|
|
|
|
|
|
|
580 |
# @ gallery
|
581 |
+
#: gallery-plugin.php:3367
|
582 |
#, fuzzy
|
583 |
msgid "no title"
|
584 |
msgstr "título"
|
585 |
|
586 |
# @ gallery
|
587 |
+
#: gallery-plugin.php:3377
|
588 |
#, fuzzy
|
589 |
msgid ""
|
590 |
"Display an album image with the description and the link to a single gallery "
|
594 |
"una pagina."
|
595 |
|
596 |
# @ gallery
|
597 |
+
#: gallery-plugin.php:3381
|
598 |
#, fuzzy
|
599 |
msgid "Sorry, no gallery found."
|
600 |
msgstr "Disculpe, nada fue encontrado."
|
631 |
msgid "License Key"
|
632 |
msgstr "Licencia"
|
633 |
|
|
|
|
|
|
|
|
|
634 |
# @ gallery
|
635 |
+
#: includes/class-gllr-settings.php:244
|
636 |
#, fuzzy
|
637 |
msgid "Settings saved"
|
638 |
msgstr "Ajustes guardados"
|
639 |
|
640 |
# @ gallery
|
641 |
+
#: includes/class-gllr-settings.php:256
|
642 |
#, fuzzy
|
643 |
msgid "Please, enable JavaScript in Your browser."
|
644 |
msgstr "Por favor habilite el Javascript para subir sus archivos."
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:260
|
647 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/class-gllr-settings.php:261
|
651 |
#, fuzzy
|
652 |
msgid "Update Images"
|
653 |
msgstr "Actualizando imagenes"
|
654 |
|
655 |
# @ gallery
|
656 |
+
#: includes/class-gllr-settings.php:276
|
657 |
#, fuzzy
|
658 |
msgid "Gallery Images"
|
659 |
msgstr "Tamanño de da imagen de la galeria"
|
660 |
|
661 |
+
#: includes/class-gllr-settings.php:281
|
662 |
msgid "Images adding requires JavaScript."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/class-gllr-settings.php:284
|
666 |
msgid "Add Media"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/class-gllr-settings.php:293
|
670 |
msgid "The grid view for the Gallery images requires JavaScript."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: includes/class-gllr-settings.php:293
|
674 |
msgid "Switch to the list view"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:320
|
678 |
+
#, fuzzy
|
679 |
+
#| msgid "Add gallery to the search"
|
680 |
+
msgid "Add Gallery to the Slider"
|
681 |
+
msgstr "Agregar la galeria a la busqueda"
|
682 |
+
|
683 |
+
#: includes/class-gllr-settings.php:332
|
684 |
+
msgid "Activate"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
688 |
+
msgid "Install Now"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/class-gllr-settings.php:337
|
692 |
+
msgid "Add"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/class-gllr-settings.php:340
|
696 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
# @ gallery
|
700 |
+
#: includes/class-gllr-settings.php:351
|
701 |
#, fuzzy
|
702 |
msgid "Single Gallery Settings"
|
703 |
msgstr "Configuracion de la Galeria"
|
704 |
|
705 |
+
#: includes/class-gllr-settings.php:353
|
706 |
#, php-format
|
707 |
msgid "Enable to configure single gallery settings and disable %s."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
711 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
712 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
713 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
714 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
715 |
#, fuzzy
|
716 |
msgid "Close"
|
717 |
msgstr "Descartar"
|
718 |
|
719 |
# @ gallery
|
720 |
+
#: includes/class-gllr-settings.php:369
|
721 |
#, fuzzy
|
722 |
msgid "Gallery Layout"
|
723 |
msgstr "Ninguna galeria encontrada"
|
724 |
|
725 |
+
#: includes/class-gllr-settings.php:374
|
726 |
msgid "Grid"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-gllr-settings.php:380
|
730 |
msgid "Masonry"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: includes/class-gllr-settings.php:393
|
734 |
msgid "Number of Columns"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: includes/class-gllr-settings.php:396
|
738 |
#, php-format
|
739 |
msgid "Number of gallery columns (default is %s)."
|
740 |
msgstr ""
|
741 |
|
742 |
# @ gallery
|
743 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
744 |
#, fuzzy
|
745 |
msgid "Image Size"
|
746 |
msgstr "Tamaño de la imagen"
|
747 |
|
748 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
749 |
#, fuzzy
|
750 |
msgid "Custom"
|
751 |
msgstr "Personalizado"
|
752 |
|
753 |
+
#: includes/class-gllr-settings.php:408
|
754 |
msgid ""
|
755 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
756 |
msgstr ""
|
757 |
|
758 |
# @ gallery
|
759 |
+
#: includes/class-gllr-settings.php:412
|
760 |
#, fuzzy
|
761 |
msgid "Custom Image Size"
|
762 |
msgstr "Tamaño de la imagen"
|
763 |
|
764 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
765 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
766 |
msgid "px"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/class-gllr-settings.php:415
|
770 |
msgid ""
|
771 |
"Adjust these values based on the number of columns in your gallery. This "
|
772 |
"won't effect the full size of your images in the lightbox."
|
773 |
msgstr ""
|
774 |
|
775 |
# @ gallery
|
776 |
+
#: includes/class-gllr-settings.php:426
|
777 |
#, fuzzy
|
778 |
msgid "Crop Images"
|
779 |
msgstr "Ordenar imagenes:"
|
780 |
|
781 |
+
#: includes/class-gllr-settings.php:428
|
782 |
msgid ""
|
783 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
784 |
"to resize images automatically using their aspect ratio."
|
785 |
msgstr ""
|
786 |
|
787 |
# @ gallery
|
788 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
789 |
#, fuzzy
|
790 |
msgid "Crop Position"
|
791 |
msgstr "Recortar posicion"
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
794 |
msgid "Select crop position base (by default: center)."
|
795 |
msgstr ""
|
796 |
|
797 |
# @ gallery
|
798 |
+
#: includes/class-gllr-settings.php:457
|
799 |
#, fuzzy
|
800 |
msgid "Image Title"
|
801 |
msgstr "Tamaño de la imagen"
|
802 |
|
803 |
+
#: includes/class-gllr-settings.php:459
|
804 |
msgid "Enable to display image title along with the gallery image."
|
805 |
msgstr ""
|
806 |
|
807 |
# @ gallery
|
808 |
+
#: includes/class-gllr-settings.php:470
|
809 |
#, fuzzy
|
810 |
msgid "Image Title Position"
|
811 |
msgstr "Tanaño de imagen no definida"
|
812 |
|
813 |
# @ gallery
|
814 |
+
#: includes/class-gllr-settings.php:475
|
815 |
#, fuzzy
|
816 |
msgid "Under image"
|
817 |
msgstr "Actualizar imagenes"
|
818 |
|
819 |
+
#: includes/class-gllr-settings.php:481
|
820 |
msgid "On mouse hover"
|
821 |
msgstr ""
|
822 |
|
823 |
# @ gallery
|
824 |
+
#: includes/class-gllr-settings.php:494
|
825 |
#, fuzzy
|
826 |
msgid "Image Border"
|
827 |
msgstr "Imagens con borde"
|
828 |
|
829 |
+
#: includes/class-gllr-settings.php:496
|
830 |
msgid ""
|
831 |
"Enable images border using the styles defined for Image Border Size and "
|
832 |
"Color options."
|
833 |
msgstr ""
|
834 |
|
835 |
# @ gallery
|
836 |
+
#: includes/class-gllr-settings.php:500
|
837 |
#, fuzzy
|
838 |
msgid "Image Border Size"
|
839 |
msgstr "Tamaño de la imagen"
|
840 |
|
841 |
+
#: includes/class-gllr-settings.php:503
|
842 |
#, php-format
|
843 |
msgid "Gallery image border width (default is %s)"
|
844 |
msgstr ""
|
845 |
|
846 |
# @ gallery
|
847 |
+
#: includes/class-gllr-settings.php:507
|
848 |
#, fuzzy
|
849 |
msgid "Image Border Color"
|
850 |
msgstr "Escoja el color del borde"
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:520
|
853 |
msgid "Pagination"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: includes/class-gllr-settings.php:523
|
857 |
msgid ""
|
858 |
"Enable pagination for images to limit number of images displayed on a single "
|
859 |
"gallery page."
|
860 |
msgstr ""
|
861 |
|
862 |
# @ gallery
|
863 |
+
#: includes/class-gllr-settings.php:527
|
864 |
#, fuzzy
|
865 |
msgid "Number of Images"
|
866 |
msgstr "Número de imagenes por fila"
|
867 |
|
868 |
+
#: includes/class-gllr-settings.php:530
|
869 |
#, php-format
|
870 |
msgid "Number of images displayed per page (default is %d)."
|
871 |
msgstr ""
|
872 |
|
873 |
# @ gallery
|
874 |
+
#: includes/class-gllr-settings.php:540
|
875 |
#, fuzzy
|
876 |
msgid "Sort Images by"
|
877 |
msgstr "Ordenar imagens por"
|
878 |
|
879 |
+
#: includes/class-gllr-settings.php:543
|
880 |
msgid "Manually (default)"
|
881 |
msgstr ""
|
882 |
|
883 |
# @ gallery
|
884 |
+
#: includes/class-gllr-settings.php:544
|
885 |
#, fuzzy
|
886 |
msgid "Image ID"
|
887 |
msgstr "Imagen"
|
888 |
|
889 |
+
#: includes/class-gllr-settings.php:545
|
890 |
#, fuzzy
|
891 |
msgid "Name"
|
892 |
msgstr "Nombre"
|
893 |
|
894 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
|
|
895 |
msgid ""
|
896 |
"Select images sorting order in your gallery. By default, you can sort images "
|
897 |
"manually in the images tab."
|
898 |
msgstr ""
|
899 |
|
900 |
# @ gallery
|
901 |
+
#: includes/class-gllr-settings.php:553
|
902 |
#, fuzzy
|
903 |
msgid "Arrange Images by"
|
904 |
msgstr "Ordenar imagens por"
|
905 |
|
906 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
907 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
911 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
912 |
msgstr ""
|
913 |
|
914 |
# @ gallery
|
915 |
+
#: includes/class-gllr-settings.php:562
|
916 |
#, fuzzy
|
917 |
msgid "Back Link"
|
918 |
msgstr "URL del enlacw Volver"
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:564
|
921 |
msgid ""
|
922 |
"Enable to show a back link in a single gallery page which navigate to a "
|
923 |
"previous page."
|
924 |
msgstr ""
|
925 |
|
926 |
# @ gallery
|
927 |
+
#: includes/class-gllr-settings.php:568
|
928 |
#, fuzzy
|
929 |
msgid "Back Link URL"
|
930 |
msgstr "URL del enlacw Volver"
|
931 |
|
932 |
+
#: includes/class-gllr-settings.php:571
|
933 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
934 |
msgstr ""
|
935 |
|
936 |
# @ gallery
|
937 |
+
#: includes/class-gllr-settings.php:575
|
938 |
#, fuzzy
|
939 |
msgid "Back Link Label"
|
940 |
msgstr "URL del enlacw Volver"
|
941 |
|
942 |
# @ gallery
|
943 |
+
#: includes/class-gllr-settings.php:581
|
944 |
#, fuzzy
|
945 |
msgid "Back Link with Shortcode"
|
946 |
msgstr "Mostrar enlace Volver codigo corto"
|
947 |
|
948 |
# @ gallery
|
949 |
+
#: includes/class-gllr-settings.php:584
|
950 |
#, fuzzy
|
951 |
msgid "Enable to display a back link on a page where shortcode is used."
|
952 |
msgstr "Mostrar enlace Volver codigo corto"
|
953 |
|
954 |
# @ gallery
|
955 |
+
#: includes/class-gllr-settings.php:595
|
956 |
#, fuzzy
|
957 |
msgid "Cover Settings"
|
958 |
msgstr "Configuracion de la Galeria"
|
959 |
|
960 |
# @ gallery
|
961 |
+
#: includes/class-gllr-settings.php:600
|
962 |
#, fuzzy
|
963 |
msgid "Galleries Page"
|
964 |
msgstr "Galerias"
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:608
|
967 |
#, fuzzy
|
968 |
msgid "Base page where all existing galleries will be displayed."
|
969 |
msgstr "Si actualiza a PRO sus configuraciones se guardaran"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:612
|
972 |
msgid "Albums Displaying"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/class-gllr-settings.php:615
|
976 |
msgid "Column"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/class-gllr-settings.php:616
|
980 |
msgid "Rows"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: includes/class-gllr-settings.php:618
|
984 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: includes/class-gllr-settings.php:622
|
988 |
msgid "Column Alignment"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/class-gllr-settings.php:625
|
992 |
msgid "Left"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: includes/class-gllr-settings.php:626
|
996 |
msgid "Right"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:627
|
1000 |
msgid "Center"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/class-gllr-settings.php:629
|
1004 |
msgid "Select the column alignment."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
# @ gallery
|
1008 |
+
#: includes/class-gllr-settings.php:633
|
1009 |
#, fuzzy
|
1010 |
msgid "Cover Image Size"
|
1011 |
msgstr "Tamaño de la imagen"
|
1012 |
|
1013 |
+
#: includes/class-gllr-settings.php:641
|
1014 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/class-gllr-settings.php:645
|
1018 |
msgid "Custom Cover Image Size"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/class-gllr-settings.php:658
|
1022 |
msgid "Crop Cover Images"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/class-gllr-settings.php:660
|
1026 |
msgid ""
|
1027 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
1028 |
"Disable to resize images automatically using their aspect ratio."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
# @ gallery
|
1032 |
+
#: includes/class-gllr-settings.php:689
|
1033 |
#, fuzzy
|
1034 |
msgid "Cover Image Border"
|
1035 |
msgstr "Imagens con borde"
|
1036 |
|
1037 |
+
#: includes/class-gllr-settings.php:691
|
1038 |
msgid ""
|
1039 |
"Enable cover images border using the styles defined for Image Border Size "
|
1040 |
"and Color."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/class-gllr-settings.php:695
|
1044 |
msgid "Cover Image Border Size"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/class-gllr-settings.php:698
|
1048 |
#, php-format
|
1049 |
msgid "Cover image border width (default is %s)"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
# @ gallery
|
1053 |
+
#: includes/class-gllr-settings.php:702
|
1054 |
#, fuzzy
|
1055 |
msgid "Cover Image Border Color"
|
1056 |
msgstr "Escoja el color del borde"
|
1057 |
|
1058 |
# @ gallery
|
1059 |
+
#: includes/class-gllr-settings.php:708
|
1060 |
#, fuzzy
|
1061 |
msgid "Sort Albums by"
|
1062 |
msgstr "Ordenar imagens por"
|
1063 |
|
1064 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid "Select galleries sorting order in your galleries page."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/class-gllr-settings.php:724
|
1069 |
msgid "Arrange Albums by"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
# @ gallery
|
1073 |
+
#: includes/class-gllr-settings.php:733
|
1074 |
#, fuzzy
|
1075 |
msgid "Read More Link Label"
|
1076 |
msgstr "Texto del enlace leer mas"
|
1077 |
|
1078 |
+
#: includes/class-gllr-settings.php:746
|
1079 |
msgid "Instant Lightbox"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/class-gllr-settings.php:749
|
1083 |
msgid ""
|
1084 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1085 |
"URL instead of going to a single gallery page."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
# @ gallery
|
1089 |
+
#: includes/class-gllr-settings.php:763
|
1090 |
#, fuzzy
|
1091 |
msgid "Lightbox Settings"
|
1092 |
msgstr "Fundo del Lightbox"
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:768
|
1095 |
+
msgid "Unclickable Thumbnail Images"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: includes/class-gllr-settings.php:771
|
1099 |
+
msgid ""
|
1100 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1101 |
+
"URLs. This option also disables Lightbox."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: includes/class-gllr-settings.php:775
|
1105 |
msgid "Enable Lightbox"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/class-gllr-settings.php:778
|
1109 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/class-gllr-settings.php:796
|
1113 |
msgid ""
|
1114 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1115 |
"will display the original, full size image."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/class-gllr-settings.php:800
|
1119 |
msgid "Overlay Color"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:806
|
1123 |
msgid "Overlay Opacity"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:809
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
# @ gallery
|
1134 |
+
#: includes/class-gllr-settings.php:819
|
1135 |
#, fuzzy
|
1136 |
msgid "Slideshow"
|
1137 |
msgstr "Iniciar Apresentacion de diapositivas"
|
1138 |
|
1139 |
+
#: includes/class-gllr-settings.php:821
|
1140 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
# @ gallery
|
1144 |
+
#: includes/class-gllr-settings.php:825
|
1145 |
#, fuzzy
|
1146 |
msgid "Slideshow Duration"
|
1147 |
msgstr "Intervalo entre las diapositivas"
|
1148 |
|
1149 |
+
#: includes/class-gllr-settings.php:827
|
1150 |
msgid "ms"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/class-gllr-settings.php:828
|
1154 |
msgid "Slideshow interval duration between two images."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
# @ gallery
|
1158 |
+
#: includes/class-gllr-settings.php:839
|
1159 |
#, fuzzy
|
1160 |
msgid "Lightbox Helpers"
|
1161 |
msgstr "Fundo del Lightbox"
|
1162 |
|
1163 |
+
#: includes/class-gllr-settings.php:841
|
1164 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
# @ gallery
|
1168 |
+
#: includes/class-gllr-settings.php:845
|
1169 |
#, fuzzy
|
1170 |
msgid "Lightbox Thumbnails"
|
1171 |
msgstr "Tamanño de la imagen para la portada del álbum"
|
1172 |
|
1173 |
+
#: includes/class-gllr-settings.php:847
|
1174 |
msgid "Enable to use a lightbox helper navigation between images."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/class-gllr-settings.php:851
|
1178 |
msgid "Lightbox Thumbnails Position"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/class-gllr-settings.php:854
|
1182 |
msgid "Top"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
# @ gallery
|
1186 |
+
#: includes/class-gllr-settings.php:859
|
1187 |
#, fuzzy
|
1188 |
msgid "Lightbox Button Label"
|
1189 |
msgstr "Fundo del Lightbox"
|
1190 |
|
1191 |
+
#: includes/class-gllr-settings.php:861
|
1192 |
#, fuzzy
|
1193 |
msgid "Read More"
|
1194 |
msgstr "Saber mas."
|
1195 |
|
1196 |
+
#: includes/class-gllr-settings.php:871
|
1197 |
#, fuzzy
|
1198 |
msgid "Download Button"
|
1199 |
msgstr "Descarga Busqueda customizada"
|
1200 |
|
1201 |
+
#: includes/class-gllr-settings.php:873
|
1202 |
msgid "Enable to display download button."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/class-gllr-settings.php:877
|
1206 |
msgid "Single Lightbox"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/class-gllr-settings.php:879
|
1210 |
#, fuzzy
|
1211 |
msgid ""
|
1212 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1213 |
"page."
|
1214 |
msgstr "Usar un LightBox unici para multiples galerias en una pagina."
|
1215 |
|
1216 |
+
#: includes/class-gllr-settings.php:889
|
1217 |
msgid "Social Sharing Buttons Settings"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/class-gllr-settings.php:898
|
1221 |
msgid "Social Buttons"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/class-gllr-settings.php:900
|
1225 |
msgid "Enable social sharing buttons in the lightbox."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/class-gllr-settings.php:904
|
1229 |
msgid "Social Networks"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
# @ gallery
|
1233 |
+
#: includes/class-gllr-settings.php:915
|
1234 |
#, fuzzy
|
1235 |
msgid "Counter"
|
1236 |
msgstr "Intervalo entre las diapositivas"
|
1237 |
|
1238 |
+
#: includes/class-gllr-settings.php:918
|
1239 |
msgid ""
|
1240 |
"Enable to show likes counter for each social button (not available for "
|
1241 |
"Google +1)."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/class-gllr-settings.php:933
|
1245 |
#, fuzzy
|
1246 |
msgid "Demo Data"
|
1247 |
msgstr "Datos de ejemplo"
|
1248 |
|
1249 |
+
#: includes/class-gllr-settings.php:935
|
1250 |
msgid ""
|
1251 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1252 |
"page with a list of all galleries."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
# @ gallery
|
1256 |
+
#: includes/class-gllr-settings.php:973
|
1257 |
#, fuzzy
|
1258 |
msgid "Gallery Post Type"
|
1259 |
msgstr "Codigo corto de Galeria"
|
1260 |
|
1261 |
+
#: includes/class-gllr-settings.php:975
|
1262 |
msgid ""
|
1263 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1264 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1267 |
msgstr ""
|
1268 |
|
1269 |
# @ gallery
|
1270 |
+
#: includes/class-gllr-settings.php:987
|
1271 |
#, fuzzy
|
1272 |
msgid "Gallery Slug"
|
1273 |
msgstr "Galeria"
|
1274 |
|
1275 |
+
#: includes/class-gllr-settings.php:991
|
1276 |
msgid "Enter the unique gallery slug."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/class-gllr-settings.php:1007
|
1280 |
msgid "Activate Now"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1284 |
msgid "Enable to include galleries to your website search."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/class-gllr-settings.php:1025
|
1288 |
#, php-format
|
1289 |
msgid "%s is required."
|
1290 |
msgstr ""
|
1592 |
#~ msgid "(Full URL to custom page)"
|
1593 |
#~ msgstr "(URL completa para a página personalizada)"
|
1594 |
|
|
|
|
|
|
|
1595 |
#~ msgid "Using"
|
1596 |
#~ msgstr "Usando"
|
1597 |
|
1671 |
#~ msgid "Select a background color"
|
1672 |
#~ msgstr "Selecionar un color de fondo"
|
1673 |
|
|
|
|
|
|
|
|
|
|
|
1674 |
# @ gallery
|
1675 |
#~ msgid "Width (in px)"
|
1676 |
#~ msgstr "Ancho (em px)"
|
languages/gallery-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-plugin-fr_FR.po
CHANGED
@@ -2,224 +2,280 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery 4.5.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Paramètres de la galerie"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
msgid "Global Settings"
|
26 |
msgstr "Paramètres généraux"
|
27 |
|
28 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
29 |
-
#: bws_menu/class-bws-settings.php:157 bws_menu/class-bws-settings.php:1067
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Passer à la version PRO"
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr "Revenir à tous les albums"
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "See images »"
|
39 |
msgstr "Voir les images »"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galeries"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerie"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Ajouter une nouvelle galerie"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Modifier la galerie"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nouvelle galerie"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Voir la galerie"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Rechercher des galeries"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Pas de galerie trouvées"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Gallery Categories"
|
77 |
msgstr "Catégories des galeries"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Gallery Category"
|
81 |
msgstr "Catégories des galeries"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Add Gallery Category"
|
85 |
msgstr "Ajouter une catégorie à la galerie"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Add New Gallery Category"
|
89 |
msgstr "Ajouter une nouvelle catégorie de galeries"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Edit Gallery Category"
|
93 |
msgstr "Modifier la catégorie de la galerie"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "New Gallery Category"
|
97 |
msgstr "Ajouter une nouvelle catégorie de galeries"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "View Gallery Category"
|
101 |
msgstr "Voir les catégories de galeries"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Find Gallery Category"
|
105 |
msgstr "Trouver une catégorie de galeries"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "No Gallery Categories found"
|
109 |
msgstr "Aucune catégorie de galeries trouvée"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "No Gallery Categories found in Trash"
|
113 |
msgstr "Pas de catégorie des galeries trouvée dans la poubelle"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Parent Gallery Category"
|
117 |
msgstr "Catégorie parente des galeries"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
msgstr "Navigation dans la liste des catégories de galeries"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Gallery Categories list"
|
125 |
msgstr "Liste des catégories des galeries"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Code court de la galerie"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
-
msgid "
|
133 |
-
|
|
|
|
|
|
|
|
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
-
msgid "
|
137 |
-
|
|
|
|
|
|
|
|
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Note"
|
141 |
msgstr "Note"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
#, php-format
|
145 |
-
msgid "
|
146 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Shortcode"
|
150 |
msgstr "Code court"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "All Gallery Categories"
|
154 |
msgstr "Toutes les catégories de galeries"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "You can't delete default gallery category."
|
158 |
msgstr "Vous ne pouvez pas supprimer la catégorie par défaut des galeries."
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Sorry, nothing found."
|
162 |
msgstr "Désolé, rien n’a été trouvé."
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
msgid "Featured Image"
|
166 |
msgstr "Image à la une"
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
170 |
-
msgid "Title"
|
171 |
-
msgstr "Titre"
|
172 |
-
|
173 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
174 |
msgid "Images"
|
175 |
msgstr "Images"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
msgid "Author"
|
179 |
-
msgstr "Auteur"
|
180 |
-
|
181 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
182 |
-
#: includes/class-gllr-settings.php:680
|
183 |
-
msgid "Date"
|
184 |
-
msgstr "Date"
|
185 |
-
|
186 |
-
#: gallery-plugin.php:1688
|
187 |
#, php-format
|
188 |
msgid "%s Settings"
|
189 |
msgstr "%s paramètres"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: bws_menu/bws_functions.php:211 bws_menu/bws_functions.php:244
|
193 |
-
#: bws_menu/bws_menu.php:564 bws_menu/bws_menu.php:566
|
194 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
195 |
msgid "Settings"
|
196 |
msgstr "Paramètres"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
msgid "FAQ"
|
200 |
msgstr "FAQ"
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "Support"
|
204 |
msgstr "Support"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "Updating images..."
|
208 |
msgstr "Mise à jour des images..."
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "No images found."
|
212 |
msgstr "Pas d’image trouvée."
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "All images were updated."
|
216 |
msgstr "Toutes les images ont été mises à jour."
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Error."
|
220 |
msgstr "Erreur."
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid ""
|
224 |
"You are about to remove these items from this gallery.\n"
|
225 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -227,7 +283,7 @@ msgstr ""
|
|
227 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
228 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid ""
|
232 |
"You are about to remove this image from the gallery.\n"
|
233 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -235,2093 +291,909 @@ msgstr ""
|
|
235 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
236 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
-
msgid "
|
240 |
-
|
|
|
|
|
|
|
|
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Insert Media"
|
244 |
msgstr "Insérer un média"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Insert"
|
248 |
msgstr "Insérer"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Image size not defined"
|
252 |
msgstr "Taille de l’image non définie"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
-
msgid "
|
256 |
-
|
|
|
|
|
|
|
|
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Invalid path"
|
260 |
msgstr "Chemin invalide"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid "List View"
|
264 |
msgstr "Vue en mode liste"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Grid View"
|
268 |
msgstr "Vue en mode grille"
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Filter"
|
272 |
msgstr "Filtrer"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Empty Trash"
|
276 |
msgstr "Vider la corbeille"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "No images found"
|
280 |
msgstr "Pas d’image trouvée"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Select bulk action"
|
284 |
msgstr "Sélectionne l’action en masse"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Bulk Actions"
|
288 |
msgstr "Actions en masse"
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Apply"
|
292 |
msgstr "Appliquer"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Delete from Gallery"
|
296 |
msgstr "Supprimer de la galerie"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Bulk Select"
|
300 |
msgstr "Sélection en masse"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "Cancel Selection"
|
304 |
msgstr "Annuler la sélection"
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Delete Selected"
|
308 |
msgstr "Supprimer la sélection"
|
309 |
|
310 |
-
#: gallery-plugin.php:
|
311 |
msgid "File"
|
312 |
msgstr "Fichier"
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Dimensions"
|
316 |
msgstr "Dimensions"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "Alt Text"
|
320 |
msgstr "Alt Texte"
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "URL"
|
324 |
msgstr "URL"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
-
msgid "
|
328 |
-
|
|
|
|
|
|
|
|
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Remove Image from Gallery"
|
332 |
msgstr "Supprimer les images de la galerie"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "Edit Image Info"
|
336 |
msgstr "Modifier les informations de l’image"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Deselect"
|
340 |
msgstr "Désélectionner"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "File name"
|
344 |
msgstr "Nom du fichier"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "File type"
|
348 |
msgstr "Type de fichier"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Description"
|
352 |
msgstr "Description"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Lightbox Button URL"
|
356 |
msgstr "URL du bouton pour Lightbox"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "New Tab"
|
360 |
msgstr "Nouvel onglet"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Enable to open URLs above in a new tab."
|
364 |
msgstr "Activer pour ouvrir l’URL dans un nouvel onglet."
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Go Pro"
|
368 |
msgstr "Passer à la version PRO"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Edit more details"
|
372 |
msgstr "Modifier avec plus de détails"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Remove from Gallery"
|
376 |
msgstr "Supprimer de la galerie"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, php-format
|
380 |
msgid "Select %s"
|
381 |
msgstr "Sélectionner %s"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
#, php-format
|
385 |
msgid "Edit “%s”"
|
386 |
msgstr "Pré-visualiser “%s”"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Edit Attachment Info"
|
390 |
msgstr "Modifier les informations"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Edit"
|
394 |
msgstr "Modifier"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Trash"
|
398 |
msgstr "Poubelle"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "Delete Permanently"
|
402 |
msgstr "Supprimer de manière définitive"
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
#, php-format
|
406 |
msgid "View “%s”"
|
407 |
msgstr "Pré-visualiser “%s”"
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "View"
|
411 |
msgstr "Voir"
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "Attach"
|
415 |
msgstr "Attacher"
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Restore"
|
419 |
msgstr "Remettre"
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "A list or dropdown of Gallery categories."
|
423 |
msgstr "Une liste ou une liste déroulante des catégories de galeries."
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Select Gallery Category"
|
427 |
msgstr "Choisir une catégorie pour la galerie"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "Title:"
|
431 |
msgstr "Titre :"
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "Display as dropdown"
|
435 |
msgstr "Montrer sous la forme d’une liste déroulante"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "Show gallery counts"
|
439 |
msgstr "Monter le nombre de galeries"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "Show hierarchy"
|
443 |
msgstr "Voir la hiérarchie"
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "Warning"
|
447 |
msgstr "Avertissement"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "You can add only images to the gallery"
|
451 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
-
#: bws_menu/bws_menu.php:326 bws_menu/class-bws-settings.php:747
|
455 |
-
#: bws_menu/class-bws-settings.php:1060 bws_menu/class-bws-settings.php:1070
|
456 |
-
#: bws_menu/deprecated.php:697
|
457 |
-
msgid "or"
|
458 |
-
msgstr "ou"
|
459 |
-
|
460 |
-
#: gallery-plugin.php:3181
|
461 |
msgid "no title"
|
462 |
msgstr "Pas de titre"
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
-
msgid "
|
466 |
-
|
|
|
|
|
|
|
|
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Sorry, no gallery found."
|
470 |
msgstr "Désolé, rien n’a été trouvé."
|
471 |
|
472 |
-
#:
|
473 |
-
msgid "
|
474 |
-
msgstr "
|
|
|
|
|
|
|
|
|
475 |
|
476 |
-
#:
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#:
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
#:
|
485 |
-
msgid "
|
486 |
-
msgstr "
|
487 |
|
488 |
-
#:
|
489 |
-
msgid "
|
490 |
-
msgstr "
|
491 |
|
492 |
-
#:
|
493 |
-
|
494 |
-
|
495 |
-
msgstr "%s appréciations"
|
496 |
|
497 |
-
#:
|
498 |
-
msgid "
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#:
|
506 |
-
|
507 |
-
|
508 |
-
|
|
|
509 |
|
510 |
-
#:
|
511 |
-
msgid "
|
512 |
-
msgstr "
|
513 |
|
514 |
-
#:
|
515 |
-
msgid "
|
516 |
-
msgstr "
|
517 |
|
518 |
-
#:
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
|
522 |
-
#:
|
523 |
-
msgid "
|
524 |
-
msgstr "
|
525 |
|
526 |
-
#:
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
|
531 |
-
#:
|
532 |
-
msgid "
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#:
|
536 |
-
|
537 |
-
|
|
|
|
|
538 |
|
539 |
-
#:
|
540 |
-
|
541 |
-
|
542 |
-
msgstr "En savoir plus"
|
543 |
|
544 |
-
#:
|
545 |
-
|
546 |
-
|
547 |
-
msgstr "Avertissement : vous utilisez la version d’évaluation de l’extension %s."
|
548 |
|
549 |
-
#:
|
550 |
-
|
551 |
-
|
|
|
|
|
552 |
|
553 |
-
#:
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
556 |
|
557 |
-
#:
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
|
561 |
-
#:
|
562 |
#, php-format
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
|
|
565 |
|
566 |
-
#:
|
567 |
-
|
568 |
-
|
|
|
|
|
|
|
|
|
569 |
|
570 |
-
#:
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
573 |
|
574 |
-
#:
|
575 |
-
|
576 |
-
|
577 |
-
#: includes/demo-data/class-bws-demo-data.php:587
|
578 |
-
msgid "Close notice"
|
579 |
-
msgstr "Fermer l’avertissement"
|
580 |
|
581 |
-
#:
|
582 |
-
msgid "
|
583 |
-
msgstr "
|
584 |
|
585 |
-
#:
|
586 |
-
msgid "
|
587 |
-
msgstr "
|
588 |
|
589 |
-
#:
|
590 |
-
|
591 |
-
|
|
|
592 |
|
593 |
-
#:
|
594 |
-
msgid "
|
595 |
-
msgstr "
|
596 |
|
597 |
-
#:
|
598 |
-
msgid "
|
599 |
-
msgstr "
|
600 |
|
601 |
-
#:
|
602 |
-
msgid "
|
603 |
-
|
|
|
|
|
|
|
604 |
|
605 |
-
#:
|
606 |
-
msgid "
|
607 |
-
msgstr "
|
608 |
|
609 |
-
#:
|
610 |
-
|
611 |
-
|
|
|
612 |
|
613 |
-
#:
|
614 |
-
msgid "
|
615 |
-
|
|
|
|
|
|
|
|
|
616 |
|
617 |
-
#:
|
618 |
-
|
619 |
-
|
620 |
-
msgstr "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus du support rapide et des mises à jour."
|
621 |
|
622 |
-
#:
|
623 |
-
|
624 |
-
|
625 |
-
|
|
|
|
|
|
|
|
|
626 |
|
627 |
-
#:
|
628 |
-
msgid "
|
629 |
-
msgstr "
|
630 |
|
631 |
-
#:
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
|
|
634 |
|
635 |
-
#:
|
636 |
-
|
637 |
-
|
638 |
-
msgid "Notice"
|
639 |
-
msgstr "Avertissement"
|
640 |
|
641 |
-
#:
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#:
|
646 |
-
|
647 |
-
|
648 |
-
msgstr "Enregistrer les modifications"
|
649 |
|
650 |
-
#:
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
|
654 |
-
#:
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#:
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#:
|
663 |
-
msgid "
|
664 |
-
|
|
|
|
|
|
|
|
|
665 |
|
666 |
-
#:
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
|
670 |
-
#:
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
#: includes/class-gllr-settings.php:795 includes/class-gllr-settings.php:923
|
675 |
-
msgid "Close"
|
676 |
-
msgstr "Fermer"
|
677 |
|
678 |
-
#:
|
679 |
-
msgid "
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#:
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#:
|
687 |
-
msgid "
|
688 |
-
|
|
|
|
|
|
|
|
|
689 |
|
690 |
-
#:
|
691 |
-
msgid "
|
692 |
-
msgstr "
|
693 |
-
|
694 |
-
#:
|
695 |
-
msgid "Shortcode settings"
|
696 |
-
msgstr "Paramètres du code court"
|
697 |
-
|
698 |
-
#: bws_menu/bws_functions.php:881
|
699 |
-
msgid "The shortcode will be inserted"
|
700 |
-
msgstr "Le code court sera inséré"
|
701 |
-
|
702 |
-
#: bws_menu/bws_functions.php:930
|
703 |
-
msgid "For more information:"
|
704 |
-
msgstr "Pour plus d’informations :"
|
705 |
-
|
706 |
-
#: bws_menu/bws_functions.php:931
|
707 |
-
msgid "Documentation"
|
708 |
-
msgstr "Documentation"
|
709 |
-
|
710 |
-
#: bws_menu/bws_functions.php:932
|
711 |
-
msgid "Video Instructions"
|
712 |
-
msgstr "Vidéo explicative"
|
713 |
-
|
714 |
-
#: bws_menu/bws_functions.php:933
|
715 |
-
msgid "Submit a Request"
|
716 |
-
msgstr "Soumettre une requête"
|
717 |
-
|
718 |
-
#: bws_menu/bws_menu.php:101 bws_menu/class-bws-settings.php:792
|
719 |
-
#: bws_menu/deprecated.php:323
|
720 |
-
msgid "Wrong license key"
|
721 |
-
msgstr "Clé de licence incorrecte"
|
722 |
-
|
723 |
-
#: bws_menu/bws_menu.php:122 bws_menu/class-bws-settings.php:818
|
724 |
-
#: bws_menu/class-bws-settings.php:885 bws_menu/class-bws-settings.php:921
|
725 |
-
#: bws_menu/deprecated.php:133 bws_menu/deprecated.php:199
|
726 |
-
#: bws_menu/deprecated.php:353
|
727 |
-
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
728 |
-
msgstr "Il est survenu une erreur. Essayer de nouveau. Si l’erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
729 |
-
|
730 |
-
#: bws_menu/bws_menu.php:122 bws_menu/class-bws-settings.php:818
|
731 |
-
#: bws_menu/class-bws-settings.php:885 bws_menu/class-bws-settings.php:921
|
732 |
-
#: bws_menu/deprecated.php:133 bws_menu/deprecated.php:199
|
733 |
-
#: bws_menu/deprecated.php:353
|
734 |
-
msgid "We are sorry for inconvenience."
|
735 |
-
msgstr "Nous sommes désolés pour le désagrément."
|
736 |
-
|
737 |
-
#: bws_menu/bws_menu.php:128 bws_menu/class-bws-settings.php:824
|
738 |
-
#: bws_menu/class-bws-settings.php:927 bws_menu/deprecated.php:139
|
739 |
-
#: bws_menu/deprecated.php:359
|
740 |
-
msgid "Wrong license key."
|
741 |
-
msgstr "Clé de licence incorrecte."
|
742 |
-
|
743 |
-
#: bws_menu/bws_menu.php:130
|
744 |
-
msgid "This license key is bound to another site. Change it via personal Client Area."
|
745 |
-
msgstr "La clé de licence correspond à un autre site. Modifier là au travers de votre espace client."
|
746 |
-
|
747 |
-
#: bws_menu/bws_menu.php:130
|
748 |
-
msgid "Log in"
|
749 |
-
msgstr "Connexion"
|
750 |
-
|
751 |
-
#: bws_menu/bws_menu.php:132 bws_menu/bws_menu.php:332
|
752 |
-
#: bws_menu/deprecated.php:261
|
753 |
-
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
754 |
-
msgstr "Désoler mais vous avez dépassé le nombre d’essai de la journée. Merci de télécharger l’extension manuellement."
|
755 |
-
|
756 |
-
#: bws_menu/bws_menu.php:134 bws_menu/deprecated.php:365
|
757 |
-
#, php-format
|
758 |
-
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s"
|
759 |
-
msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l’extension vous devez la renouveler dans votre %s"
|
760 |
-
|
761 |
-
#: bws_menu/bws_menu.php:136 bws_menu/class-bws-settings.php:935
|
762 |
-
#: bws_menu/deprecated.php:367
|
763 |
-
msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
|
764 |
-
msgstr "Une licence a déjà été installée sur ce domaine. La licence d’évaluation ne peut-être installée qu’une seule fois."
|
765 |
-
|
766 |
-
#: bws_menu/bws_menu.php:142 bws_menu/class-bws-settings.php:839
|
767 |
-
#: bws_menu/deprecated.php:153
|
768 |
-
msgid "The license key is valid."
|
769 |
-
msgstr "La clé de licence est valide."
|
770 |
-
|
771 |
-
#: bws_menu/bws_menu.php:144 bws_menu/class-bws-settings.php:842
|
772 |
-
#: bws_menu/deprecated.php:156
|
773 |
-
msgid "Your license will expire on"
|
774 |
-
msgstr "Votre licence se termine le "
|
775 |
-
|
776 |
-
#: bws_menu/bws_menu.php:146
|
777 |
-
msgid "Congratulations! Pro Membership license is activated successfully."
|
778 |
-
msgstr "Félicitations ! La version PRO de cette extension a été activée avec succès."
|
779 |
-
|
780 |
-
#: bws_menu/bws_menu.php:153 bws_menu/class-bws-settings.php:1007
|
781 |
-
#: bws_menu/deprecated.php:436
|
782 |
-
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
783 |
-
msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l’extension manuellement.Nous sommes désolés pour le désagrément."
|
784 |
-
|
785 |
-
#: bws_menu/bws_menu.php:163
|
786 |
-
msgid "Please enter your license key."
|
787 |
-
msgstr "Merci de saisir votre clé de licence."
|
788 |
-
|
789 |
-
#: bws_menu/bws_menu.php:174
|
790 |
-
msgid "Not set"
|
791 |
-
msgstr "Not set"
|
792 |
-
|
793 |
-
#: bws_menu/bws_menu.php:176
|
794 |
-
msgid "On"
|
795 |
-
msgstr "On"
|
796 |
-
|
797 |
-
#: bws_menu/bws_menu.php:176
|
798 |
-
msgid "Off"
|
799 |
-
msgstr "Off"
|
800 |
-
|
801 |
-
#: bws_menu/bws_menu.php:177 bws_menu/bws_menu.php:178
|
802 |
-
#: bws_menu/bws_menu.php:179 bws_menu/bws_menu.php:180
|
803 |
-
#: bws_menu/bws_menu.php:181 bws_menu/bws_menu.php:182
|
804 |
-
#: bws_menu/bws_menu.php:191
|
805 |
-
msgid "N/A"
|
806 |
-
msgstr "N/A"
|
807 |
-
|
808 |
-
#: bws_menu/bws_menu.php:182
|
809 |
-
msgid " Mb"
|
810 |
-
msgstr " Mb"
|
811 |
-
|
812 |
-
#: bws_menu/bws_menu.php:183 bws_menu/bws_menu.php:184
|
813 |
-
#: bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:189
|
814 |
-
msgid "Yes"
|
815 |
-
msgstr "Yes"
|
816 |
-
|
817 |
-
#: bws_menu/bws_menu.php:183 bws_menu/bws_menu.php:184
|
818 |
-
#: bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:189
|
819 |
-
msgid "No"
|
820 |
-
msgstr "No"
|
821 |
-
|
822 |
-
#: bws_menu/bws_menu.php:196
|
823 |
-
msgid "WordPress Environment"
|
824 |
-
msgstr "Environnent WordPress"
|
825 |
-
|
826 |
-
#: bws_menu/bws_menu.php:198
|
827 |
-
msgid "Home URL"
|
828 |
-
msgstr "Home URL"
|
829 |
-
|
830 |
-
#: bws_menu/bws_menu.php:199
|
831 |
-
msgid "Website URL"
|
832 |
-
msgstr "Site URL"
|
833 |
-
|
834 |
-
#: bws_menu/bws_menu.php:200
|
835 |
-
msgid "WP Version"
|
836 |
-
msgstr "WP Version"
|
837 |
-
|
838 |
-
#: bws_menu/bws_menu.php:201
|
839 |
-
msgid "WP Multisite"
|
840 |
-
msgstr "WP Multisite"
|
841 |
-
|
842 |
-
#: bws_menu/bws_menu.php:202
|
843 |
-
msgid "WP Memory Limit"
|
844 |
-
msgstr "WP Memory Limit"
|
845 |
-
|
846 |
-
#: bws_menu/bws_menu.php:203
|
847 |
-
msgid "Active Theme"
|
848 |
-
msgstr "Active Theme"
|
849 |
-
|
850 |
-
#: bws_menu/bws_menu.php:203 bws_menu/bws_menu.php:248
|
851 |
-
#: bws_menu/bws_menu.php:251
|
852 |
#, php-format
|
853 |
-
msgid "
|
854 |
-
msgstr "par %
|
855 |
|
856 |
-
#:
|
857 |
-
msgid "
|
858 |
-
msgstr "
|
859 |
|
860 |
-
#:
|
861 |
-
msgid "
|
862 |
-
msgstr "
|
863 |
|
864 |
-
#:
|
865 |
-
msgid "
|
866 |
-
msgstr "
|
867 |
|
868 |
-
#:
|
869 |
-
msgid "
|
870 |
-
msgstr "
|
871 |
|
872 |
-
#:
|
873 |
-
msgid "
|
874 |
-
|
|
|
|
|
|
|
|
|
875 |
|
876 |
-
#:
|
877 |
-
msgid "
|
878 |
-
msgstr "
|
879 |
|
880 |
-
#:
|
881 |
-
msgid "
|
882 |
-
msgstr "
|
883 |
|
884 |
-
#:
|
885 |
-
msgid "
|
886 |
-
msgstr "
|
887 |
|
888 |
-
#:
|
889 |
-
msgid "
|
890 |
-
msgstr "
|
891 |
|
892 |
-
#:
|
893 |
-
msgid "
|
894 |
-
|
|
|
|
|
|
|
|
|
895 |
|
896 |
-
#:
|
897 |
-
msgid "
|
898 |
-
msgstr "
|
899 |
|
900 |
-
#:
|
901 |
-
msgid "
|
902 |
-
msgstr "
|
|
|
|
|
903 |
|
904 |
-
#:
|
905 |
-
msgid "
|
906 |
-
msgstr "
|
907 |
|
908 |
-
#:
|
909 |
-
msgid "
|
910 |
-
msgstr "
|
911 |
|
912 |
-
#:
|
913 |
-
msgid "
|
914 |
-
msgstr "
|
|
|
|
|
915 |
|
916 |
-
#:
|
917 |
-
msgid "
|
918 |
-
msgstr "
|
919 |
|
920 |
-
#:
|
921 |
-
msgid "
|
922 |
-
msgstr "
|
923 |
|
924 |
-
#:
|
925 |
-
msgid "
|
926 |
-
msgstr "
|
927 |
|
928 |
-
#:
|
929 |
-
msgid "
|
930 |
-
msgstr "
|
931 |
|
932 |
-
#:
|
933 |
-
msgid "
|
934 |
-
msgstr "
|
935 |
|
936 |
-
#:
|
937 |
-
|
938 |
-
|
939 |
-
msgstr "Le courriel avec les informations système est envoyé à %s."
|
940 |
|
941 |
-
#:
|
942 |
-
msgid "
|
943 |
-
msgstr "
|
|
|
|
|
944 |
|
945 |
-
#:
|
946 |
-
msgid "
|
947 |
-
msgstr "
|
948 |
|
949 |
-
#:
|
950 |
-
|
951 |
-
|
952 |
-
msgstr "Extensions"
|
953 |
|
954 |
-
#:
|
955 |
-
#: bws_menu/bws_menu.php:618 bws_menu/deprecated.php:92
|
956 |
-
msgid "Themes"
|
957 |
-
msgstr "Thèmes"
|
958 |
-
|
959 |
-
#: bws_menu/bws_menu.php:307 bws_menu/bws_menu.php:311
|
960 |
-
#: bws_menu/bws_menu.php:648
|
961 |
-
msgid "System status"
|
962 |
-
msgstr "Etat du système"
|
963 |
-
|
964 |
-
#: bws_menu/bws_menu.php:316
|
965 |
-
msgid "Manage purchased licenses & subscriptions"
|
966 |
-
msgstr "Gérer les licences et les inscriptions"
|
967 |
-
|
968 |
-
#: bws_menu/bws_menu.php:324
|
969 |
-
#, php-format
|
970 |
-
msgid "Get Access to %s+ Premium Plugins"
|
971 |
-
msgstr "Accéder à plus de %s extensions premiums"
|
972 |
-
|
973 |
-
#: bws_menu/bws_menu.php:326
|
974 |
-
msgid "Subscribe to Pro Membership"
|
975 |
-
msgstr "Souscrire une adhésion PRO"
|
976 |
-
|
977 |
-
#: bws_menu/bws_menu.php:334 bws_menu/bws_menu.php:345
|
978 |
-
#: bws_menu/class-bws-settings.php:760 bws_menu/deprecated.php:227
|
979 |
-
msgid "Check license key"
|
980 |
-
msgstr "Vérifier la clé de licence"
|
981 |
-
|
982 |
-
#: bws_menu/bws_menu.php:337
|
983 |
-
msgid "Enter your license key"
|
984 |
-
msgstr "Merci de saisir votre clé de licence"
|
985 |
-
|
986 |
-
#: bws_menu/bws_menu.php:343 bws_menu/bws_menu.php:570
|
987 |
-
#: bws_menu/bws_menu.php:579 bws_menu/class-bws-settings.php:739
|
988 |
-
#: bws_menu/deprecated.php:259 bws_menu/deprecated.php:267
|
989 |
-
#: bws_menu/deprecated.php:631 bws_menu/deprecated.php:703
|
990 |
-
#: bws_menu/deprecated.php:712
|
991 |
-
msgid "Activate"
|
992 |
-
msgstr "Activé"
|
993 |
-
|
994 |
-
#: bws_menu/bws_menu.php:359
|
995 |
-
msgid "Upload Plugin"
|
996 |
-
msgstr "Charger l’extension"
|
997 |
-
|
998 |
-
#: bws_menu/bws_menu.php:363
|
999 |
-
#, php-format
|
1000 |
-
msgid "The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin."
|
1001 |
-
msgstr "Cette extension a produit %d caractères <strong>inattendus</strong> durant l’activation. Si vous constatez le message “headers already sent”, des problèmes avec les flux de syndication ou autres, essayez de désactiver l’extension ou supprimer l’extension."
|
1002 |
-
|
1003 |
-
#: bws_menu/bws_menu.php:365
|
1004 |
-
msgid "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
|
1005 |
-
msgstr "L’extension ne peut pas être activée car une <strong>erreur fatale</strong> a été détectée."
|
1006 |
-
|
1007 |
-
#: bws_menu/bws_menu.php:368
|
1008 |
-
msgid "Plugin <strong>activated</strong>."
|
1009 |
-
msgstr "Extension <strong>activée</strong>."
|
1010 |
-
|
1011 |
-
#: bws_menu/bws_menu.php:375
|
1012 |
-
msgid "Installing Plugin"
|
1013 |
-
msgstr "Extension installée"
|
1014 |
-
|
1015 |
-
#: bws_menu/bws_menu.php:381
|
1016 |
-
msgid "Downloading install package from"
|
1017 |
-
msgstr "Télécharger le paquet d’installation depuis"
|
1018 |
-
|
1019 |
-
#: bws_menu/bws_menu.php:398 bws_menu/bws_menu.php:429
|
1020 |
-
#: bws_menu/bws_menu.php:440 bws_menu/deprecated.php:388
|
1021 |
-
#: bws_menu/deprecated.php:410 bws_menu/deprecated.php:432
|
1022 |
-
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
1023 |
-
msgstr "Erreur de téléchargement de l’archive ZIP. Merci de télécharger l’extension manuellement."
|
1024 |
-
|
1025 |
-
#: bws_menu/bws_menu.php:406
|
1026 |
-
msgid "Unpacking the package"
|
1027 |
-
msgstr "Décompresser le paquet"
|
1028 |
-
|
1029 |
-
#: bws_menu/bws_menu.php:411 bws_menu/bws_menu.php:419
|
1030 |
-
msgid "Installing the plugin"
|
1031 |
-
msgstr "Installer l’extension"
|
1032 |
-
|
1033 |
-
#: bws_menu/bws_menu.php:415 bws_menu/deprecated.php:400
|
1034 |
-
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
1035 |
-
msgstr "Erreur d’ouverture de l’archive zip. Merci de télécharger l’extension manuellement."
|
1036 |
-
|
1037 |
-
#: bws_menu/bws_menu.php:422 bws_menu/deprecated.php:406
|
1038 |
-
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
1039 |
-
msgstr "Votre serveur n’a pas le support du format des archives ZIP ou Phar. Merci de télécharger l’extension manuellement."
|
1040 |
-
|
1041 |
-
#: bws_menu/bws_menu.php:425
|
1042 |
-
#, php-format
|
1043 |
-
msgid "The plugin %s is successfully installed."
|
1044 |
-
msgstr "L’extension %s a été installée avec succès."
|
1045 |
-
|
1046 |
-
#: bws_menu/bws_menu.php:432 bws_menu/deprecated.php:413
|
1047 |
-
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
1048 |
-
msgstr "Erreur d’ouverture de l’archive zip. Merci de télécharger l’extension manuellement."
|
1049 |
-
|
1050 |
-
#: bws_menu/bws_menu.php:437
|
1051 |
-
msgid "Activate Plugin"
|
1052 |
-
msgstr "Activer l’extension"
|
1053 |
-
|
1054 |
-
#: bws_menu/bws_menu.php:437 bws_menu/bws_menu.php:443
|
1055 |
-
msgid "Return to BestWebSoft Panel"
|
1056 |
-
msgstr "Retourner à l’administration BestWebSoft"
|
1057 |
-
|
1058 |
-
#: bws_menu/bws_menu.php:451 bws_menu/bws_menu.php:471
|
1059 |
-
#: bws_menu/bws_menu.php:600
|
1060 |
-
msgid "All"
|
1061 |
-
msgstr "Tous"
|
1062 |
-
|
1063 |
-
#: bws_menu/bws_menu.php:454 bws_menu/bws_menu.php:637
|
1064 |
-
msgid "Installed"
|
1065 |
-
msgstr "Installé"
|
1066 |
-
|
1067 |
-
#: bws_menu/bws_menu.php:457
|
1068 |
-
msgid "Not Installed"
|
1069 |
-
msgstr "Non installé"
|
1070 |
-
|
1071 |
-
#: bws_menu/bws_menu.php:464
|
1072 |
-
msgid "Filter results"
|
1073 |
-
msgstr "Filtrer les résultats"
|
1074 |
-
|
1075 |
-
#: bws_menu/bws_menu.php:467 bws_menu/bws_menu.php:596
|
1076 |
-
msgid "Category"
|
1077 |
-
msgstr "Catégorie"
|
1078 |
-
|
1079 |
-
#: bws_menu/bws_menu.php:531
|
1080 |
-
msgid "Not installed"
|
1081 |
-
msgstr "Non installé"
|
1082 |
-
|
1083 |
-
#: bws_menu/bws_menu.php:535
|
1084 |
-
msgid "Renew to get updates"
|
1085 |
-
msgstr "Se réabonner pour avoir les mises à jour"
|
1086 |
-
|
1087 |
-
#: bws_menu/bws_menu.php:538
|
1088 |
-
#, php-format
|
1089 |
-
msgid "Update to v %s"
|
1090 |
-
msgstr "Mettre à jour avec la version %s"
|
1091 |
-
|
1092 |
-
#: bws_menu/bws_menu.php:550 bws_menu/bws_menu.php:573
|
1093 |
-
#: bws_menu/bws_menu.php:582 includes/class-gllr-settings.php:962
|
1094 |
-
msgid "Install Now"
|
1095 |
-
msgstr "Installer maintenant"
|
1096 |
-
|
1097 |
-
#: bws_menu/bws_menu.php:570 bws_menu/bws_menu.php:579
|
1098 |
-
msgid "Activate this plugin"
|
1099 |
-
msgstr "Activer cette extension"
|
1100 |
-
|
1101 |
-
#: bws_menu/bws_menu.php:582
|
1102 |
-
msgid "Install this plugin"
|
1103 |
-
msgstr "Installer cette extension"
|
1104 |
-
|
1105 |
-
#: bws_menu/bws_menu.php:591
|
1106 |
-
msgid "Nothing found. Try another criteria."
|
1107 |
-
msgstr "Pas de réponse. Essayer d’autres critères."
|
1108 |
-
|
1109 |
-
#: bws_menu/bws_menu.php:628
|
1110 |
-
#, php-format
|
1111 |
-
msgid "By %s"
|
1112 |
-
msgstr "Par %s"
|
1113 |
-
|
1114 |
-
#: bws_menu/bws_menu.php:635
|
1115 |
-
msgid "Already Installed"
|
1116 |
-
msgstr "Déjà installé"
|
1117 |
-
|
1118 |
-
#: bws_menu/bws_menu.php:645
|
1119 |
-
msgid "Browse More WordPress Themes"
|
1120 |
-
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
1121 |
-
|
1122 |
-
#: bws_menu/bws_menu.php:654
|
1123 |
-
msgid "Send to support"
|
1124 |
-
msgstr "Envoyé au support"
|
1125 |
-
|
1126 |
-
#: bws_menu/bws_menu.php:661
|
1127 |
-
msgid "Send to custom email »"
|
1128 |
-
msgstr "Envoyer un e-mail spécifique »"
|
1129 |
-
|
1130 |
-
#: bws_menu/class-bws-settings.php:136
|
1131 |
-
msgid "Information"
|
1132 |
-
msgstr "Information"
|
1133 |
-
|
1134 |
-
#: bws_menu/class-bws-settings.php:144
|
1135 |
-
msgid "Inactive"
|
1136 |
-
msgstr "Inactive"
|
1137 |
-
|
1138 |
-
#: bws_menu/class-bws-settings.php:152
|
1139 |
-
msgid "Expired"
|
1140 |
-
msgstr "Expiré"
|
1141 |
-
|
1142 |
-
#: bws_menu/class-bws-settings.php:155
|
1143 |
-
#, php-format
|
1144 |
-
msgid "%s day(-s) left"
|
1145 |
-
msgstr "%s jour(s) restant"
|
1146 |
-
|
1147 |
-
#: bws_menu/class-bws-settings.php:161
|
1148 |
-
#, php-format
|
1149 |
-
msgid "Expired on %s"
|
1150 |
-
msgstr "Terminer le %s"
|
1151 |
-
|
1152 |
-
#: bws_menu/class-bws-settings.php:161
|
1153 |
-
msgid "Renew Now"
|
1154 |
-
msgstr "Renouveler maintenant"
|
1155 |
-
|
1156 |
-
#: bws_menu/class-bws-settings.php:163
|
1157 |
-
msgid "Active"
|
1158 |
-
msgstr "Activé"
|
1159 |
-
|
1160 |
-
#: bws_menu/class-bws-settings.php:168
|
1161 |
-
msgid "License"
|
1162 |
-
msgstr "Licence"
|
1163 |
-
|
1164 |
-
#: bws_menu/class-bws-settings.php:171
|
1165 |
-
msgid "Status"
|
1166 |
-
msgstr "Etat"
|
1167 |
-
|
1168 |
-
#: bws_menu/class-bws-settings.php:175
|
1169 |
-
msgid "Version"
|
1170 |
-
msgstr "Version"
|
1171 |
-
|
1172 |
-
#: bws_menu/class-bws-settings.php:285
|
1173 |
-
msgid "All plugin settings were restored."
|
1174 |
-
msgstr "Les paramètres de l’extension ont été remis aux valeurs d’origine."
|
1175 |
-
|
1176 |
-
#: bws_menu/class-bws-settings.php:423 includes/class-gllr-settings.php:35
|
1177 |
-
msgid "Custom Code"
|
1178 |
-
msgstr "Code personnalisé"
|
1179 |
-
|
1180 |
-
#: bws_menu/class-bws-settings.php:427 bws_menu/deprecated.php:498
|
1181 |
-
msgid "You do not have sufficient permissions to edit plugins for this site."
|
1182 |
-
msgstr "Vous n’avez pas assez de droits pour modifier l’extension pour ce site."
|
1183 |
-
|
1184 |
-
#: bws_menu/class-bws-settings.php:432 bws_menu/deprecated.php:620
|
1185 |
-
msgid "These styles will be added to the header on all pages of your site."
|
1186 |
-
msgstr "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
1187 |
-
|
1188 |
-
#: bws_menu/class-bws-settings.php:435 bws_menu/deprecated.php:622
|
1189 |
-
#, php-format
|
1190 |
-
msgid "This PHP code will be hooked to the %s action and will be printed on front end only."
|
1191 |
-
msgstr "Ce code PHP sera rattaché à l’action %s et sera affiché uniquement sur la partie publique."
|
1192 |
-
|
1193 |
-
#: bws_menu/class-bws-settings.php:438
|
1194 |
-
msgid "These code will be added to the header on all pages of your site."
|
1195 |
-
msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
|
1196 |
-
|
1197 |
-
#: bws_menu/class-bws-settings.php:446 bws_menu/deprecated.php:646
|
1198 |
-
#, php-format
|
1199 |
-
msgid "You need to make this files writable before you can save your changes. See %s the Codex %s for more information."
|
1200 |
-
msgstr "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos modifications. Regarder %s du Codex %s pour plus d’informations."
|
1201 |
-
|
1202 |
-
#: bws_menu/class-bws-settings.php:456 bws_menu/deprecated.php:628
|
1203 |
-
msgid "Browsing"
|
1204 |
-
msgstr "Parcourir"
|
1205 |
-
|
1206 |
-
#: bws_menu/class-bws-settings.php:461
|
1207 |
-
#, php-format
|
1208 |
-
msgid "Activate custom %s code."
|
1209 |
-
msgstr "Activer le code personnalisé %s."
|
1210 |
-
|
1211 |
-
#: bws_menu/class-bws-settings.php:469 bws_menu/deprecated.php:635
|
1212 |
-
#, php-format
|
1213 |
-
msgid "Learn more about %s"
|
1214 |
-
msgstr "En savoir plus sur %s"
|
1215 |
-
|
1216 |
-
#: bws_menu/class-bws-settings.php:531
|
1217 |
-
msgid "Miscellaneous Settings"
|
1218 |
-
msgstr "Paramètres divers"
|
1219 |
-
|
1220 |
-
#: bws_menu/class-bws-settings.php:540 bws_menu/class-bws-settings.php:595
|
1221 |
-
#, php-format
|
1222 |
-
msgid "It is prohibited to change %s settings on this site in the %s network settings."
|
1223 |
-
msgstr "Il est interdit de changer le paramètre %s sur ce site dans les paramètres %s du réseau."
|
1224 |
-
|
1225 |
-
#: bws_menu/class-bws-settings.php:543 bws_menu/class-bws-settings.php:598
|
1226 |
-
#, php-format
|
1227 |
-
msgid "It is prohibited to view %s settings on this site in the %s network settings."
|
1228 |
-
msgstr "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s du réseau."
|
1229 |
-
|
1230 |
-
#: bws_menu/class-bws-settings.php:552
|
1231 |
-
msgid "Pro Options"
|
1232 |
-
msgstr "Options Pro"
|
1233 |
-
|
1234 |
-
#: bws_menu/class-bws-settings.php:556
|
1235 |
-
msgid "Enable to display plugin Pro options."
|
1236 |
-
msgstr "Activer pour voir les options PRO de l’extension."
|
1237 |
-
|
1238 |
-
#: bws_menu/class-bws-settings.php:562
|
1239 |
-
msgid "Track Usage"
|
1240 |
-
msgstr "Suivi de l’utilisation"
|
1241 |
-
|
1242 |
-
#: bws_menu/class-bws-settings.php:566
|
1243 |
-
msgid "Enable to allow tracking plugin usage anonymously in order to make it better."
|
1244 |
-
msgstr "Activer pour autoriser le suivi de l’utilisation de l’extension de manière anonyme afin de la rendre meilleure."
|
1245 |
-
|
1246 |
-
#: bws_menu/class-bws-settings.php:571
|
1247 |
-
msgid "Default Settings"
|
1248 |
-
msgstr "Réglages par défaut"
|
1249 |
-
|
1250 |
-
#: bws_menu/class-bws-settings.php:573
|
1251 |
-
msgid "Restore Settings"
|
1252 |
-
msgstr "Remettre les paramètres"
|
1253 |
-
|
1254 |
-
#: bws_menu/class-bws-settings.php:574
|
1255 |
-
msgid "This will restore plugin settings to defaults."
|
1256 |
-
msgstr "Remettre les valeurs par défaut des paramètres de l’extension."
|
1257 |
-
|
1258 |
-
#: bws_menu/class-bws-settings.php:586 includes/class-gllr-settings.php:36
|
1259 |
-
msgid "Import / Export"
|
1260 |
-
msgstr "Importer / Exporter"
|
1261 |
-
|
1262 |
-
#: bws_menu/class-bws-settings.php:702 bws_menu/class-bws-settings.php:735
|
1263 |
-
#: bws_menu/class-bws-settings.php:757 includes/class-gllr-settings.php:37
|
1264 |
-
msgid "License Key"
|
1265 |
-
msgstr "Clé de licence"
|
1266 |
-
|
1267 |
-
#: bws_menu/class-bws-settings.php:725
|
1268 |
-
msgid "Congratulations! Pro license is activated successfully."
|
1269 |
-
msgstr "Félicitations ! La version PRO de cette extension a été activée avec succès."
|
1270 |
-
|
1271 |
-
#: bws_menu/class-bws-settings.php:726
|
1272 |
-
#, php-format
|
1273 |
-
msgid "You will be automatically redirected to the %s in %s seconds."
|
1274 |
-
msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
|
1275 |
-
|
1276 |
-
#: bws_menu/class-bws-settings.php:726
|
1277 |
-
msgid "Settings page"
|
1278 |
-
msgstr "Page des paramètres"
|
1279 |
-
|
1280 |
-
#: bws_menu/class-bws-settings.php:741
|
1281 |
-
#, php-format
|
1282 |
-
msgid "Enter your license key to activate %s and get premium plugin features."
|
1283 |
-
msgstr "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités premium."
|
1284 |
-
|
1285 |
-
#: bws_menu/class-bws-settings.php:744 bws_menu/class-bws-settings.php:931
|
1286 |
-
#: bws_menu/deprecated.php:363 bws_menu/deprecated.php:706
|
1287 |
-
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
1288 |
-
msgstr "Désoler mais vous avez dépassé le nombre d’essai de la journée. Merci de télécharger l’extension manuellement."
|
1289 |
-
|
1290 |
-
#: bws_menu/class-bws-settings.php:747 bws_menu/deprecated.php:697
|
1291 |
-
#, php-format
|
1292 |
-
msgid "Start Your Free %s-Day Trial Now"
|
1293 |
-
msgstr "Débuter votre licence d’évaluation gratuite de %s jours"
|
1294 |
-
|
1295 |
-
#: bws_menu/class-bws-settings.php:762
|
1296 |
-
msgid "If necessary, you can check if the license key is correct or reenter it in the field below."
|
1297 |
-
msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous."
|
1298 |
-
|
1299 |
-
#: bws_menu/class-bws-settings.php:767
|
1300 |
-
msgid "Manage License Settings"
|
1301 |
-
msgstr "Gérer les paramètres de licence"
|
1302 |
-
|
1303 |
-
#: bws_menu/class-bws-settings.php:769
|
1304 |
-
msgid "Login to Client Area"
|
1305 |
-
msgstr "Se connecter à l’espace client"
|
1306 |
-
|
1307 |
-
#: bws_menu/class-bws-settings.php:771
|
1308 |
-
msgid "Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area."
|
1309 |
-
msgstr "Gérer les licences actives, télécharger les produits BWS, et voir l’historique de vos règlements dans l’interface client de BestWebSoft."
|
1310 |
-
|
1311 |
-
#: bws_menu/class-bws-settings.php:826 bws_menu/class-bws-settings.php:929
|
1312 |
-
#: bws_menu/deprecated.php:141 bws_menu/deprecated.php:361
|
1313 |
-
msgid "This license key is bound to another site."
|
1314 |
-
msgstr "La clé de licence correspond à un autre site."
|
1315 |
-
|
1316 |
-
#: bws_menu/class-bws-settings.php:828 bws_menu/deprecated.php:143
|
1317 |
-
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
1318 |
-
msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l’extension vous devez la renouveller."
|
1319 |
-
|
1320 |
-
#: bws_menu/class-bws-settings.php:830 bws_menu/deprecated.php:145
|
1321 |
-
msgid "Unfortunately, you have exceeded the number of available tries."
|
1322 |
-
msgstr "Désoler mais vous avez dépassé le nombre d’essai de la journée. Merci de télécharger l’extension manuellement."
|
1323 |
-
|
1324 |
-
#: bws_menu/class-bws-settings.php:832 bws_menu/deprecated.php:147
|
1325 |
-
msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
|
1326 |
-
msgstr "Une licence a déjà été installée sur ce domaine. La licence d’évaluation ne peut-être installée qu’une seule fois."
|
1327 |
-
|
1328 |
-
#: bws_menu/class-bws-settings.php:837 bws_menu/deprecated.php:151
|
1329 |
-
msgid "The Pro Trial license key is valid."
|
1330 |
-
msgstr "La clé de licence d’évaluation est valide."
|
1331 |
-
|
1332 |
-
#: bws_menu/class-bws-settings.php:845 bws_menu/deprecated.php:159
|
1333 |
-
#: bws_menu/deprecated.php:246
|
1334 |
-
#, php-format
|
1335 |
-
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
1336 |
-
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d’acheter une licence %s."
|
1337 |
-
|
1338 |
-
#: bws_menu/class-bws-settings.php:933
|
1339 |
-
#, php-format
|
1340 |
-
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s."
|
1341 |
-
msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l’extension vous devez la renouveler dans votre %s."
|
1342 |
-
|
1343 |
-
#: bws_menu/class-bws-settings.php:959 bws_menu/class-bws-settings.php:981
|
1344 |
-
#: bws_menu/class-bws-settings.php:1003
|
1345 |
-
msgid "Failed to download the zip archive. Please, upload the plugin manually."
|
1346 |
-
msgstr "Erreur de téléchargement de l’archive ZIP. Merci de télécharger l’extension manuellement."
|
1347 |
-
|
1348 |
-
#: bws_menu/class-bws-settings.php:971
|
1349 |
-
msgid "Failed to open the zip archive. Please, upload the plugin manually."
|
1350 |
-
msgstr "Erreur d’ouverture de l’archive zip. Merci de télécharger l’extension manuellement."
|
1351 |
-
|
1352 |
-
#: bws_menu/class-bws-settings.php:977
|
1353 |
-
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually."
|
1354 |
-
msgstr "Votre serveur n’a pas le support du format des archives ZIP ou Phar. Merci de télécharger l’extension manuellement."
|
1355 |
-
|
1356 |
-
#: bws_menu/class-bws-settings.php:984
|
1357 |
-
msgid "UploadDir is not writable. Please, upload the plugin manually."
|
1358 |
-
msgstr "Le répertoire de destination n’est pas disponible en écriture. Merci de télécharger l’extension manuellement."
|
1359 |
-
|
1360 |
-
#: bws_menu/class-bws-settings.php:1042 bws_menu/deprecated.php:464
|
1361 |
-
msgid "Please, enter Your license key"
|
1362 |
-
msgstr "Merci de saisir votre clé de licence"
|
1363 |
-
|
1364 |
-
#: bws_menu/class-bws-settings.php:1054
|
1365 |
-
msgid "Need Help?"
|
1366 |
-
msgstr "Besoin d’aide ?"
|
1367 |
-
|
1368 |
-
#: bws_menu/class-bws-settings.php:1056
|
1369 |
-
msgid "Read the Instruction"
|
1370 |
-
msgstr "Lire les instructions"
|
1371 |
-
|
1372 |
-
#: bws_menu/class-bws-settings.php:1060
|
1373 |
-
msgid "Watch the Video"
|
1374 |
-
msgstr "Regarder la vidéo"
|
1375 |
-
|
1376 |
-
#: bws_menu/class-bws-settings.php:1071
|
1377 |
-
msgid "Start Your Free Trial"
|
1378 |
-
msgstr "Débuter votre licence d’évaluation gratuite"
|
1379 |
-
|
1380 |
-
#: bws_menu/deactivation-form.php:27
|
1381 |
-
msgid "Need help? We are ready to answer your questions."
|
1382 |
-
msgstr "Besoin d’aide ? Nous sommes prêts à répondre à vos questions."
|
1383 |
-
|
1384 |
-
#: bws_menu/deactivation-form.php:27
|
1385 |
-
msgid "Contact Support"
|
1386 |
-
msgstr "Contacter le support"
|
1387 |
-
|
1388 |
-
#: bws_menu/deactivation-form.php:32
|
1389 |
-
msgid "The plugin is not working"
|
1390 |
-
msgstr "L’extension ne fonctionna pas"
|
1391 |
-
|
1392 |
-
#: bws_menu/deactivation-form.php:34
|
1393 |
-
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1394 |
-
msgstr "Merci de partager ce qui ne fonctionne pas afin que nous puissions le corriger dans une prochaine version..."
|
1395 |
-
|
1396 |
-
#: bws_menu/deactivation-form.php:38
|
1397 |
-
msgid "The plugin didn't work as expected"
|
1398 |
-
msgstr "L’extension ne fonctionne pas comme prévue"
|
1399 |
-
|
1400 |
-
#: bws_menu/deactivation-form.php:40
|
1401 |
-
msgid "What did you expect?"
|
1402 |
-
msgstr "Quel est le fonctionnement attendu ?"
|
1403 |
-
|
1404 |
-
#: bws_menu/deactivation-form.php:44
|
1405 |
-
msgid "The plugin suddenly stopped working"
|
1406 |
-
msgstr "L’extension a subitement cessé de fonctionner"
|
1407 |
-
|
1408 |
-
#: bws_menu/deactivation-form.php:51
|
1409 |
-
msgid "The plugin broke my site"
|
1410 |
-
msgstr "L’extension a cassé mon site"
|
1411 |
-
|
1412 |
-
#: bws_menu/deactivation-form.php:58
|
1413 |
-
msgid "I couldn't understand how to get it work"
|
1414 |
-
msgstr "Je n’arrive pas à comprendre commen la faire fonctionner"
|
1415 |
-
|
1416 |
-
#: bws_menu/deactivation-form.php:65
|
1417 |
-
msgid "I found a better plugin"
|
1418 |
-
msgstr "J’ai trouvé une meuilleure extension"
|
1419 |
-
|
1420 |
-
#: bws_menu/deactivation-form.php:67
|
1421 |
-
msgid "What's the plugin name?"
|
1422 |
-
msgstr "Quel est le nom de l’extension ?"
|
1423 |
-
|
1424 |
-
#: bws_menu/deactivation-form.php:71
|
1425 |
-
msgid "The plugin is great, but I need specific feature that you don't support"
|
1426 |
-
msgstr "L’extension est magnifique, mais j’ai besoin d’une fonctionnalité spécifique que vous n’offrez pas"
|
1427 |
-
|
1428 |
-
#: bws_menu/deactivation-form.php:73
|
1429 |
-
msgid "What feature?"
|
1430 |
-
msgstr "Quelle fonctionalité ?"
|
1431 |
-
|
1432 |
-
#: bws_menu/deactivation-form.php:77
|
1433 |
-
msgid "I no longer need the plugin"
|
1434 |
-
msgstr "Je n’ai plus besoin de cette extension"
|
1435 |
-
|
1436 |
-
#: bws_menu/deactivation-form.php:83
|
1437 |
-
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1438 |
-
msgstr "C’est une désactivation temporaire, je suis entrain de résoudre un problème"
|
1439 |
-
|
1440 |
-
#: bws_menu/deactivation-form.php:89
|
1441 |
-
msgid "Other"
|
1442 |
-
msgstr "Autre"
|
1443 |
-
|
1444 |
-
#: bws_menu/deactivation-form.php:123
|
1445 |
-
msgid "Quick Feedback"
|
1446 |
-
msgstr "Retour rapide"
|
1447 |
-
|
1448 |
-
#: bws_menu/deactivation-form.php:124
|
1449 |
-
msgid "If you have a moment, please let us know why you are deactivating"
|
1450 |
-
msgstr "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez l’extension"
|
1451 |
-
|
1452 |
-
#: bws_menu/deactivation-form.php:127
|
1453 |
-
msgid "Send website data and allow to contact me back"
|
1454 |
-
msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
|
1455 |
-
|
1456 |
-
#: bws_menu/deactivation-form.php:132
|
1457 |
-
msgid "Cancel"
|
1458 |
-
msgstr "Annuler"
|
1459 |
-
|
1460 |
-
#: bws_menu/deactivation-form.php:233
|
1461 |
-
msgid "Processing"
|
1462 |
-
msgstr "En cours"
|
1463 |
-
|
1464 |
-
#: bws_menu/deactivation-form.php:262
|
1465 |
-
msgid "Submit & Deactivate"
|
1466 |
-
msgstr "Envoyer et désactiver"
|
1467 |
-
|
1468 |
-
#: bws_menu/deactivation-form.php:277
|
1469 |
-
msgid "Please tell us the reason so we can improve it."
|
1470 |
-
msgstr "Merci de nous en dire la raison afin que nous puission l’améliorer."
|
1471 |
-
|
1472 |
-
#: bws_menu/deactivation-form.php:345
|
1473 |
-
msgid "Deactivate"
|
1474 |
-
msgstr "Désactivé"
|
1475 |
-
|
1476 |
-
#: bws_menu/deprecated.php:93
|
1477 |
-
msgid "System Status"
|
1478 |
-
msgstr "Etat du système"
|
1479 |
-
|
1480 |
-
#: bws_menu/deprecated.php:204
|
1481 |
-
msgid "Please, enter your license key"
|
1482 |
-
msgstr "Merci de saisir votre clé de licence"
|
1483 |
-
|
1484 |
-
#: bws_menu/deprecated.php:223
|
1485 |
-
msgid "If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website"
|
1486 |
-
msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
|
1487 |
-
|
1488 |
-
#: bws_menu/deprecated.php:223
|
1489 |
-
msgid "(your username is the email address specified during the purchase). If necessary, please submit \"Lost your password?\" request."
|
1490 |
-
msgstr "(votre nom d’utilisateur est l’adresse e-mail que vous avez donnée lors de l’achat de l’extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
|
1491 |
-
|
1492 |
-
#: bws_menu/deprecated.php:246
|
1493 |
-
msgid "After that, you can activate it by entering your license key."
|
1494 |
-
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
1495 |
-
|
1496 |
-
#: bws_menu/deprecated.php:249 bws_menu/deprecated.php:691
|
1497 |
-
msgid "License key can be found in the"
|
1498 |
-
msgstr "La clé de licence peut être trouvée dans "
|
1499 |
-
|
1500 |
-
#: bws_menu/deprecated.php:251 bws_menu/deprecated.php:693
|
1501 |
-
msgid "(your username is the email address specified during the purchase)."
|
1502 |
-
msgstr "(votre nom d’utilisateur est l’adresse e-mail que vous avez donnée lors de l’achat de l’extension)."
|
1503 |
-
|
1504 |
-
#: bws_menu/deprecated.php:279
|
1505 |
-
msgid "Congratulations! The Pro license of the plugin is activated successfully."
|
1506 |
-
msgstr "Félicitations ! La version PRO de cette extension a été activée avec succès."
|
1507 |
-
|
1508 |
-
#: bws_menu/deprecated.php:281 bws_menu/deprecated.php:672
|
1509 |
-
msgid "Please, go to"
|
1510 |
-
msgstr "Merci d’aller à"
|
1511 |
-
|
1512 |
-
#: bws_menu/deprecated.php:281 bws_menu/deprecated.php:672
|
1513 |
-
msgid "the setting page"
|
1514 |
-
msgstr "Options supplémentaires"
|
1515 |
-
|
1516 |
-
#: bws_menu/deprecated.php:282 bws_menu/deprecated.php:673
|
1517 |
-
msgid "You will be redirected automatically in 5 seconds."
|
1518 |
-
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
1519 |
-
|
1520 |
-
#: bws_menu/deprecated.php:316
|
1521 |
-
msgid "Check premium options on the plugin settings page!"
|
1522 |
-
msgstr "Vérifier les options premium sur la page des paramètres de l’extension !"
|
1523 |
-
|
1524 |
-
#: bws_menu/deprecated.php:479
|
1525 |
-
msgid "Restore all plugin settings to defaults"
|
1526 |
-
msgstr "Remettre les valeurs par défaut des paramètres de l’extension"
|
1527 |
-
|
1528 |
-
#: bws_menu/deprecated.php:481
|
1529 |
-
msgid "Restore settings"
|
1530 |
-
msgstr "Remettre les paramètres"
|
1531 |
-
|
1532 |
-
#: bws_menu/deprecated.php:550 bws_menu/deprecated.php:577
|
1533 |
-
#, php-format
|
1534 |
-
msgid "File %s edited successfully."
|
1535 |
-
msgstr "Le fichier %s a été modifié avec succès."
|
1536 |
-
|
1537 |
-
#: bws_menu/deprecated.php:552 bws_menu/deprecated.php:579
|
1538 |
-
msgid "Not enough permissions to create or update the file"
|
1539 |
-
msgstr "Pas assez de droits pour créer ou modifier le fichier"
|
1540 |
-
|
1541 |
-
#: bws_menu/deprecated.php:582
|
1542 |
-
msgid "Not enough permissions to create the file"
|
1543 |
-
msgstr "Pas assez de droits pour créer le fichier"
|
1544 |
-
|
1545 |
-
#: bws_menu/deprecated.php:626
|
1546 |
-
msgid "Editing"
|
1547 |
-
msgstr "Modifier"
|
1548 |
-
|
1549 |
-
#: bws_menu/deprecated.php:670
|
1550 |
-
msgid "Congratulations! Pro version of the plugin is installed and activated successfully."
|
1551 |
-
msgstr "Félicitations ! La version PRO de cette extension a été téléchargée et activée avec succès."
|
1552 |
-
|
1553 |
-
#: bws_menu/deprecated.php:680
|
1554 |
-
msgid "Show Pro features"
|
1555 |
-
msgstr "Voir les fonctionnalités de la version PRO"
|
1556 |
-
|
1557 |
-
#: bws_menu/deprecated.php:687
|
1558 |
-
msgid "Enter your license key to install and activate"
|
1559 |
-
msgstr "Saisir votre clé de licence pour installer et activer"
|
1560 |
-
|
1561 |
-
#: bws_menu/deprecated.php:689
|
1562 |
-
msgid "version of the plugin."
|
1563 |
-
msgstr "version de l’extension."
|
1564 |
-
|
1565 |
-
#: bws_menu/product_list.php:7
|
1566 |
-
msgid "Admin Tools"
|
1567 |
-
msgstr "Outils d’administration"
|
1568 |
-
|
1569 |
-
#: bws_menu/product_list.php:8
|
1570 |
-
msgid "Content"
|
1571 |
-
msgstr "Contenu"
|
1572 |
-
|
1573 |
-
#: bws_menu/product_list.php:9
|
1574 |
-
msgid "eCommerce"
|
1575 |
-
msgstr "eCommerce"
|
1576 |
-
|
1577 |
-
#: bws_menu/product_list.php:10
|
1578 |
-
msgid "Marketing"
|
1579 |
-
msgstr "Marketing"
|
1580 |
-
|
1581 |
-
#: bws_menu/product_list.php:11
|
1582 |
-
msgid "Navigation"
|
1583 |
-
msgstr "Navigation"
|
1584 |
-
|
1585 |
-
#: bws_menu/product_list.php:12
|
1586 |
-
msgid "Recommended"
|
1587 |
-
msgstr "Recommandé"
|
1588 |
-
|
1589 |
-
#: bws_menu/product_list.php:13
|
1590 |
-
msgid "Security"
|
1591 |
-
msgstr "Sécurité"
|
1592 |
-
|
1593 |
-
#: bws_menu/product_list.php:14
|
1594 |
-
msgid "SEO"
|
1595 |
-
msgstr "SEO"
|
1596 |
-
|
1597 |
-
#: bws_menu/product_list.php:15
|
1598 |
-
msgid "SMM"
|
1599 |
-
msgstr "SMM"
|
1600 |
-
|
1601 |
-
#: bws_menu/product_list.php:22
|
1602 |
-
msgid "Best secure captcha plugin to protect your WordPress forms."
|
1603 |
-
msgstr "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
|
1604 |
-
|
1605 |
-
#: bws_menu/product_list.php:32
|
1606 |
-
msgid "Create your personal car rental/booking and reservation website."
|
1607 |
-
msgstr "Créer votre site personnel de vente/location de voitures."
|
1608 |
-
|
1609 |
-
#: bws_menu/product_list.php:42
|
1610 |
-
msgid "Allow customers to reach you using secure contact form plugin any website must have."
|
1611 |
-
msgstr "Permet à vos clients de vous joindre en utilisant un formulaire de contact sécurisé que tout site doit avoir."
|
1612 |
-
|
1613 |
-
#: bws_menu/product_list.php:52
|
1614 |
-
msgid "Add unlimited number of contact forms to WordPress website."
|
1615 |
-
msgstr "Ajoute une nombre illimité de formulaires de contact."
|
1616 |
-
|
1617 |
-
#: bws_menu/product_list.php:62
|
1618 |
-
msgid "Save and manage Contact Form messages. Never lose important data."
|
1619 |
-
msgstr "Enregistrer et gérer les messages issu du formulaire de contact. Permet de ne pas perdre des informations importantes."
|
1620 |
-
|
1621 |
-
#: bws_menu/product_list.php:72
|
1622 |
-
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1623 |
-
msgstr "Ajouter un nombre illimté de pages dans l’administration."
|
1624 |
-
|
1625 |
-
#: bws_menu/product_list.php:79
|
1626 |
-
msgid "Add custom fields to WordPress website search results."
|
1627 |
-
msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
|
1628 |
-
|
1629 |
-
#: bws_menu/product_list.php:86
|
1630 |
-
msgid "Add custom post types and taxonomies to WordPress website search results."
|
1631 |
-
msgstr "Ajouter des types d’articles personalisés et des taxonomies dans le résultat de la recherche."
|
1632 |
-
|
1633 |
-
#: bws_menu/product_list.php:96
|
1634 |
-
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1635 |
-
msgstr "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
|
1636 |
-
|
1637 |
-
#: bws_menu/product_list.php:103
|
1638 |
-
msgid "Get latest error log messages to diagnose website problems. Define and fix issues faster."
|
1639 |
-
msgstr "Obtenir les derniers messages d’erreur pour diagnostiquer les problèmes du site. Permet de corriger plus rapidement."
|
1640 |
-
|
1641 |
-
#: bws_menu/product_list.php:110
|
1642 |
-
msgid "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets."
|
1643 |
-
msgstr "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, pages et widgets."
|
1644 |
-
|
1645 |
-
#: bws_menu/product_list.php:120
|
1646 |
-
msgid "Add beautiful galleries, albums & images to your WordPress website in a few clicks."
|
1647 |
-
msgstr "Ajouter des galeries, albums et images en quelques clics."
|
1648 |
-
|
1649 |
-
#: bws_menu/product_list.php:130
|
1650 |
-
msgid "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets."
|
1651 |
-
msgstr "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google +1 aux articles, pages et widgets."
|
1652 |
-
|
1653 |
-
#: bws_menu/product_list.php:140
|
1654 |
-
msgid "Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts."
|
1655 |
-
msgstr "Solution forte de sécurité qui protège votre site des attaques et des tentatives de connexions."
|
1656 |
-
|
1657 |
-
#: bws_menu/product_list.php:150
|
1658 |
-
msgid "Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets."
|
1659 |
-
msgstr "Ajouter les publicités Adsense aux pages, articles, types personalisés, résultats de recherche, catégories, tags, widgets."
|
1660 |
-
|
1661 |
-
#: bws_menu/product_list.php:160
|
1662 |
-
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1663 |
-
msgstr "Ajouter le code Google Analytics et permet de suivre les statistiques basiques."
|
1664 |
-
|
1665 |
-
#: bws_menu/product_list.php:170
|
1666 |
-
msgid "Protect WordPress website forms from spam entries with Google Captcha (reCaptcha)."
|
1667 |
-
msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
|
1668 |
-
|
1669 |
-
#: bws_menu/product_list.php:180
|
1670 |
-
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1671 |
-
msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
|
1672 |
-
|
1673 |
-
#: bws_menu/product_list.php:190
|
1674 |
-
msgid "Generate and add XML sitemap to WordPress website. Help search engines index your blog."
|
1675 |
-
msgstr "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche à parcourir votre site."
|
1676 |
-
|
1677 |
-
#: bws_menu/product_list.php:200
|
1678 |
-
msgid "Replace external WordPress website links with Google shortlinks and track click stats."
|
1679 |
-
msgstr "Remplacer les liens externes dans votre site par des liens courts de Google et disposer de statistiques."
|
1680 |
-
|
1681 |
-
#: bws_menu/product_list.php:207
|
1682 |
-
msgid "Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc."
|
1683 |
-
msgstr "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom de machine, ..."
|
1684 |
-
|
1685 |
-
#: bws_menu/product_list.php:217
|
1686 |
-
msgid "Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates."
|
1687 |
-
msgstr "Créer votre site d’offres d’emploies. Rechercher des emplois, envoyer des CV/des candidatures."
|
1688 |
-
|
1689 |
-
#: bws_menu/product_list.php:224
|
1690 |
-
msgid "Protect WordPress website against brute force attacks. Limit rate of login attempts."
|
1691 |
-
msgstr "Protéger le site contre les attaques de brute force. Limite la fréquence des tentatives de connexions."
|
1692 |
-
|
1693 |
-
#: bws_menu/product_list.php:234
|
1694 |
-
msgid "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc."
|
1695 |
-
msgstr "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et widgets. 5 extensions incluses (profile, insider, etc.)"
|
1696 |
-
|
1697 |
-
#: bws_menu/product_list.php:244
|
1698 |
-
msgid "Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc."
|
1699 |
-
msgstr "Traduire le contenu du site dans d’autres langues manuellement. Créer des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
|
1700 |
-
|
1701 |
-
#: bws_menu/product_list.php:254
|
1702 |
-
msgid "Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation."
|
1703 |
-
msgstr "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs pages pour une meuilleure navigation."
|
1704 |
-
|
1705 |
-
#: bws_menu/product_list.php:264
|
1706 |
-
msgid "Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance."
|
1707 |
-
msgstr "Générer des fichiers PDF pour des pages ou des articles. Personaliser l’en-tête/pied de page, les styles et l’apparence."
|
1708 |
-
|
1709 |
-
#: bws_menu/product_list.php:274
|
1710 |
-
msgid "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets."
|
1711 |
-
msgstr "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
|
1712 |
-
|
1713 |
-
#: bws_menu/product_list.php:284
|
1714 |
-
msgid "Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients."
|
1715 |
-
msgstr "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour acquérir de nouveaux clients."
|
1716 |
-
|
1717 |
-
#: bws_menu/product_list.php:294
|
1718 |
-
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1719 |
-
msgstr "Exporter vos articles dans un format CSV facilement. Configurer l’ordre des données."
|
1720 |
-
|
1721 |
-
#: bws_menu/product_list.php:301
|
1722 |
-
msgid "Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values."
|
1723 |
-
msgstr "Ajouter des champs personalisés au profil utilisateur. La façon la plus simple de créer et gérer des informations supplémentaires."
|
1724 |
-
|
1725 |
-
#: bws_menu/product_list.php:308
|
1726 |
-
msgid "Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance."
|
1727 |
-
msgstr "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style et l’apparence de la barre."
|
1728 |
-
|
1729 |
-
#: bws_menu/product_list.php:318
|
1730 |
-
msgid "Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
|
1731 |
-
msgstr "Ajouter des blocs d’avis et d’astuces sur vos pages, articles et widgets."
|
1732 |
-
|
1733 |
-
#: bws_menu/product_list.php:325
|
1734 |
-
msgid "Add rating plugin to your WordPress website to receive feedback from your customers."
|
1735 |
-
msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
|
1736 |
-
|
1737 |
-
#: bws_menu/product_list.php:332
|
1738 |
-
msgid "Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily."
|
1739 |
-
msgstr "Créer votre site d’annonces immobilières. Vendre, louer et acheter des biens. Recherche et catalogue facilement mis en place."
|
1740 |
-
|
1741 |
-
#: bws_menu/product_list.php:342
|
1742 |
-
msgid "Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content."
|
1743 |
-
msgstr "Ajouter des informations sur les articles en relations, mis en avant, populaires. Fournisser à vos lecteurs un contenu passionant."
|
1744 |
-
|
1745 |
-
#: bws_menu/product_list.php:349
|
1746 |
-
msgid "Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports."
|
1747 |
-
msgstr "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles personalisables, paramétrage avancé et reporting complet."
|
1748 |
-
|
1749 |
-
#: bws_menu/product_list.php:359
|
1750 |
-
msgid "The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks."
|
1751 |
-
msgstr "Extension pour mettre en place des diaporamas responsive. Créer des diaporamas animés en quelques clics."
|
1752 |
-
|
1753 |
-
#: bws_menu/product_list.php:366
|
1754 |
-
msgid "Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services."
|
1755 |
-
msgstr "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, Hotmail et d’autres services."
|
1756 |
-
|
1757 |
-
#: bws_menu/product_list.php:373
|
1758 |
-
msgid "Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1759 |
-
msgstr "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, LinkedIn aux articles, pages et widgets."
|
1760 |
-
|
1761 |
-
#: bws_menu/product_list.php:383
|
1762 |
-
msgid "Add social media login, registration, and commenting to your WordPress website."
|
1763 |
-
msgstr "Ajouter la connection, l’enregistrement et la rédaction de commentaires pour vos réseaux sociaux."
|
1764 |
-
|
1765 |
-
#: bws_menu/product_list.php:390
|
1766 |
-
msgid "Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users."
|
1767 |
-
msgstr "Ajouter un formulaire d’inscription à votre lettre d’information sur vos pages, articles et widgets. Récolter les inscriptions et les données de vos utilisateurs."
|
1768 |
-
|
1769 |
-
#: bws_menu/product_list.php:400
|
1770 |
-
msgid "Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets."
|
1771 |
-
msgstr "Ajouter des témoignages et des retours de vos clients aux articles, pages et widgets."
|
1772 |
-
|
1773 |
-
#: bws_menu/product_list.php:407
|
1774 |
-
msgid "Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports."
|
1775 |
-
msgstr "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, le temps de présence et créer des rapports."
|
1776 |
-
|
1777 |
-
#: bws_menu/product_list.php:417
|
1778 |
-
msgid "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages."
|
1779 |
-
msgstr "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages et widgets."
|
1780 |
-
|
1781 |
-
#: bws_menu/product_list.php:427
|
1782 |
-
msgid "Automatically check and update WordPress website core with all installed plugins and themes to the latest versions."
|
1783 |
-
msgstr "Mettre à jour automatiquement votre site pour WordPress, les extensions et les thèmes."
|
1784 |
-
|
1785 |
-
#: bws_menu/product_list.php:437
|
1786 |
-
msgid "Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles."
|
1787 |
-
msgstr "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits utilisateurs."
|
1788 |
-
|
1789 |
-
#: bws_menu/product_list.php:447
|
1790 |
-
msgid "Display live count of online visitors who are currently browsing your WordPress website."
|
1791 |
-
msgstr "Afficher en direct le compteur des visiteurs sur votre site."
|
1792 |
-
|
1793 |
-
#: bws_menu/product_list.php:457
|
1794 |
-
msgid "Backup and export Zendesk Help Center content automatically to your WordPress website database."
|
1795 |
-
msgstr "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre site."
|
1796 |
-
|
1797 |
-
#: includes/class-gllr-settings.php:31
|
1798 |
-
msgid "Cover"
|
1799 |
-
msgstr "Couverture"
|
1800 |
-
|
1801 |
-
#: includes/class-gllr-settings.php:32
|
1802 |
-
msgid "Lightbox"
|
1803 |
-
msgstr "Lightbox"
|
1804 |
-
|
1805 |
-
#: includes/class-gllr-settings.php:33
|
1806 |
-
msgid "Social"
|
1807 |
-
msgstr "Social"
|
1808 |
-
|
1809 |
-
#: includes/class-gllr-settings.php:34
|
1810 |
-
msgid "Misc"
|
1811 |
-
msgstr "Divers"
|
1812 |
-
|
1813 |
-
#: includes/class-gllr-settings.php:210
|
1814 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
1815 |
-
msgstr "La taille personnalisée des images a été modifiée. Vous devez mettre à jour les images dans les galeries."
|
1816 |
-
|
1817 |
-
#: includes/class-gllr-settings.php:247
|
1818 |
-
msgid "Settings saved"
|
1819 |
-
msgstr "Paramètres enregistrés."
|
1820 |
-
|
1821 |
-
#: includes/class-gllr-settings.php:259
|
1822 |
-
msgid "Please, enable JavaScript in Your browser."
|
1823 |
-
msgstr "Merci d’activer JavaScript dans votre navigateur."
|
1824 |
-
|
1825 |
-
#: includes/class-gllr-settings.php:264
|
1826 |
-
msgid "Update Images"
|
1827 |
-
msgstr "Mise à jour des images"
|
1828 |
-
|
1829 |
-
#: includes/class-gllr-settings.php:279
|
1830 |
-
msgid "Gallery Images"
|
1831 |
-
msgstr "Galerie d’images"
|
1832 |
-
|
1833 |
-
#: includes/class-gllr-settings.php:284
|
1834 |
-
msgid "Images adding requires JavaScript."
|
1835 |
-
msgstr "Ajouter des images nécessite JavaScript."
|
1836 |
-
|
1837 |
-
#: includes/class-gllr-settings.php:287
|
1838 |
-
msgid "Add Media"
|
1839 |
-
msgstr "Ajouter un média"
|
1840 |
-
|
1841 |
-
#: includes/class-gllr-settings.php:296
|
1842 |
-
msgid "The grid view for the Gallery images requires JavaScript."
|
1843 |
-
msgstr "La vue en mode grille pour les images des galeries nécessite Java-script."
|
1844 |
-
|
1845 |
-
#: includes/class-gllr-settings.php:296
|
1846 |
-
msgid "Switch to the list view"
|
1847 |
-
msgstr "Basculer vers une vue en mode liste"
|
1848 |
-
|
1849 |
-
#: includes/class-gllr-settings.php:319
|
1850 |
-
msgid "Single Gallery Settings"
|
1851 |
-
msgstr "Paramètres de la galerie"
|
1852 |
-
|
1853 |
-
#: includes/class-gllr-settings.php:321
|
1854 |
-
#, php-format
|
1855 |
-
msgid "Enable to configure single gallery settings and disable %s."
|
1856 |
-
msgstr "Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
|
1857 |
-
|
1858 |
-
#: includes/class-gllr-settings.php:336
|
1859 |
-
msgid "Gallery Layout"
|
1860 |
-
msgstr "Mise en page de la galerie"
|
1861 |
-
|
1862 |
-
#: includes/class-gllr-settings.php:341
|
1863 |
-
msgid "Grid"
|
1864 |
-
msgstr "Grille"
|
1865 |
-
|
1866 |
-
#: includes/class-gllr-settings.php:347
|
1867 |
-
msgid "Masonry"
|
1868 |
-
msgstr "Mur"
|
1869 |
-
|
1870 |
-
#: includes/class-gllr-settings.php:360
|
1871 |
-
msgid "Number of Columns"
|
1872 |
-
msgstr "Nombre de colonnes"
|
1873 |
-
|
1874 |
-
#: includes/class-gllr-settings.php:363
|
1875 |
-
#, php-format
|
1876 |
-
msgid "Number of gallery columns (default is %s)."
|
1877 |
-
msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
|
1878 |
-
|
1879 |
-
#: includes/class-gllr-settings.php:367 includes/class-gllr-settings.php:749
|
1880 |
-
msgid "Image Size"
|
1881 |
-
msgstr "Taille de l’image"
|
1882 |
-
|
1883 |
-
#: includes/class-gllr-settings.php:373 includes/class-gllr-settings.php:606
|
1884 |
-
msgid "Custom"
|
1885 |
-
msgstr "Personnalisé"
|
1886 |
-
|
1887 |
-
#: includes/class-gllr-settings.php:375
|
1888 |
-
msgid "Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
1889 |
-
msgstr "Taille maximum d’une image dans la galerie. \"Personnalisé\" utilise les valeurs définies pour les images."
|
1890 |
-
|
1891 |
-
#: includes/class-gllr-settings.php:379
|
1892 |
-
msgid "Custom Image Size"
|
1893 |
-
msgstr "Taille de l’image personalisée"
|
1894 |
-
|
1895 |
-
#: includes/class-gllr-settings.php:381 includes/class-gllr-settings.php:469
|
1896 |
-
#: includes/class-gllr-settings.php:614 includes/class-gllr-settings.php:664
|
1897 |
-
msgid "px"
|
1898 |
-
msgstr "px"
|
1899 |
-
|
1900 |
-
#: includes/class-gllr-settings.php:382
|
1901 |
-
msgid "Adjust these values based on the number of columns in your gallery. This won't effect the full size of your images in the lightbox."
|
1902 |
-
msgstr "Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. Cela ne changera pas la taille maximum de vos images dans la lightbox."
|
1903 |
-
|
1904 |
-
#: includes/class-gllr-settings.php:393
|
1905 |
-
msgid "Crop Images"
|
1906 |
-
msgstr "Réduire les images"
|
1907 |
-
|
1908 |
-
#: includes/class-gllr-settings.php:395
|
1909 |
-
msgid "Enable to crop images using the sizes defined for Custom Image Size. Disable to resize images automatically using their aspect ratio."
|
1910 |
-
msgstr "Activer pour réduire les images en utilisant les tailles définies dans les paramètres de personnalisation. Désactiver pour restaurer les images automatiquement en utilisant leur aspect d’origine."
|
1911 |
-
|
1912 |
-
#: includes/class-gllr-settings.php:399 includes/class-gllr-settings.php:631
|
1913 |
-
msgid "Crop Position"
|
1914 |
-
msgstr "Position pour la réduction"
|
1915 |
-
|
1916 |
-
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:646
|
1917 |
-
msgid "Select crop position base (by default: center)."
|
1918 |
-
msgstr "Sélectionner la position de base pour la réduction (par défaut le centre)."
|
1919 |
-
|
1920 |
-
#: includes/class-gllr-settings.php:424
|
1921 |
-
msgid "Image Title"
|
1922 |
-
msgstr "Titre de l’image"
|
1923 |
-
|
1924 |
-
#: includes/class-gllr-settings.php:426
|
1925 |
-
msgid "Enable to display image title along with the gallery image."
|
1926 |
-
msgstr "Activer pour afficher le titre avec l’image dans la galerie."
|
1927 |
-
|
1928 |
-
#: includes/class-gllr-settings.php:437
|
1929 |
-
msgid "Image Title Position"
|
1930 |
-
msgstr "Position du titre de l’image"
|
1931 |
-
|
1932 |
-
#: includes/class-gllr-settings.php:442
|
1933 |
-
msgid "Under image"
|
1934 |
-
msgstr "Sous l’image"
|
1935 |
-
|
1936 |
-
#: includes/class-gllr-settings.php:448
|
1937 |
-
msgid "On mouse hover"
|
1938 |
-
msgstr "Par survol de la souris"
|
1939 |
-
|
1940 |
-
#: includes/class-gllr-settings.php:461
|
1941 |
-
msgid "Image Border"
|
1942 |
-
msgstr "Image avec bordure"
|
1943 |
-
|
1944 |
-
#: includes/class-gllr-settings.php:463
|
1945 |
-
msgid "Enable images border using the styles defined for Image Border Size and Color options."
|
1946 |
-
msgstr "Activer les bordures autour des images en utilisant la largeur et la couleur définies."
|
1947 |
-
|
1948 |
-
#: includes/class-gllr-settings.php:467
|
1949 |
-
msgid "Image Border Size"
|
1950 |
-
msgstr "Taille de la bordure de l’image"
|
1951 |
-
|
1952 |
-
#: includes/class-gllr-settings.php:470
|
1953 |
-
#, php-format
|
1954 |
-
msgid "Gallery image border width (default is %s)"
|
1955 |
-
msgstr "Largeur de la bordure pour les images (par défaut %s)"
|
1956 |
-
|
1957 |
-
#: includes/class-gllr-settings.php:474
|
1958 |
-
msgid "Image Border Color"
|
1959 |
-
msgstr "Choisir une couleur pour la bordure"
|
1960 |
-
|
1961 |
-
#: includes/class-gllr-settings.php:487
|
1962 |
-
msgid "Pagination"
|
1963 |
-
msgstr "Pagination"
|
1964 |
-
|
1965 |
-
#: includes/class-gllr-settings.php:490
|
1966 |
-
msgid "Enable pagination for images to limit number of images displayed on a single gallery page."
|
1967 |
-
msgstr "Activer la pagination pour les images afin de limiter le nombre d’images affichées sur une seule page dans la galerie."
|
1968 |
-
|
1969 |
-
#: includes/class-gllr-settings.php:494
|
1970 |
-
msgid "Number of Images"
|
1971 |
-
msgstr "Nombre d’images"
|
1972 |
-
|
1973 |
-
#: includes/class-gllr-settings.php:497
|
1974 |
-
#, php-format
|
1975 |
-
msgid "Number of images displayed per page (default is %d)."
|
1976 |
-
msgstr "Nombre d’images affichées par page (par défaut %d)."
|
1977 |
-
|
1978 |
-
#: includes/class-gllr-settings.php:507
|
1979 |
-
msgid "Sort Images by"
|
1980 |
-
msgstr "Trier les images par"
|
1981 |
-
|
1982 |
-
#: includes/class-gllr-settings.php:510
|
1983 |
-
msgid "Manually (default)"
|
1984 |
-
msgstr "Manuel (défaut)"
|
1985 |
-
|
1986 |
-
#: includes/class-gllr-settings.php:511
|
1987 |
-
msgid "Image ID"
|
1988 |
-
msgstr "Image ID"
|
1989 |
-
|
1990 |
-
#: includes/class-gllr-settings.php:512
|
1991 |
-
msgid "Name"
|
1992 |
-
msgstr "Nom"
|
1993 |
-
|
1994 |
-
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
1995 |
-
msgid "Random"
|
1996 |
-
msgstr "Aléatoire"
|
1997 |
-
|
1998 |
-
#: includes/class-gllr-settings.php:516
|
1999 |
-
msgid "Select images sorting order in your gallery. By default, you can sort images manually in the images tab."
|
2000 |
-
msgstr "Choisir l’ordre de tri des images dans votre galerie. Par défaut, vous pouvez trier les images manuellement dans l’onglet des images. "
|
2001 |
-
|
2002 |
-
#: includes/class-gllr-settings.php:520
|
2003 |
-
msgid "Arrange Images by"
|
2004 |
-
msgstr "Trier les images par"
|
2005 |
-
|
2006 |
-
#: includes/class-gllr-settings.php:523 includes/class-gllr-settings.php:694
|
2007 |
-
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
2008 |
-
msgstr "Ascendant (par ex 1, 2, 3; a, b, c)"
|
2009 |
-
|
2010 |
-
#: includes/class-gllr-settings.php:524 includes/class-gllr-settings.php:695
|
2011 |
-
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
2012 |
-
msgstr "Descendant (par ex 1, 2, 3; a, b, c)"
|
2013 |
-
|
2014 |
-
#: includes/class-gllr-settings.php:529
|
2015 |
-
msgid "Back Link"
|
2016 |
-
msgstr "Lien de retour"
|
2017 |
-
|
2018 |
-
#: includes/class-gllr-settings.php:531
|
2019 |
-
msgid "Enable to show a back link in a single gallery page which navigate to a previous page."
|
2020 |
-
msgstr "Activer pour afficher un lien de retour dans la page d’une galerie vers la page précédente."
|
2021 |
-
|
2022 |
-
#: includes/class-gllr-settings.php:535
|
2023 |
-
msgid "Back Link URL"
|
2024 |
-
msgstr "L’URL pour le lien de retour"
|
2025 |
-
|
2026 |
-
#: includes/class-gllr-settings.php:538
|
2027 |
-
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
2028 |
-
msgstr "Lien de retour personnalisé vers une page. Laisser vide pour utiliser le modèle de page de galerie."
|
2029 |
-
|
2030 |
-
#: includes/class-gllr-settings.php:542
|
2031 |
-
msgid "Back Link Label"
|
2032 |
-
msgstr "Libellé pour le lien de retour"
|
2033 |
-
|
2034 |
-
#: includes/class-gllr-settings.php:548
|
2035 |
-
msgid "Back Link with Shortcode"
|
2036 |
-
msgstr "Lien de retour dans le code court"
|
2037 |
-
|
2038 |
-
#: includes/class-gllr-settings.php:551
|
2039 |
-
msgid "Enable to display a back link on a page where shortcode is used."
|
2040 |
-
msgstr "Activer pour afficher le lien de retour vers la page où le code court est utilisé."
|
2041 |
-
|
2042 |
-
#: includes/class-gllr-settings.php:562
|
2043 |
-
msgid "Cover Settings"
|
2044 |
-
msgstr "Paramètres de couverture"
|
2045 |
-
|
2046 |
-
#: includes/class-gllr-settings.php:567
|
2047 |
-
msgid "Galleries Page"
|
2048 |
-
msgstr "Page des galeries"
|
2049 |
-
|
2050 |
-
#: includes/class-gllr-settings.php:575
|
2051 |
-
msgid "Base page where all existing galleries will be displayed."
|
2052 |
-
msgstr "Page de base où toutes les galeries existantes seront affichées."
|
2053 |
-
|
2054 |
-
#: includes/class-gllr-settings.php:579
|
2055 |
-
msgid "Albums Displaying"
|
2056 |
-
msgstr "Affichage des albums"
|
2057 |
-
|
2058 |
-
#: includes/class-gllr-settings.php:582
|
2059 |
-
msgid "Column"
|
2060 |
-
msgstr "Colonnes"
|
2061 |
-
|
2062 |
-
#: includes/class-gllr-settings.php:583
|
2063 |
-
msgid "Rows"
|
2064 |
-
msgstr "Lignes"
|
2065 |
-
|
2066 |
-
#: includes/class-gllr-settings.php:585
|
2067 |
-
msgid "Select the way galleries will be displayed on the Galleries Page."
|
2068 |
-
msgstr "Choisisser la manière qui sera utilisé pour l’affichage des galeries dans la page."
|
2069 |
-
|
2070 |
-
#: includes/class-gllr-settings.php:589
|
2071 |
-
msgid "Column Alignment"
|
2072 |
-
msgstr "Alignement des colonnes"
|
2073 |
-
|
2074 |
-
#: includes/class-gllr-settings.php:592
|
2075 |
-
msgid "Left"
|
2076 |
-
msgstr "Gauche"
|
2077 |
-
|
2078 |
-
#: includes/class-gllr-settings.php:593
|
2079 |
msgid "Right"
|
2080 |
msgstr "Droite"
|
2081 |
|
2082 |
-
#: includes/class-gllr-settings.php:
|
2083 |
msgid "Center"
|
2084 |
msgstr "Centré"
|
2085 |
|
2086 |
-
#: includes/class-gllr-settings.php:
|
2087 |
msgid "Select the column alignment."
|
2088 |
msgstr "Choisir l’alignement des colonnes."
|
2089 |
|
2090 |
-
#: includes/class-gllr-settings.php:
|
2091 |
msgid "Cover Image Size"
|
2092 |
msgstr "Taille de l’image de couverture"
|
2093 |
|
2094 |
-
#: includes/class-gllr-settings.php:
|
2095 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
2096 |
-
msgstr "
|
|
|
|
|
2097 |
|
2098 |
-
#: includes/class-gllr-settings.php:
|
2099 |
msgid "Custom Cover Image Size"
|
2100 |
msgstr "Taille personnalisée de l’image de couverture"
|
2101 |
|
2102 |
-
#: includes/class-gllr-settings.php:
|
2103 |
msgid "Crop Cover Images"
|
2104 |
msgstr "Réduire les images de couverture"
|
2105 |
|
2106 |
-
#: includes/class-gllr-settings.php:
|
2107 |
-
msgid "
|
2108 |
-
|
|
|
|
|
|
|
|
|
|
|
2109 |
|
2110 |
-
#: includes/class-gllr-settings.php:
|
2111 |
msgid "Cover Image Border"
|
2112 |
msgstr "Bordure de l’image de couverture"
|
2113 |
|
2114 |
-
#: includes/class-gllr-settings.php:
|
2115 |
-
msgid "
|
2116 |
-
|
|
|
|
|
|
|
|
|
2117 |
|
2118 |
-
#: includes/class-gllr-settings.php:
|
2119 |
msgid "Cover Image Border Size"
|
2120 |
msgstr "Taille de la bordure de l’image de couverture"
|
2121 |
|
2122 |
-
#: includes/class-gllr-settings.php:
|
2123 |
#, php-format
|
2124 |
msgid "Cover image border width (default is %s)"
|
2125 |
msgstr "Taille de la bordure de l’image de couverture (par défaut %s)"
|
2126 |
|
2127 |
-
#: includes/class-gllr-settings.php:
|
2128 |
msgid "Cover Image Border Color"
|
2129 |
msgstr "Couleur de la bordure de l’image de couverture"
|
2130 |
|
2131 |
-
#: includes/class-gllr-settings.php:
|
2132 |
msgid "Sort Albums by"
|
2133 |
msgstr "Trier les albums par"
|
2134 |
|
2135 |
-
#: includes/class-gllr-settings.php:
|
2136 |
-
msgid "Gallery ID"
|
2137 |
-
msgstr "Galerie ID"
|
2138 |
-
|
2139 |
-
#: includes/class-gllr-settings.php:681
|
2140 |
-
msgid "Last modified date"
|
2141 |
-
msgstr "Date de dernière modification"
|
2142 |
-
|
2143 |
-
#: includes/class-gllr-settings.php:682
|
2144 |
-
msgid "Comment count"
|
2145 |
-
msgstr "Nombre de commentaires"
|
2146 |
-
|
2147 |
-
#: includes/class-gllr-settings.php:683
|
2148 |
-
msgid "\"Order\" field on the gallery edit page"
|
2149 |
-
msgstr "\"Ordonner\" les champs de la page de modification de la galerie"
|
2150 |
-
|
2151 |
-
#: includes/class-gllr-settings.php:687
|
2152 |
msgid "Select galleries sorting order in your galleries page."
|
2153 |
-
msgstr "
|
|
|
2154 |
|
2155 |
-
#: includes/class-gllr-settings.php:
|
2156 |
msgid "Arrange Albums by"
|
2157 |
msgstr "Tirer les albums par"
|
2158 |
|
2159 |
-
#: includes/class-gllr-settings.php:
|
2160 |
msgid "Read More Link Label"
|
2161 |
msgstr "Texte pour le lien \"En savoir plus\""
|
2162 |
|
2163 |
-
#: includes/class-gllr-settings.php:
|
2164 |
msgid "Instant Lightbox"
|
2165 |
msgstr "Lightbox rapide"
|
2166 |
|
2167 |
-
#: includes/class-gllr-settings.php:
|
2168 |
-
msgid "
|
2169 |
-
|
|
|
|
|
|
|
|
|
|
|
2170 |
|
2171 |
-
#: includes/class-gllr-settings.php:
|
2172 |
msgid "Lightbox Settings"
|
2173 |
msgstr "Paramètres lightbox"
|
2174 |
|
2175 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2176 |
msgid "Enable Lightbox"
|
2177 |
msgstr "Activer Lightbox"
|
2178 |
|
2179 |
-
#: includes/class-gllr-settings.php:
|
2180 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
2181 |
-
msgstr "
|
|
|
|
|
2182 |
|
2183 |
-
#: includes/class-gllr-settings.php:
|
2184 |
-
msgid "
|
2185 |
-
|
|
|
|
|
|
|
|
|
2186 |
|
2187 |
-
#: includes/class-gllr-settings.php:
|
2188 |
msgid "Overlay Color"
|
2189 |
msgstr "Couleur de superposition"
|
2190 |
|
2191 |
-
#: includes/class-gllr-settings.php:
|
2192 |
msgid "Overlay Opacity"
|
2193 |
msgstr "Opacité de la superposition"
|
2194 |
|
2195 |
-
#: includes/class-gllr-settings.php:
|
2196 |
#, php-format
|
2197 |
-
msgid "
|
2198 |
-
|
|
|
|
|
|
|
|
|
2199 |
|
2200 |
-
#: includes/class-gllr-settings.php:
|
2201 |
msgid "Slideshow"
|
2202 |
msgstr "Diaporama"
|
2203 |
|
2204 |
-
#: includes/class-gllr-settings.php:
|
2205 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
2206 |
-
msgstr "
|
|
|
|
|
2207 |
|
2208 |
-
#: includes/class-gllr-settings.php:
|
2209 |
msgid "Slideshow Duration"
|
2210 |
msgstr "Durée du diaporama"
|
2211 |
|
2212 |
-
#: includes/class-gllr-settings.php:
|
2213 |
msgid "ms"
|
2214 |
msgstr "ms"
|
2215 |
|
2216 |
-
#: includes/class-gllr-settings.php:
|
2217 |
msgid "Slideshow interval duration between two images."
|
2218 |
msgstr "Durée entre deux images dans le diaporama."
|
2219 |
|
2220 |
-
#: includes/class-gllr-settings.php:
|
2221 |
msgid "Lightbox Helpers"
|
2222 |
msgstr "Lightbox helper"
|
2223 |
|
2224 |
-
#: includes/class-gllr-settings.php:
|
2225 |
msgid "Enable to display the lightbox toolbar and arrows."
|
2226 |
msgstr "Activer pour voir les options PRO de cette extension."
|
2227 |
|
2228 |
-
#: includes/class-gllr-settings.php:
|
2229 |
msgid "Lightbox Thumbnails"
|
2230 |
msgstr "Vignettes de la lightbox"
|
2231 |
|
2232 |
-
#: includes/class-gllr-settings.php:
|
2233 |
msgid "Enable to use a lightbox helper navigation between images."
|
2234 |
-
msgstr "
|
|
|
|
|
2235 |
|
2236 |
-
#: includes/class-gllr-settings.php:
|
2237 |
msgid "Lightbox Thumbnails Position"
|
2238 |
msgstr "Position des vignettes de la lightbox"
|
2239 |
|
2240 |
-
#: includes/class-gllr-settings.php:
|
2241 |
msgid "Top"
|
2242 |
msgstr "Haut"
|
2243 |
|
2244 |
-
#: includes/class-gllr-settings.php:
|
2245 |
msgid "Lightbox Button Label"
|
2246 |
msgstr "Label du bouton pour Lightbox"
|
2247 |
|
2248 |
-
#: includes/class-gllr-settings.php:
|
2249 |
msgid "Read More"
|
2250 |
msgstr "En savoir plus..."
|
2251 |
|
2252 |
-
#: includes/class-gllr-settings.php:
|
2253 |
msgid "Download Button"
|
2254 |
msgstr "Bouton de téléchargement"
|
2255 |
|
2256 |
-
#: includes/class-gllr-settings.php:
|
2257 |
msgid "Enable to display download button."
|
2258 |
msgstr "Activer pour voir le bouton de téléchargement."
|
2259 |
|
2260 |
-
#: includes/class-gllr-settings.php:
|
2261 |
msgid "Single Lightbox"
|
2262 |
msgstr "Lightbox simple"
|
2263 |
|
2264 |
-
#: includes/class-gllr-settings.php:
|
2265 |
-
msgid "
|
2266 |
-
|
|
|
|
|
|
|
|
|
2267 |
|
2268 |
-
#: includes/class-gllr-settings.php:
|
2269 |
msgid "Social Sharing Buttons Settings"
|
2270 |
msgstr "Paramètres des boutons des réseaux sociaux"
|
2271 |
|
2272 |
-
#: includes/class-gllr-settings.php:
|
2273 |
msgid "Social Buttons"
|
2274 |
msgstr "Boutons pour les réseaux sociaux"
|
2275 |
|
2276 |
-
#: includes/class-gllr-settings.php:
|
2277 |
msgid "Enable social sharing buttons in the lightbox."
|
2278 |
-
msgstr "
|
|
|
2279 |
|
2280 |
-
#: includes/class-gllr-settings.php:
|
2281 |
msgid "Social Networks"
|
2282 |
msgstr "Réseaux sociaux"
|
2283 |
|
2284 |
-
#: includes/class-gllr-settings.php:
|
2285 |
msgid "Counter"
|
2286 |
msgstr "Compteur"
|
2287 |
|
2288 |
-
#: includes/class-gllr-settings.php:
|
2289 |
-
msgid "
|
2290 |
-
|
|
|
|
|
|
|
|
|
2291 |
|
2292 |
-
#: includes/class-gllr-settings.php:
|
2293 |
msgid "Demo Data"
|
2294 |
msgstr "Données de démonstration"
|
2295 |
|
2296 |
-
#: includes/class-gllr-settings.php:
|
2297 |
-
msgid "
|
2298 |
-
|
|
|
|
|
|
|
|
|
|
|
2299 |
|
2300 |
-
#: includes/class-gllr-settings.php:
|
2301 |
msgid "Gallery Post Type"
|
2302 |
msgstr "Type d’article pour la Galerie"
|
2303 |
|
2304 |
-
#: includes/class-gllr-settings.php:
|
2305 |
-
msgid "
|
2306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2307 |
|
2308 |
-
#: includes/class-gllr-settings.php:
|
2309 |
msgid "Gallery Slug"
|
2310 |
msgstr "Identifiant de la galerie"
|
2311 |
|
2312 |
-
#: includes/class-gllr-settings.php:
|
2313 |
msgid "Enter the unique gallery slug."
|
2314 |
msgstr "Saisir le slug unique pour la galerie."
|
2315 |
|
2316 |
-
#: includes/class-gllr-settings.php:
|
2317 |
msgid "Activate Now"
|
2318 |
msgstr "Activer maintenant"
|
2319 |
|
2320 |
-
#: includes/class-gllr-settings.php:
|
2321 |
msgid "Enable to include galleries to your website search."
|
2322 |
msgstr "Activer pour inclure les galeries dans la recherche de votre site."
|
2323 |
|
2324 |
-
#: includes/class-gllr-settings.php:
|
2325 |
#, php-format
|
2326 |
msgid "%s is required."
|
2327 |
msgstr "%s est requis"
|
@@ -2336,7 +1208,9 @@ msgstr "Supprimer les données de démonstration"
|
|
2336 |
|
2337 |
#: includes/demo-data/class-bws-demo-data.php:37
|
2338 |
msgid "Delete demo data and restore old plugin settings."
|
2339 |
-
msgstr "
|
|
|
|
|
2340 |
|
2341 |
#: includes/demo-data/class-bws-demo-data.php:50
|
2342 |
msgid "Yes, install demo data"
|
@@ -2354,6 +1228,10 @@ msgstr "Oui, supprimer les données de démonstration"
|
|
2354 |
msgid "Are you sure you want to remove demo data?"
|
2355 |
msgstr "Êtes vous sûr de vouloir supprimer les données de démonstration ?"
|
2356 |
|
|
|
|
|
|
|
|
|
2357 |
#: includes/demo-data/class-bws-demo-data.php:111
|
2358 |
msgid "Can not get demo data."
|
2359 |
msgstr "Impossible d’obtenir les données de démonstration."
|
@@ -2376,7 +1254,9 @@ msgstr "Voir les pages avec les exemples"
|
|
2376 |
|
2377 |
#: includes/demo-data/class-bws-demo-data.php:383
|
2378 |
msgid "Installation of demo data with some errors occurred."
|
2379 |
-
msgstr "
|
|
|
|
|
2380 |
|
2381 |
#: includes/demo-data/class-bws-demo-data.php:386
|
2382 |
msgid "Posts data is missing."
|
@@ -2392,13 +1272,1307 @@ msgstr "Les données de démonstration ont été supprimées."
|
|
2392 |
|
2393 |
#: includes/demo-data/class-bws-demo-data.php:519
|
2394 |
msgid "Removing demo data with some errors occurred."
|
2395 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
2396 |
|
2397 |
#: includes/demo-data/class-bws-demo-data.php:593
|
2398 |
#, php-format
|
2399 |
-
msgid "
|
2400 |
-
|
|
|
|
|
|
|
|
|
|
|
2401 |
|
2402 |
#: includes/demo-data/class-bws-demo-data.php:595
|
2403 |
msgid "Yes, install demo now"
|
2404 |
msgstr "Oui, installer les données de démonstration"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery 4.5.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:52+0200\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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_html;esc_html__;esc_html_e;"
|
14 |
+
"esc_attr__;esc_attr_e\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18 |
+
"X-Generator: Poedit 2.0.6\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
22 |
msgid "Gallery Settings"
|
23 |
msgstr "Paramètres de la galerie"
|
24 |
|
25 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Paramètres généraux"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
|
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Passer à la version PRO"
|
32 |
|
33 |
+
#: gallery-plugin.php:340
|
34 |
msgid "Return to all albums"
|
35 |
msgstr "Revenir à tous les albums"
|
36 |
|
37 |
+
#: gallery-plugin.php:354
|
38 |
msgid "See images »"
|
39 |
msgstr "Voir les images »"
|
40 |
|
41 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galeries"
|
44 |
|
45 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerie"
|
48 |
|
49 |
+
#: gallery-plugin.php:444
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Ajouter une nouvelle galerie"
|
52 |
|
53 |
+
#: gallery-plugin.php:445
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Modifier la galerie"
|
56 |
|
57 |
+
#: gallery-plugin.php:446
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nouvelle galerie"
|
60 |
|
61 |
+
#: gallery-plugin.php:447
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Voir la galerie"
|
64 |
|
65 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Rechercher des galeries"
|
68 |
|
69 |
+
#: gallery-plugin.php:449
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Pas de galerie trouvées"
|
72 |
|
73 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
74 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
75 |
+
#: gallery-plugin.php:3332
|
76 |
msgid "Gallery Categories"
|
77 |
msgstr "Catégories des galeries"
|
78 |
|
79 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
80 |
msgid "Gallery Category"
|
81 |
msgstr "Catégories des galeries"
|
82 |
|
83 |
+
#: gallery-plugin.php:473
|
84 |
msgid "Add Gallery Category"
|
85 |
msgstr "Ajouter une catégorie à la galerie"
|
86 |
|
87 |
+
#: gallery-plugin.php:474
|
88 |
msgid "Add New Gallery Category"
|
89 |
msgstr "Ajouter une nouvelle catégorie de galeries"
|
90 |
|
91 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
92 |
msgid "Edit Gallery Category"
|
93 |
msgstr "Modifier la catégorie de la galerie"
|
94 |
|
95 |
+
#: gallery-plugin.php:477
|
96 |
msgid "New Gallery Category"
|
97 |
msgstr "Ajouter une nouvelle catégorie de galeries"
|
98 |
|
99 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
100 |
msgid "View Gallery Category"
|
101 |
msgstr "Voir les catégories de galeries"
|
102 |
|
103 |
+
#: gallery-plugin.php:480
|
104 |
msgid "Find Gallery Category"
|
105 |
msgstr "Trouver une catégorie de galeries"
|
106 |
|
107 |
+
#: gallery-plugin.php:481
|
108 |
msgid "No Gallery Categories found"
|
109 |
msgstr "Aucune catégorie de galeries trouvée"
|
110 |
|
111 |
+
#: gallery-plugin.php:482
|
112 |
msgid "No Gallery Categories found in Trash"
|
113 |
msgstr "Pas de catégorie des galeries trouvée dans la poubelle"
|
114 |
|
115 |
+
#: gallery-plugin.php:483
|
116 |
msgid "Parent Gallery Category"
|
117 |
msgstr "Catégorie parente des galeries"
|
118 |
|
119 |
+
#: gallery-plugin.php:484
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
msgstr "Navigation dans la liste des catégories de galeries"
|
122 |
|
123 |
+
#: gallery-plugin.php:485
|
124 |
msgid "Gallery Categories list"
|
125 |
msgstr "Liste des catégories des galeries"
|
126 |
|
127 |
+
#: gallery-plugin.php:533
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Code court de la galerie"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
+
msgid ""
|
133 |
+
"Add a single gallery with images to your posts, pages, custom post types or "
|
134 |
+
"widgets by using the following shortcode:"
|
135 |
+
msgstr ""
|
136 |
+
"Ajouter une galerie avec des images dans vos articles, pages, types d’"
|
137 |
+
"articles personnalisés ou widgets en utilisant le code court :"
|
138 |
|
139 |
+
#: gallery-plugin.php:546
|
140 |
+
msgid ""
|
141 |
+
"Add a gallery cover including featured image, description, and a link to "
|
142 |
+
"your single gallery using the following shortcode:"
|
143 |
+
msgstr ""
|
144 |
+
"Ajouter une présentation de votre galerie avec une image à la une, une "
|
145 |
+
"description et un lien vers votre galerie en utilisant le code court :"
|
146 |
|
147 |
+
#: gallery-plugin.php:659
|
148 |
msgid "Note"
|
149 |
msgstr "Note"
|
150 |
|
151 |
+
#: gallery-plugin.php:659
|
152 |
#, php-format
|
153 |
+
msgid ""
|
154 |
+
"When deleting a category, the galleries that belong to this category will "
|
155 |
+
"not be deleted. These galleries will be moved to the category %s."
|
156 |
+
msgstr ""
|
157 |
+
"Quand vous supprimer une catégorie, les galeries qui avaient cette catégorie "
|
158 |
+
"ne sont pas supprimées. Ces galeries seront affectées à la catégorie %s."
|
159 |
+
|
160 |
+
#: gallery-plugin.php:670
|
161 |
+
#, fuzzy
|
162 |
+
#| msgid "Parent Gallery Category"
|
163 |
+
msgid "Sort Galleries in Category by"
|
164 |
+
msgstr "Catégorie parente des galeries"
|
165 |
+
|
166 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
167 |
+
#: includes/class-gllr-settings.php:711
|
168 |
+
msgid "Gallery ID"
|
169 |
+
msgstr "Galerie ID"
|
170 |
+
|
171 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
172 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
173 |
+
#: includes/class-gllr-settings.php:712
|
174 |
+
msgid "Title"
|
175 |
+
msgstr "Titre"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
178 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
179 |
+
msgid "Date"
|
180 |
+
msgstr "Date"
|
181 |
+
|
182 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
183 |
+
#: includes/class-gllr-settings.php:714
|
184 |
+
msgid "Last modified date"
|
185 |
+
msgstr "Date de dernière modification"
|
186 |
+
|
187 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
188 |
+
#: includes/class-gllr-settings.php:715
|
189 |
+
msgid "Comment count"
|
190 |
+
msgstr "Nombre de commentaires"
|
191 |
+
|
192 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
193 |
+
#: includes/class-gllr-settings.php:716
|
194 |
+
msgid "\"Order\" field on the gallery edit page"
|
195 |
+
msgstr "\"Ordonner\" les champs de la page de modification de la galerie"
|
196 |
+
|
197 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
198 |
+
#: includes/class-gllr-settings.php:717
|
199 |
+
msgid "Author"
|
200 |
+
msgstr "Auteur"
|
201 |
+
|
202 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
203 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
204 |
+
msgid "Random"
|
205 |
+
msgstr "Aléatoire"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
208 |
+
#, fuzzy
|
209 |
+
#| msgid "Settings"
|
210 |
+
msgid "Plugin Settings"
|
211 |
+
msgstr "Paramètres"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
214 |
+
#, fuzzy
|
215 |
+
#| msgid "Select galleries sorting order in your galleries page."
|
216 |
+
msgid "Select galleries sorting order in your category."
|
217 |
+
msgstr ""
|
218 |
+
"Choisissez l’ordre de tri de vos galeries dans la page des albums."
|
219 |
|
220 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
221 |
msgid "Shortcode"
|
222 |
msgstr "Code court"
|
223 |
|
224 |
+
#: gallery-plugin.php:749
|
225 |
msgid "All Gallery Categories"
|
226 |
msgstr "Toutes les catégories de galeries"
|
227 |
|
228 |
+
#: gallery-plugin.php:827
|
229 |
msgid "You can't delete default gallery category."
|
230 |
msgstr "Vous ne pouvez pas supprimer la catégorie par défaut des galeries."
|
231 |
|
232 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
233 |
msgid "Sorry, nothing found."
|
234 |
msgstr "Désolé, rien n’a été trouvé."
|
235 |
|
236 |
+
#: gallery-plugin.php:1717
|
237 |
msgid "Featured Image"
|
238 |
msgstr "Image à la une"
|
239 |
|
240 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Images"
|
242 |
msgstr "Images"
|
243 |
|
244 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
#, php-format
|
246 |
msgid "%s Settings"
|
247 |
msgstr "%s paramètres"
|
248 |
|
249 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
|
|
|
|
250 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
251 |
msgid "Settings"
|
252 |
msgstr "Paramètres"
|
253 |
|
254 |
+
#: gallery-plugin.php:1838
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:1839
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:1878
|
263 |
msgid "Updating images..."
|
264 |
msgstr "Mise à jour des images..."
|
265 |
|
266 |
+
#: gallery-plugin.php:1879
|
267 |
msgid "No images found."
|
268 |
msgstr "Pas d’image trouvée."
|
269 |
|
270 |
+
#: gallery-plugin.php:1880
|
271 |
msgid "All images were updated."
|
272 |
msgstr "Toutes les images ont été mises à jour."
|
273 |
|
274 |
+
#: gallery-plugin.php:1881
|
275 |
msgid "Error."
|
276 |
msgstr "Erreur."
|
277 |
|
278 |
+
#: gallery-plugin.php:1893
|
279 |
msgid ""
|
280 |
"You are about to remove these items from this gallery.\n"
|
281 |
" 'Cancel' to stop, 'OK' to delete."
|
283 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
284 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
285 |
|
286 |
+
#: gallery-plugin.php:1894
|
287 |
msgid ""
|
288 |
"You are about to remove this image from the gallery.\n"
|
289 |
" 'Cancel' to stop, 'OK' to delete."
|
291 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
292 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
293 |
|
294 |
+
#: gallery-plugin.php:1895
|
295 |
+
msgid ""
|
296 |
+
"Switching to another mode, all unsaved data will be lost. Save data before "
|
297 |
+
"switching?"
|
298 |
+
msgstr ""
|
299 |
+
"Basculer vers un autre mode, toutes les données non enregistrées seront "
|
300 |
+
"perdues. Enregistrer les données avant de basculer ?"
|
301 |
|
302 |
+
#: gallery-plugin.php:1896
|
303 |
msgid "Insert Media"
|
304 |
msgstr "Insérer un média"
|
305 |
|
306 |
+
#: gallery-plugin.php:1897
|
307 |
msgid "Insert"
|
308 |
msgstr "Insérer"
|
309 |
|
310 |
+
#: gallery-plugin.php:1898
|
311 |
+
#, fuzzy
|
312 |
+
#| msgid "File %s edited successfully."
|
313 |
+
msgid "Gallery has been successfully added!"
|
314 |
+
msgstr "Le fichier %s a été modifié avec succès."
|
315 |
+
|
316 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
317 |
msgid "Image size not defined"
|
318 |
msgstr "Taille de l’image non définie"
|
319 |
|
320 |
+
#: gallery-plugin.php:2455
|
321 |
+
msgid ""
|
322 |
+
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
323 |
+
"reload images manually."
|
324 |
+
msgstr ""
|
325 |
+
"Il n’est possible de mettre à jour que les images de type PNG, JPEG, "
|
326 |
+
"GIF, WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
327 |
|
328 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
329 |
msgid "Invalid path"
|
330 |
msgstr "Chemin invalide"
|
331 |
|
332 |
+
#: gallery-plugin.php:2607
|
333 |
msgid "List View"
|
334 |
msgstr "Vue en mode liste"
|
335 |
|
336 |
+
#: gallery-plugin.php:2608
|
337 |
msgid "Grid View"
|
338 |
msgstr "Vue en mode grille"
|
339 |
|
340 |
+
#: gallery-plugin.php:2665
|
341 |
msgid "Filter"
|
342 |
msgstr "Filtrer"
|
343 |
|
344 |
+
#: gallery-plugin.php:2669
|
345 |
msgid "Empty Trash"
|
346 |
msgstr "Vider la corbeille"
|
347 |
|
348 |
+
#: gallery-plugin.php:2692
|
349 |
msgid "No images found"
|
350 |
msgstr "Pas d’image trouvée"
|
351 |
|
352 |
+
#: gallery-plugin.php:2745
|
353 |
msgid "Select bulk action"
|
354 |
msgstr "Sélectionne l’action en masse"
|
355 |
|
356 |
+
#: gallery-plugin.php:2747
|
357 |
msgid "Bulk Actions"
|
358 |
msgstr "Actions en masse"
|
359 |
|
360 |
+
#: gallery-plugin.php:2757
|
361 |
msgid "Apply"
|
362 |
msgstr "Appliquer"
|
363 |
|
364 |
+
#: gallery-plugin.php:2764
|
365 |
msgid "Delete from Gallery"
|
366 |
msgstr "Supprimer de la galerie"
|
367 |
|
368 |
+
#: gallery-plugin.php:2773
|
369 |
msgid "Bulk Select"
|
370 |
msgstr "Sélection en masse"
|
371 |
|
372 |
+
#: gallery-plugin.php:2774
|
373 |
msgid "Cancel Selection"
|
374 |
msgstr "Annuler la sélection"
|
375 |
|
376 |
+
#: gallery-plugin.php:2775
|
377 |
msgid "Delete Selected"
|
378 |
msgstr "Supprimer la sélection"
|
379 |
|
380 |
+
#: gallery-plugin.php:2786
|
381 |
msgid "File"
|
382 |
msgstr "Fichier"
|
383 |
|
384 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
385 |
msgid "Dimensions"
|
386 |
msgstr "Dimensions"
|
387 |
|
388 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
389 |
msgid "Alt Text"
|
390 |
msgstr "Alt Texte"
|
391 |
|
392 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
393 |
msgid "URL"
|
394 |
msgstr "URL"
|
395 |
|
396 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
397 |
+
msgid ""
|
398 |
+
"Enter your custom URL to link this image to other page or file. Leave blank "
|
399 |
+
"to open a full size image."
|
400 |
+
msgstr ""
|
401 |
+
"Saisir votre URL personnalisée pour faire un lien de cette image vers une "
|
402 |
+
"page ou un article. Laisser vide pour ouvrir l’image en plein écran."
|
403 |
|
404 |
+
#: gallery-plugin.php:2872
|
405 |
msgid "Remove Image from Gallery"
|
406 |
msgstr "Supprimer les images de la galerie"
|
407 |
|
408 |
+
#: gallery-plugin.php:2875
|
409 |
msgid "Edit Image Info"
|
410 |
msgstr "Modifier les informations de l’image"
|
411 |
|
412 |
+
#: gallery-plugin.php:2876
|
413 |
msgid "Deselect"
|
414 |
msgstr "Désélectionner"
|
415 |
|
416 |
+
#: gallery-plugin.php:2888
|
417 |
msgid "File name"
|
418 |
msgstr "Nom du fichier"
|
419 |
|
420 |
+
#: gallery-plugin.php:2889
|
421 |
msgid "File type"
|
422 |
msgstr "Type de fichier"
|
423 |
|
424 |
+
#: gallery-plugin.php:2914
|
425 |
msgid "Description"
|
426 |
msgstr "Description"
|
427 |
|
428 |
+
#: gallery-plugin.php:2920
|
429 |
msgid "Lightbox Button URL"
|
430 |
msgstr "URL du bouton pour Lightbox"
|
431 |
|
432 |
+
#: gallery-plugin.php:2927
|
433 |
msgid "New Tab"
|
434 |
msgstr "Nouvel onglet"
|
435 |
|
436 |
+
#: gallery-plugin.php:2929
|
437 |
msgid "Enable to open URLs above in a new tab."
|
438 |
msgstr "Activer pour ouvrir l’URL dans un nouvel onglet."
|
439 |
|
440 |
+
#: gallery-plugin.php:2934
|
441 |
msgid "Go Pro"
|
442 |
msgstr "Passer à la version PRO"
|
443 |
|
444 |
+
#: gallery-plugin.php:2940
|
445 |
msgid "Edit more details"
|
446 |
msgstr "Modifier avec plus de détails"
|
447 |
|
448 |
+
#: gallery-plugin.php:2942
|
449 |
msgid "Remove from Gallery"
|
450 |
msgstr "Supprimer de la galerie"
|
451 |
|
452 |
+
#: gallery-plugin.php:2978
|
453 |
#, php-format
|
454 |
msgid "Select %s"
|
455 |
msgstr "Sélectionner %s"
|
456 |
|
457 |
+
#: gallery-plugin.php:2991
|
458 |
#, php-format
|
459 |
msgid "Edit “%s”"
|
460 |
msgstr "Pré-visualiser “%s”"
|
461 |
|
462 |
+
#: gallery-plugin.php:2999
|
463 |
msgid "Edit Attachment Info"
|
464 |
msgstr "Modifier les informations"
|
465 |
|
466 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
467 |
msgid "Edit"
|
468 |
msgstr "Modifier"
|
469 |
|
470 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
471 |
msgid "Trash"
|
472 |
msgstr "Poubelle"
|
473 |
|
474 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
475 |
msgid "Delete Permanently"
|
476 |
msgstr "Supprimer de manière définitive"
|
477 |
|
478 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
479 |
#, php-format
|
480 |
msgid "View “%s”"
|
481 |
msgstr "Pré-visualiser “%s”"
|
482 |
|
483 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
484 |
msgid "View"
|
485 |
msgstr "Voir"
|
486 |
|
487 |
+
#: gallery-plugin.php:3048
|
488 |
msgid "Attach"
|
489 |
msgstr "Attacher"
|
490 |
|
491 |
+
#: gallery-plugin.php:3056
|
492 |
msgid "Restore"
|
493 |
msgstr "Remettre"
|
494 |
|
495 |
+
#: gallery-plugin.php:3086
|
496 |
msgid "A list or dropdown of Gallery categories."
|
497 |
msgstr "Une liste ou une liste déroulante des catégories de galeries."
|
498 |
|
499 |
+
#: gallery-plugin.php:3131
|
500 |
msgid "Select Gallery Category"
|
501 |
msgstr "Choisir une catégorie pour la galerie"
|
502 |
|
503 |
+
#: gallery-plugin.php:3189
|
504 |
msgid "Title:"
|
505 |
msgstr "Titre :"
|
506 |
|
507 |
+
#: gallery-plugin.php:3192
|
508 |
msgid "Display as dropdown"
|
509 |
msgstr "Montrer sous la forme d’une liste déroulante"
|
510 |
|
511 |
+
#: gallery-plugin.php:3194
|
512 |
msgid "Show gallery counts"
|
513 |
msgstr "Monter le nombre de galeries"
|
514 |
|
515 |
+
#: gallery-plugin.php:3196
|
516 |
msgid "Show hierarchy"
|
517 |
msgstr "Voir la hiérarchie"
|
518 |
|
519 |
+
#: gallery-plugin.php:3312
|
520 |
msgid "Warning"
|
521 |
msgstr "Avertissement"
|
522 |
|
523 |
+
#: gallery-plugin.php:3312
|
524 |
msgid "You can add only images to the gallery"
|
525 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
526 |
|
527 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
528 |
msgid "no title"
|
529 |
msgstr "Pas de titre"
|
530 |
|
531 |
+
#: gallery-plugin.php:3377
|
532 |
+
msgid ""
|
533 |
+
"Display an album image with the description and the link to a single gallery "
|
534 |
+
"page"
|
535 |
+
msgstr ""
|
536 |
+
"Afficher une image pour l’album avec la description et un lien vers "
|
537 |
+
"une page contenant la galerie"
|
538 |
|
539 |
+
#: gallery-plugin.php:3381
|
540 |
msgid "Sorry, no gallery found."
|
541 |
msgstr "Désolé, rien n’a été trouvé."
|
542 |
|
543 |
+
#: includes/class-gllr-settings.php:31
|
544 |
+
msgid "Cover"
|
545 |
+
msgstr "Couverture"
|
546 |
+
|
547 |
+
#: includes/class-gllr-settings.php:32
|
548 |
+
msgid "Lightbox"
|
549 |
+
msgstr "Lightbox"
|
550 |
|
551 |
+
#: includes/class-gllr-settings.php:33
|
552 |
+
msgid "Social"
|
553 |
+
msgstr "Social"
|
554 |
|
555 |
+
#: includes/class-gllr-settings.php:34
|
556 |
+
msgid "Misc"
|
557 |
+
msgstr "Divers"
|
558 |
|
559 |
+
#: includes/class-gllr-settings.php:35
|
560 |
+
msgid "Custom Code"
|
561 |
+
msgstr "Code personnalisé"
|
562 |
|
563 |
+
#: includes/class-gllr-settings.php:36
|
564 |
+
msgid "Import / Export"
|
565 |
+
msgstr "Importer / Exporter"
|
566 |
|
567 |
+
#: includes/class-gllr-settings.php:37
|
568 |
+
msgid "License Key"
|
569 |
+
msgstr "Clé de licence"
|
|
|
570 |
|
571 |
+
#: includes/class-gllr-settings.php:244
|
572 |
+
msgid "Settings saved"
|
573 |
+
msgstr "Paramètres enregistrés."
|
574 |
|
575 |
+
#: includes/class-gllr-settings.php:256
|
576 |
+
msgid "Please, enable JavaScript in Your browser."
|
577 |
+
msgstr "Merci d’activer JavaScript dans votre navigateur."
|
578 |
|
579 |
+
#: includes/class-gllr-settings.php:260
|
580 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
581 |
+
msgstr ""
|
582 |
+
"La taille personnalisée des images a été modifiée. Vous devez mettre à jour "
|
583 |
+
"les images dans les galeries."
|
584 |
|
585 |
+
#: includes/class-gllr-settings.php:261
|
586 |
+
msgid "Update Images"
|
587 |
+
msgstr "Mise à jour des images"
|
588 |
|
589 |
+
#: includes/class-gllr-settings.php:276
|
590 |
+
msgid "Gallery Images"
|
591 |
+
msgstr "Galerie d’images"
|
592 |
|
593 |
+
#: includes/class-gllr-settings.php:281
|
594 |
+
msgid "Images adding requires JavaScript."
|
595 |
+
msgstr "Ajouter des images nécessite JavaScript."
|
596 |
|
597 |
+
#: includes/class-gllr-settings.php:284
|
598 |
+
msgid "Add Media"
|
599 |
+
msgstr "Ajouter un média"
|
600 |
|
601 |
+
#: includes/class-gllr-settings.php:293
|
602 |
+
msgid "The grid view for the Gallery images requires JavaScript."
|
603 |
+
msgstr ""
|
604 |
+
"La vue en mode grille pour les images des galeries nécessite Java-script."
|
605 |
|
606 |
+
#: includes/class-gllr-settings.php:293
|
607 |
+
msgid "Switch to the list view"
|
608 |
+
msgstr "Basculer vers une vue en mode liste"
|
609 |
|
610 |
+
#: includes/class-gllr-settings.php:320
|
611 |
+
#, fuzzy
|
612 |
+
#| msgid "Add Gallery Category"
|
613 |
+
msgid "Add Gallery to the Slider"
|
614 |
+
msgstr "Ajouter une catégorie à la galerie"
|
615 |
|
616 |
+
#: includes/class-gllr-settings.php:332
|
617 |
+
msgid "Activate"
|
618 |
+
msgstr "Activé"
|
|
|
619 |
|
620 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
621 |
+
msgid "Install Now"
|
622 |
+
msgstr "Installer maintenant"
|
|
|
623 |
|
624 |
+
#: includes/class-gllr-settings.php:337
|
625 |
+
#, fuzzy
|
626 |
+
#| msgid "Add New"
|
627 |
+
msgid "Add"
|
628 |
+
msgstr "Ajouter"
|
629 |
|
630 |
+
#: includes/class-gllr-settings.php:340
|
631 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
632 |
+
msgstr ""
|
633 |
|
634 |
+
#: includes/class-gllr-settings.php:351
|
635 |
+
msgid "Single Gallery Settings"
|
636 |
+
msgstr "Paramètres de la galerie"
|
637 |
|
638 |
+
#: includes/class-gllr-settings.php:353
|
639 |
#, php-format
|
640 |
+
msgid "Enable to configure single gallery settings and disable %s."
|
641 |
+
msgstr ""
|
642 |
+
"Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
|
643 |
|
644 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
645 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
646 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
647 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
648 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
649 |
+
msgid "Close"
|
650 |
+
msgstr "Fermer"
|
651 |
|
652 |
+
#: includes/class-gllr-settings.php:369
|
653 |
+
msgid "Gallery Layout"
|
654 |
+
msgstr "Mise en page de la galerie"
|
655 |
|
656 |
+
#: includes/class-gllr-settings.php:374
|
657 |
+
msgid "Grid"
|
658 |
+
msgstr "Grille"
|
|
|
|
|
|
|
659 |
|
660 |
+
#: includes/class-gllr-settings.php:380
|
661 |
+
msgid "Masonry"
|
662 |
+
msgstr "Mur"
|
663 |
|
664 |
+
#: includes/class-gllr-settings.php:393
|
665 |
+
msgid "Number of Columns"
|
666 |
+
msgstr "Nombre de colonnes"
|
667 |
|
668 |
+
#: includes/class-gllr-settings.php:396
|
669 |
+
#, php-format
|
670 |
+
msgid "Number of gallery columns (default is %s)."
|
671 |
+
msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
|
672 |
|
673 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
674 |
+
msgid "Image Size"
|
675 |
+
msgstr "Taille de l’image"
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
678 |
+
msgid "Custom"
|
679 |
+
msgstr "Personnalisé"
|
680 |
|
681 |
+
#: includes/class-gllr-settings.php:408
|
682 |
+
msgid ""
|
683 |
+
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
684 |
+
msgstr ""
|
685 |
+
"Taille maximum d’une image dans la galerie. \"Personnalisé\" utilise "
|
686 |
+
"les valeurs définies pour les images."
|
687 |
|
688 |
+
#: includes/class-gllr-settings.php:412
|
689 |
+
msgid "Custom Image Size"
|
690 |
+
msgstr "Taille de l’image personalisée"
|
691 |
|
692 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
693 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
694 |
+
msgid "px"
|
695 |
+
msgstr "px"
|
696 |
|
697 |
+
#: includes/class-gllr-settings.php:415
|
698 |
+
msgid ""
|
699 |
+
"Adjust these values based on the number of columns in your gallery. This "
|
700 |
+
"won't effect the full size of your images in the lightbox."
|
701 |
+
msgstr ""
|
702 |
+
"Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. "
|
703 |
+
"Cela ne changera pas la taille maximum de vos images dans la lightbox."
|
704 |
|
705 |
+
#: includes/class-gllr-settings.php:426
|
706 |
+
msgid "Crop Images"
|
707 |
+
msgstr "Réduire les images"
|
|
|
708 |
|
709 |
+
#: includes/class-gllr-settings.php:428
|
710 |
+
msgid ""
|
711 |
+
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
712 |
+
"to resize images automatically using their aspect ratio."
|
713 |
+
msgstr ""
|
714 |
+
"Activer pour réduire les images en utilisant les tailles définies dans les "
|
715 |
+
"paramètres de personnalisation. Désactiver pour restaurer les images "
|
716 |
+
"automatiquement en utilisant leur aspect d’origine."
|
717 |
|
718 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
719 |
+
msgid "Crop Position"
|
720 |
+
msgstr "Position pour la réduction"
|
721 |
|
722 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
723 |
+
msgid "Select crop position base (by default: center)."
|
724 |
+
msgstr ""
|
725 |
+
"Sélectionner la position de base pour la réduction (par défaut le centre)."
|
726 |
|
727 |
+
#: includes/class-gllr-settings.php:457
|
728 |
+
msgid "Image Title"
|
729 |
+
msgstr "Titre de l’image"
|
|
|
|
|
730 |
|
731 |
+
#: includes/class-gllr-settings.php:459
|
732 |
+
msgid "Enable to display image title along with the gallery image."
|
733 |
+
msgstr "Activer pour afficher le titre avec l’image dans la galerie."
|
734 |
|
735 |
+
#: includes/class-gllr-settings.php:470
|
736 |
+
msgid "Image Title Position"
|
737 |
+
msgstr "Position du titre de l’image"
|
|
|
738 |
|
739 |
+
#: includes/class-gllr-settings.php:475
|
740 |
+
msgid "Under image"
|
741 |
+
msgstr "Sous l’image"
|
742 |
|
743 |
+
#: includes/class-gllr-settings.php:481
|
744 |
+
msgid "On mouse hover"
|
745 |
+
msgstr "Par survol de la souris"
|
746 |
|
747 |
+
#: includes/class-gllr-settings.php:494
|
748 |
+
msgid "Image Border"
|
749 |
+
msgstr "Image avec bordure"
|
750 |
|
751 |
+
#: includes/class-gllr-settings.php:496
|
752 |
+
msgid ""
|
753 |
+
"Enable images border using the styles defined for Image Border Size and "
|
754 |
+
"Color options."
|
755 |
+
msgstr ""
|
756 |
+
"Activer les bordures autour des images en utilisant la largeur et la couleur "
|
757 |
+
"définies."
|
758 |
|
759 |
+
#: includes/class-gllr-settings.php:500
|
760 |
+
msgid "Image Border Size"
|
761 |
+
msgstr "Taille de la bordure de l’image"
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:503
|
764 |
+
#, php-format
|
765 |
+
msgid "Gallery image border width (default is %s)"
|
766 |
+
msgstr "Largeur de la bordure pour les images (par défaut %s)"
|
|
|
|
|
|
|
767 |
|
768 |
+
#: includes/class-gllr-settings.php:507
|
769 |
+
msgid "Image Border Color"
|
770 |
+
msgstr "Choisir une couleur pour la bordure"
|
771 |
|
772 |
+
#: includes/class-gllr-settings.php:520
|
773 |
+
msgid "Pagination"
|
774 |
+
msgstr "Pagination"
|
775 |
|
776 |
+
#: includes/class-gllr-settings.php:523
|
777 |
+
msgid ""
|
778 |
+
"Enable pagination for images to limit number of images displayed on a single "
|
779 |
+
"gallery page."
|
780 |
+
msgstr ""
|
781 |
+
"Activer la pagination pour les images afin de limiter le nombre d’"
|
782 |
+
"images affichées sur une seule page dans la galerie."
|
783 |
|
784 |
+
#: includes/class-gllr-settings.php:527
|
785 |
+
msgid "Number of Images"
|
786 |
+
msgstr "Nombre d’images"
|
787 |
+
|
788 |
+
#: includes/class-gllr-settings.php:530
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
#, php-format
|
790 |
+
msgid "Number of images displayed per page (default is %d)."
|
791 |
+
msgstr "Nombre d’images affichées par page (par défaut %d)."
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:540
|
794 |
+
msgid "Sort Images by"
|
795 |
+
msgstr "Trier les images par"
|
796 |
|
797 |
+
#: includes/class-gllr-settings.php:543
|
798 |
+
msgid "Manually (default)"
|
799 |
+
msgstr "Manuel (défaut)"
|
800 |
|
801 |
+
#: includes/class-gllr-settings.php:544
|
802 |
+
msgid "Image ID"
|
803 |
+
msgstr "Image ID"
|
804 |
|
805 |
+
#: includes/class-gllr-settings.php:545
|
806 |
+
msgid "Name"
|
807 |
+
msgstr "Nom"
|
808 |
|
809 |
+
#: includes/class-gllr-settings.php:549
|
810 |
+
msgid ""
|
811 |
+
"Select images sorting order in your gallery. By default, you can sort images "
|
812 |
+
"manually in the images tab."
|
813 |
+
msgstr ""
|
814 |
+
"Choisir l’ordre de tri des images dans votre galerie. Par défaut, vous "
|
815 |
+
"pouvez trier les images manuellement dans l’onglet des images. "
|
816 |
|
817 |
+
#: includes/class-gllr-settings.php:553
|
818 |
+
msgid "Arrange Images by"
|
819 |
+
msgstr "Trier les images par"
|
820 |
|
821 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
822 |
+
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
823 |
+
msgstr "Ascendant (par ex 1, 2, 3; a, b, c)"
|
824 |
|
825 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
826 |
+
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
827 |
+
msgstr "Descendant (par ex 1, 2, 3; a, b, c)"
|
828 |
|
829 |
+
#: includes/class-gllr-settings.php:562
|
830 |
+
msgid "Back Link"
|
831 |
+
msgstr "Lien de retour"
|
832 |
|
833 |
+
#: includes/class-gllr-settings.php:564
|
834 |
+
msgid ""
|
835 |
+
"Enable to show a back link in a single gallery page which navigate to a "
|
836 |
+
"previous page."
|
837 |
+
msgstr ""
|
838 |
+
"Activer pour afficher un lien de retour dans la page d’une galerie "
|
839 |
+
"vers la page précédente."
|
840 |
|
841 |
+
#: includes/class-gllr-settings.php:568
|
842 |
+
msgid "Back Link URL"
|
843 |
+
msgstr "L’URL pour le lien de retour"
|
844 |
|
845 |
+
#: includes/class-gllr-settings.php:571
|
846 |
+
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
847 |
+
msgstr ""
|
848 |
+
"Lien de retour personnalisé vers une page. Laisser vide pour utiliser le "
|
849 |
+
"modèle de page de galerie."
|
850 |
|
851 |
+
#: includes/class-gllr-settings.php:575
|
852 |
+
msgid "Back Link Label"
|
853 |
+
msgstr "Libellé pour le lien de retour"
|
854 |
|
855 |
+
#: includes/class-gllr-settings.php:581
|
856 |
+
msgid "Back Link with Shortcode"
|
857 |
+
msgstr "Lien de retour dans le code court"
|
858 |
|
859 |
+
#: includes/class-gllr-settings.php:584
|
860 |
+
msgid "Enable to display a back link on a page where shortcode is used."
|
861 |
+
msgstr ""
|
862 |
+
"Activer pour afficher le lien de retour vers la page où le code court est "
|
863 |
+
"utilisé."
|
864 |
|
865 |
+
#: includes/class-gllr-settings.php:595
|
866 |
+
msgid "Cover Settings"
|
867 |
+
msgstr "Paramètres de couverture"
|
868 |
|
869 |
+
#: includes/class-gllr-settings.php:600
|
870 |
+
msgid "Galleries Page"
|
871 |
+
msgstr "Page des galeries"
|
872 |
|
873 |
+
#: includes/class-gllr-settings.php:608
|
874 |
+
msgid "Base page where all existing galleries will be displayed."
|
875 |
+
msgstr "Page de base où toutes les galeries existantes seront affichées."
|
876 |
|
877 |
+
#: includes/class-gllr-settings.php:612
|
878 |
+
msgid "Albums Displaying"
|
879 |
+
msgstr "Affichage des albums"
|
880 |
|
881 |
+
#: includes/class-gllr-settings.php:615
|
882 |
+
msgid "Column"
|
883 |
+
msgstr "Colonnes"
|
884 |
|
885 |
+
#: includes/class-gllr-settings.php:616
|
886 |
+
msgid "Rows"
|
887 |
+
msgstr "Lignes"
|
|
|
888 |
|
889 |
+
#: includes/class-gllr-settings.php:618
|
890 |
+
msgid "Select the way galleries will be displayed on the Galleries Page."
|
891 |
+
msgstr ""
|
892 |
+
"Choisisser la manière qui sera utilisé pour l’affichage des galeries "
|
893 |
+
"dans la page."
|
894 |
|
895 |
+
#: includes/class-gllr-settings.php:622
|
896 |
+
msgid "Column Alignment"
|
897 |
+
msgstr "Alignement des colonnes"
|
898 |
|
899 |
+
#: includes/class-gllr-settings.php:625
|
900 |
+
msgid "Left"
|
901 |
+
msgstr "Gauche"
|
|
|
902 |
|
903 |
+
#: includes/class-gllr-settings.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
msgid "Right"
|
905 |
msgstr "Droite"
|
906 |
|
907 |
+
#: includes/class-gllr-settings.php:627
|
908 |
msgid "Center"
|
909 |
msgstr "Centré"
|
910 |
|
911 |
+
#: includes/class-gllr-settings.php:629
|
912 |
msgid "Select the column alignment."
|
913 |
msgstr "Choisir l’alignement des colonnes."
|
914 |
|
915 |
+
#: includes/class-gllr-settings.php:633
|
916 |
msgid "Cover Image Size"
|
917 |
msgstr "Taille de l’image de couverture"
|
918 |
|
919 |
+
#: includes/class-gllr-settings.php:641
|
920 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
921 |
+
msgstr ""
|
922 |
+
"Taille maximum de l’image de couverture. Utiliser les dimensions "
|
923 |
+
"personnalisées de l’image."
|
924 |
|
925 |
+
#: includes/class-gllr-settings.php:645
|
926 |
msgid "Custom Cover Image Size"
|
927 |
msgstr "Taille personnalisée de l’image de couverture"
|
928 |
|
929 |
+
#: includes/class-gllr-settings.php:658
|
930 |
msgid "Crop Cover Images"
|
931 |
msgstr "Réduire les images de couverture"
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:660
|
934 |
+
msgid ""
|
935 |
+
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
936 |
+
"Disable to resize images automatically using their aspect ratio."
|
937 |
+
msgstr ""
|
938 |
+
"Activer pour réduire les images de couverture en utilisant la taille définie "
|
939 |
+
"dans le champ de personnalisation. Désactiver pour restaurer les images "
|
940 |
+
"automatiquement en utilisant leur aspect d’origine."
|
941 |
|
942 |
+
#: includes/class-gllr-settings.php:689
|
943 |
msgid "Cover Image Border"
|
944 |
msgstr "Bordure de l’image de couverture"
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:691
|
947 |
+
msgid ""
|
948 |
+
"Enable cover images border using the styles defined for Image Border Size "
|
949 |
+
"and Color."
|
950 |
+
msgstr ""
|
951 |
+
"Activer les bordures de l’image de couverture avec la taille et la "
|
952 |
+
"couleur définies."
|
953 |
|
954 |
+
#: includes/class-gllr-settings.php:695
|
955 |
msgid "Cover Image Border Size"
|
956 |
msgstr "Taille de la bordure de l’image de couverture"
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:698
|
959 |
#, php-format
|
960 |
msgid "Cover image border width (default is %s)"
|
961 |
msgstr "Taille de la bordure de l’image de couverture (par défaut %s)"
|
962 |
|
963 |
+
#: includes/class-gllr-settings.php:702
|
964 |
msgid "Cover Image Border Color"
|
965 |
msgstr "Couleur de la bordure de l’image de couverture"
|
966 |
|
967 |
+
#: includes/class-gllr-settings.php:708
|
968 |
msgid "Sort Albums by"
|
969 |
msgstr "Trier les albums par"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
msgid "Select galleries sorting order in your galleries page."
|
973 |
+
msgstr ""
|
974 |
+
"Choisissez l’ordre de tri de vos galeries dans la page des albums."
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:724
|
977 |
msgid "Arrange Albums by"
|
978 |
msgstr "Tirer les albums par"
|
979 |
|
980 |
+
#: includes/class-gllr-settings.php:733
|
981 |
msgid "Read More Link Label"
|
982 |
msgstr "Texte pour le lien \"En savoir plus\""
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:746
|
985 |
msgid "Instant Lightbox"
|
986 |
msgstr "Lightbox rapide"
|
987 |
|
988 |
+
#: includes/class-gllr-settings.php:749
|
989 |
+
msgid ""
|
990 |
+
"Enable to display all images in the lightbox after clicking cover image or "
|
991 |
+
"URL instead of going to a single gallery page."
|
992 |
+
msgstr ""
|
993 |
+
"Activer pour afficher toutes les images dans une 'lightbox' après avoir "
|
994 |
+
"cliquer sur l’image de couverture ou le lien au lieu d’une page "
|
995 |
+
"avec la galerie"
|
996 |
|
997 |
+
#: includes/class-gllr-settings.php:763
|
998 |
msgid "Lightbox Settings"
|
999 |
msgstr "Paramètres lightbox"
|
1000 |
|
1001 |
+
#: includes/class-gllr-settings.php:768
|
1002 |
+
msgid "Unclickable Thumbnail Images"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: includes/class-gllr-settings.php:771
|
1006 |
+
msgid ""
|
1007 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1008 |
+
"URLs. This option also disables Lightbox."
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: includes/class-gllr-settings.php:775
|
1012 |
msgid "Enable Lightbox"
|
1013 |
msgstr "Activer Lightbox"
|
1014 |
|
1015 |
+
#: includes/class-gllr-settings.php:778
|
1016 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1017 |
+
msgstr ""
|
1018 |
+
"Activer pour voir la lightbox lorsque l’on clique sur une image de la "
|
1019 |
+
"galerie."
|
1020 |
|
1021 |
+
#: includes/class-gllr-settings.php:796
|
1022 |
+
msgid ""
|
1023 |
+
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1024 |
+
"will display the original, full size image."
|
1025 |
+
msgstr ""
|
1026 |
+
"Choisissez la taille maximum de l’image pour la lightbox. \"Défaut\" "
|
1027 |
+
"affichera l’image d’origine dans sa taille d’origine."
|
1028 |
|
1029 |
+
#: includes/class-gllr-settings.php:800
|
1030 |
msgid "Overlay Color"
|
1031 |
msgstr "Couleur de superposition"
|
1032 |
|
1033 |
+
#: includes/class-gllr-settings.php:806
|
1034 |
msgid "Overlay Opacity"
|
1035 |
msgstr "Opacité de la superposition"
|
1036 |
|
1037 |
+
#: includes/class-gllr-settings.php:809
|
1038 |
#, php-format
|
1039 |
+
msgid ""
|
1040 |
+
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1041 |
+
"is %s)."
|
1042 |
+
msgstr ""
|
1043 |
+
"Opacité pour la superposition de Lightbox. Laisser vide pour ne pas utiliser "
|
1044 |
+
"l’opacité (par défaut %s, max %s)."
|
1045 |
|
1046 |
+
#: includes/class-gllr-settings.php:819
|
1047 |
msgid "Slideshow"
|
1048 |
msgstr "Diaporama"
|
1049 |
|
1050 |
+
#: includes/class-gllr-settings.php:821
|
1051 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1052 |
+
msgstr ""
|
1053 |
+
"Activer pour lancer le diaporama automatiquement quand la lightbox est "
|
1054 |
+
"utilisée."
|
1055 |
|
1056 |
+
#: includes/class-gllr-settings.php:825
|
1057 |
msgid "Slideshow Duration"
|
1058 |
msgstr "Durée du diaporama"
|
1059 |
|
1060 |
+
#: includes/class-gllr-settings.php:827
|
1061 |
msgid "ms"
|
1062 |
msgstr "ms"
|
1063 |
|
1064 |
+
#: includes/class-gllr-settings.php:828
|
1065 |
msgid "Slideshow interval duration between two images."
|
1066 |
msgstr "Durée entre deux images dans le diaporama."
|
1067 |
|
1068 |
+
#: includes/class-gllr-settings.php:839
|
1069 |
msgid "Lightbox Helpers"
|
1070 |
msgstr "Lightbox helper"
|
1071 |
|
1072 |
+
#: includes/class-gllr-settings.php:841
|
1073 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1074 |
msgstr "Activer pour voir les options PRO de cette extension."
|
1075 |
|
1076 |
+
#: includes/class-gllr-settings.php:845
|
1077 |
msgid "Lightbox Thumbnails"
|
1078 |
msgstr "Vignettes de la lightbox"
|
1079 |
|
1080 |
+
#: includes/class-gllr-settings.php:847
|
1081 |
msgid "Enable to use a lightbox helper navigation between images."
|
1082 |
+
msgstr ""
|
1083 |
+
"Activer pour utiliser une aide de navigation dans la lightbox entre les "
|
1084 |
+
"images."
|
1085 |
|
1086 |
+
#: includes/class-gllr-settings.php:851
|
1087 |
msgid "Lightbox Thumbnails Position"
|
1088 |
msgstr "Position des vignettes de la lightbox"
|
1089 |
|
1090 |
+
#: includes/class-gllr-settings.php:854
|
1091 |
msgid "Top"
|
1092 |
msgstr "Haut"
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:859
|
1095 |
msgid "Lightbox Button Label"
|
1096 |
msgstr "Label du bouton pour Lightbox"
|
1097 |
|
1098 |
+
#: includes/class-gllr-settings.php:861
|
1099 |
msgid "Read More"
|
1100 |
msgstr "En savoir plus..."
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:871
|
1103 |
msgid "Download Button"
|
1104 |
msgstr "Bouton de téléchargement"
|
1105 |
|
1106 |
+
#: includes/class-gllr-settings.php:873
|
1107 |
msgid "Enable to display download button."
|
1108 |
msgstr "Activer pour voir le bouton de téléchargement."
|
1109 |
|
1110 |
+
#: includes/class-gllr-settings.php:877
|
1111 |
msgid "Single Lightbox"
|
1112 |
msgstr "Lightbox simple"
|
1113 |
|
1114 |
+
#: includes/class-gllr-settings.php:879
|
1115 |
+
msgid ""
|
1116 |
+
"Enable to use a single lightbox for multiple galleries located on a single "
|
1117 |
+
"page."
|
1118 |
+
msgstr ""
|
1119 |
+
"Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant "
|
1120 |
+
"sur la même page."
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:889
|
1123 |
msgid "Social Sharing Buttons Settings"
|
1124 |
msgstr "Paramètres des boutons des réseaux sociaux"
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:898
|
1127 |
msgid "Social Buttons"
|
1128 |
msgstr "Boutons pour les réseaux sociaux"
|
1129 |
|
1130 |
+
#: includes/class-gllr-settings.php:900
|
1131 |
msgid "Enable social sharing buttons in the lightbox."
|
1132 |
+
msgstr ""
|
1133 |
+
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1134 |
|
1135 |
+
#: includes/class-gllr-settings.php:904
|
1136 |
msgid "Social Networks"
|
1137 |
msgstr "Réseaux sociaux"
|
1138 |
|
1139 |
+
#: includes/class-gllr-settings.php:915
|
1140 |
msgid "Counter"
|
1141 |
msgstr "Compteur"
|
1142 |
|
1143 |
+
#: includes/class-gllr-settings.php:918
|
1144 |
+
msgid ""
|
1145 |
+
"Enable to show likes counter for each social button (not available for "
|
1146 |
+
"Google +1)."
|
1147 |
+
msgstr ""
|
1148 |
+
"Activer pour voir le nombre de \"J’aime\" sur chaque bouton des "
|
1149 |
+
"réseaux sociaux (pas disponible pour Google+1)."
|
1150 |
|
1151 |
+
#: includes/class-gllr-settings.php:933
|
1152 |
msgid "Demo Data"
|
1153 |
msgstr "Données de démonstration"
|
1154 |
|
1155 |
+
#: includes/class-gllr-settings.php:935
|
1156 |
+
msgid ""
|
1157 |
+
"Install demo data to create galleries with images, post with shortcodes and "
|
1158 |
+
"page with a list of all galleries."
|
1159 |
+
msgstr ""
|
1160 |
+
"Si vous installez les données de démonstration, des galeries avec des "
|
1161 |
+
"images, des articles avec les différents codes courts, des pages avec des "
|
1162 |
+
"listes de galeries seront créés."
|
1163 |
|
1164 |
+
#: includes/class-gllr-settings.php:973
|
1165 |
msgid "Gallery Post Type"
|
1166 |
msgstr "Type d’article pour la Galerie"
|
1167 |
|
1168 |
+
#: includes/class-gllr-settings.php:975
|
1169 |
+
msgid ""
|
1170 |
+
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1171 |
+
"galleries created earlier will stay unchanged. However, after enabling we "
|
1172 |
+
"recommend to check settings of other plugins where \"gallery\" post type is "
|
1173 |
+
"used."
|
1174 |
+
msgstr ""
|
1175 |
+
"Activer pour éviter les conflits avec d’autres extensions de galerie "
|
1176 |
+
"installées. Toutes les galeries crées avant ne seront pas modifiées, "
|
1177 |
+
"cependant, après la modification, merci de vérifier le paramétrage de vos "
|
1178 |
+
"autres extensions où le type d’article 'galerie' est utilisé."
|
1179 |
|
1180 |
+
#: includes/class-gllr-settings.php:987
|
1181 |
msgid "Gallery Slug"
|
1182 |
msgstr "Identifiant de la galerie"
|
1183 |
|
1184 |
+
#: includes/class-gllr-settings.php:991
|
1185 |
msgid "Enter the unique gallery slug."
|
1186 |
msgstr "Saisir le slug unique pour la galerie."
|
1187 |
|
1188 |
+
#: includes/class-gllr-settings.php:1007
|
1189 |
msgid "Activate Now"
|
1190 |
msgstr "Activer maintenant"
|
1191 |
|
1192 |
+
#: includes/class-gllr-settings.php:1025
|
1193 |
msgid "Enable to include galleries to your website search."
|
1194 |
msgstr "Activer pour inclure les galeries dans la recherche de votre site."
|
1195 |
|
1196 |
+
#: includes/class-gllr-settings.php:1025
|
1197 |
#, php-format
|
1198 |
msgid "%s is required."
|
1199 |
msgstr "%s est requis"
|
1208 |
|
1209 |
#: includes/demo-data/class-bws-demo-data.php:37
|
1210 |
msgid "Delete demo data and restore old plugin settings."
|
1211 |
+
msgstr ""
|
1212 |
+
"Supprimer les données de démonstration et remettre le paramétrage antérieur "
|
1213 |
+
"de l’extension."
|
1214 |
|
1215 |
#: includes/demo-data/class-bws-demo-data.php:50
|
1216 |
msgid "Yes, install demo data"
|
1228 |
msgid "Are you sure you want to remove demo data?"
|
1229 |
msgstr "Êtes vous sûr de vouloir supprimer les données de démonstration ?"
|
1230 |
|
1231 |
+
#: includes/demo-data/class-bws-demo-data.php:61
|
1232 |
+
msgid "No, go back to the settings page"
|
1233 |
+
msgstr "Non, retourner à la page des paramètres"
|
1234 |
+
|
1235 |
#: includes/demo-data/class-bws-demo-data.php:111
|
1236 |
msgid "Can not get demo data."
|
1237 |
msgstr "Impossible d’obtenir les données de démonstration."
|
1254 |
|
1255 |
#: includes/demo-data/class-bws-demo-data.php:383
|
1256 |
msgid "Installation of demo data with some errors occurred."
|
1257 |
+
msgstr ""
|
1258 |
+
"Des erreurs sont survenues lors de l’installation des données de "
|
1259 |
+
"démonstration."
|
1260 |
|
1261 |
#: includes/demo-data/class-bws-demo-data.php:386
|
1262 |
msgid "Posts data is missing."
|
1272 |
|
1273 |
#: includes/demo-data/class-bws-demo-data.php:519
|
1274 |
msgid "Removing demo data with some errors occurred."
|
1275 |
+
msgstr ""
|
1276 |
+
"Des erreurs sont survenues lors de la suppression des données de "
|
1277 |
+
"démonstration."
|
1278 |
+
|
1279 |
+
#: includes/demo-data/class-bws-demo-data.php:587
|
1280 |
+
msgid "Close notice"
|
1281 |
+
msgstr "Fermer l’avertissement"
|
1282 |
|
1283 |
#: includes/demo-data/class-bws-demo-data.php:593
|
1284 |
#, php-format
|
1285 |
+
msgid ""
|
1286 |
+
"Do you want to install demo content and settings for %s? (You can do this "
|
1287 |
+
"later using Import / Export settings)"
|
1288 |
+
msgstr ""
|
1289 |
+
"Voulez-vous installer le contenu de démonstration et les paramètres pour "
|
1290 |
+
"%s ? (Vous pouvez le faire plus tard en utilisant l’import et "
|
1291 |
+
"l’export des paramètres)"
|
1292 |
|
1293 |
#: includes/demo-data/class-bws-demo-data.php:595
|
1294 |
msgid "Yes, install demo now"
|
1295 |
msgstr "Oui, installer les données de démonstration"
|
1296 |
+
|
1297 |
+
#~ msgid "or"
|
1298 |
+
#~ msgstr "ou"
|
1299 |
+
|
1300 |
+
#~ msgid "requires"
|
1301 |
+
#~ msgstr "obligatoire"
|
1302 |
+
|
1303 |
+
#~ msgid ""
|
1304 |
+
#~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
|
1305 |
+
#~ "and try again."
|
1306 |
+
#~ msgstr ""
|
1307 |
+
#~ "ou supérieure, c’est pourquoi il a été désactivé ! Merci de "
|
1308 |
+
#~ "faire la mise à jour de WordPress puis de ré-essayer."
|
1309 |
+
|
1310 |
+
#~ msgid "Back to the WordPress"
|
1311 |
+
#~ msgstr "Retour à WordPress"
|
1312 |
+
|
1313 |
+
#~ msgid "Plugins page"
|
1314 |
+
#~ msgstr "Page des extensions"
|
1315 |
+
|
1316 |
+
#~ msgid "Like the plugin?"
|
1317 |
+
#~ msgstr "Voter pour l’extension"
|
1318 |
+
|
1319 |
+
#~ msgid "%s reviews"
|
1320 |
+
#~ msgstr "%s appréciations"
|
1321 |
+
|
1322 |
+
#~ msgid "Rate it"
|
1323 |
+
#~ msgstr "Notez là"
|
1324 |
+
|
1325 |
+
#~ msgid "Need help?"
|
1326 |
+
#~ msgstr "Besoin d’aide ?"
|
1327 |
+
|
1328 |
+
#~ msgid "Visit Help Center"
|
1329 |
+
#~ msgstr "Visiter le site du support"
|
1330 |
+
|
1331 |
+
#~ msgid "Want to support the plugin?"
|
1332 |
+
#~ msgstr "Voter pour l’extension"
|
1333 |
+
|
1334 |
+
#~ msgid "Donate"
|
1335 |
+
#~ msgstr "Don"
|
1336 |
+
|
1337 |
+
#~ msgid "WARNING: Illegal use notification"
|
1338 |
+
#~ msgstr "AVERTISSEMENT : Notification d’utilisation abusive"
|
1339 |
+
|
1340 |
+
#~ msgid ""
|
1341 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1342 |
+
#~ "check and edit your license or domain if necessary using your personal "
|
1343 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1344 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1345 |
+
#~ msgstr ""
|
1346 |
+
#~ "Vous ne pouvez utilisez qu’une licence de la version Pro de l’"
|
1347 |
+
#~ "extension pour un seul domaine. Merci de vérifier et de modifier votre "
|
1348 |
+
#~ "licence ou votre domaine si nécessaire en utilisant votre zone client. "
|
1349 |
+
#~ "Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon "
|
1350 |
+
#~ "l’extension sera rendue inactive."
|
1351 |
+
|
1352 |
+
#~ msgid "Learn More"
|
1353 |
+
#~ msgstr "En savoir plus"
|
1354 |
+
|
1355 |
+
#~ msgid ""
|
1356 |
+
#~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
1357 |
+
#~ "you should buy a Pro license"
|
1358 |
+
#~ msgstr ""
|
1359 |
+
#~ "Information :Votre licence d’évaluation est terminée. Pour "
|
1360 |
+
#~ "continuer à utiliser cette extension, vous devez acheter une licence PRO."
|
1361 |
+
|
1362 |
+
#~ msgid ""
|
1363 |
+
#~ "Your license has expired. To continue getting top-priority support and "
|
1364 |
+
#~ "plugin updates, you should extend it."
|
1365 |
+
#~ msgstr ""
|
1366 |
+
#~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
|
1367 |
+
#~ "et des mises à jour de l’extension vous devez la renouveler."
|
1368 |
+
|
1369 |
+
#~ msgid "Learn more"
|
1370 |
+
#~ msgstr "En savoir plus"
|
1371 |
+
|
1372 |
+
#~ msgid "Notice: You are using the Pro Trial license of %s plugin."
|
1373 |
+
#~ msgstr ""
|
1374 |
+
#~ "Avertissement : vous utilisez la version d’évaluation de "
|
1375 |
+
#~ "l’extension %s."
|
1376 |
+
|
1377 |
+
#~ msgid "Notice: You are using the Pro Trial license of plugin."
|
1378 |
+
#~ msgstr ""
|
1379 |
+
#~ "Avertissement : vous utilisez la version d’évaluation de "
|
1380 |
+
#~ "l’extension."
|
1381 |
+
|
1382 |
+
#~ msgid "The Pro Trial license will expire on"
|
1383 |
+
#~ msgstr "La licence PRO d’évaluation expirera le"
|
1384 |
+
|
1385 |
+
#~ msgid ""
|
1386 |
+
#~ "or higher! We do not guarantee that our plugin will work correctly. "
|
1387 |
+
#~ "Please upgrade to WordPress latest version."
|
1388 |
+
#~ msgstr ""
|
1389 |
+
#~ "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
|
1390 |
+
#~ "correctement. Merci de mettre à jour WordPress avec la dernière version."
|
1391 |
+
|
1392 |
+
#~ msgid "Thank you for installing %s plugin!"
|
1393 |
+
#~ msgstr "Merci d’avoir installé l’extension %s !"
|
1394 |
+
|
1395 |
+
#~ msgid "Let's get started"
|
1396 |
+
#~ msgstr "Démarrer"
|
1397 |
+
|
1398 |
+
#~ msgid "Thank you for installing plugins by BestWebSoft!"
|
1399 |
+
#~ msgstr "Merci d’avoir installé des extensions de BestWebSoft !"
|
1400 |
+
|
1401 |
+
#~ msgid "More Details"
|
1402 |
+
#~ msgstr "Plus de détails"
|
1403 |
+
|
1404 |
+
#~ msgid "Less Details"
|
1405 |
+
#~ msgstr "Moins de détails"
|
1406 |
+
|
1407 |
+
#~ msgid "Deprecated function(-s) is used on the site here:"
|
1408 |
+
#~ msgstr ""
|
1409 |
+
#~ "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici :"
|
1410 |
+
|
1411 |
+
#~ msgid ""
|
1412 |
+
#~ "This function(-s) will be removed over time. Please update the product(-"
|
1413 |
+
#~ "s)."
|
1414 |
+
#~ msgstr ""
|
1415 |
+
#~ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
|
1416 |
+
#~ "produits."
|
1417 |
+
|
1418 |
+
#~ msgid "It’s time to upgrade your"
|
1419 |
+
#~ msgstr "C’est le moment de mettre à jour votre "
|
1420 |
+
|
1421 |
+
#~ msgid "to"
|
1422 |
+
#~ msgstr "à"
|
1423 |
+
|
1424 |
+
#~ msgid "version!"
|
1425 |
+
#~ msgstr "version !"
|
1426 |
+
|
1427 |
+
#~ msgid "Extend standard plugin functionality with new great options."
|
1428 |
+
#~ msgstr ""
|
1429 |
+
#~ "Étend les fonctionnalités classiques de l’extension avec des "
|
1430 |
+
#~ "nouvelles options."
|
1431 |
+
|
1432 |
+
#~ msgid ""
|
1433 |
+
#~ "Your license key for %s expires on %s and you won't be granted TOP-"
|
1434 |
+
#~ "PRIORITY SUPPORT or UPDATES."
|
1435 |
+
#~ msgstr ""
|
1436 |
+
#~ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez "
|
1437 |
+
#~ "plus du support rapide et des mises à jour."
|
1438 |
+
|
1439 |
+
#~ msgid "Thank you for choosing %s plugin!"
|
1440 |
+
#~ msgstr "Merci d’avoir choisi l’extension %s !"
|
1441 |
+
|
1442 |
+
#~ msgid ""
|
1443 |
+
#~ "If you have a feature, suggestion or idea you'd like to see in the "
|
1444 |
+
#~ "plugin, we'd love to hear about it!"
|
1445 |
+
#~ msgstr ""
|
1446 |
+
#~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
1447 |
+
#~ "souhaitez pour cette extension, nous serons ravis d’en parler avec "
|
1448 |
+
#~ "vous !"
|
1449 |
+
|
1450 |
+
#~ msgid "Suggest a Feature"
|
1451 |
+
#~ msgstr "Proposer une fonctionnalité"
|
1452 |
+
|
1453 |
+
#~ msgid "Notice"
|
1454 |
+
#~ msgstr "Avertissement"
|
1455 |
+
|
1456 |
+
#~ msgid "The plugin's settings have been changed."
|
1457 |
+
#~ msgstr "Les paramètres de l’extension ont été modifiés."
|
1458 |
+
|
1459 |
+
#~ msgid "Save Changes"
|
1460 |
+
#~ msgstr "Enregistrer les modifications"
|
1461 |
+
|
1462 |
+
#~ msgid ""
|
1463 |
+
#~ "You can always look at premium options by checking the \"Pro Options\" in "
|
1464 |
+
#~ "the \"Misc\" tab."
|
1465 |
+
#~ msgstr ""
|
1466 |
+
#~ "Vous pouvez toujours consulter les options premium en cliquant sur le "
|
1467 |
+
#~ "lien \"Voir les fonctionnalités de la version PRO\" dans l’onglet "
|
1468 |
+
#~ "divers."
|
1469 |
+
|
1470 |
+
#~ msgid "Add BWS Shortcode"
|
1471 |
+
#~ msgstr "Ajouter le code court BWS"
|
1472 |
+
|
1473 |
+
#~ msgid "Add BWS Plugins Shortcode"
|
1474 |
+
#~ msgstr "Ajouter le code court BWS"
|
1475 |
+
|
1476 |
+
#~ msgid "Add shortcode"
|
1477 |
+
#~ msgstr "Ajouter le code court"
|
1478 |
+
|
1479 |
+
#~ msgid "Add BestWebSoft plugins' shortcodes using this button."
|
1480 |
+
#~ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
1481 |
+
|
1482 |
+
#~ msgid "Are you sure you want to restore default settings?"
|
1483 |
+
#~ msgstr ""
|
1484 |
+
#~ "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
1485 |
+
|
1486 |
+
#~ msgid "Yes, restore all settings"
|
1487 |
+
#~ msgstr "Oui, remettre les valeurs par défaut"
|
1488 |
+
|
1489 |
+
#~ msgid "Plugin"
|
1490 |
+
#~ msgstr "Extension"
|
1491 |
+
|
1492 |
+
#~ msgid "Shortcode settings"
|
1493 |
+
#~ msgstr "Paramètres du code court"
|
1494 |
+
|
1495 |
+
#~ msgid "The shortcode will be inserted"
|
1496 |
+
#~ msgstr "Le code court sera inséré"
|
1497 |
+
|
1498 |
+
#~ msgid "For more information:"
|
1499 |
+
#~ msgstr "Pour plus d’informations :"
|
1500 |
+
|
1501 |
+
#~ msgid "Documentation"
|
1502 |
+
#~ msgstr "Documentation"
|
1503 |
+
|
1504 |
+
#~ msgid "Video Instructions"
|
1505 |
+
#~ msgstr "Vidéo explicative"
|
1506 |
+
|
1507 |
+
#~ msgid "Submit a Request"
|
1508 |
+
#~ msgstr "Soumettre une requête"
|
1509 |
+
|
1510 |
+
#~ msgid "Wrong license key"
|
1511 |
+
#~ msgstr "Clé de licence incorrecte"
|
1512 |
+
|
1513 |
+
#~ msgid ""
|
1514 |
+
#~ "Something went wrong. Please try again later. If the error appears again, "
|
1515 |
+
#~ "please contact us"
|
1516 |
+
#~ msgstr ""
|
1517 |
+
#~ "Il est survenu une erreur. Essayer de nouveau. Si l’erreur se "
|
1518 |
+
#~ "produit de nouveau, merci de contacter <a href=http://support.bestwebsoft."
|
1519 |
+
#~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
1520 |
+
|
1521 |
+
#~ msgid "We are sorry for inconvenience."
|
1522 |
+
#~ msgstr "Nous sommes désolés pour le désagrément."
|
1523 |
+
|
1524 |
+
#~ msgid "Wrong license key."
|
1525 |
+
#~ msgstr "Clé de licence incorrecte."
|
1526 |
+
|
1527 |
+
#~ msgid ""
|
1528 |
+
#~ "This license key is bound to another site. Change it via personal Client "
|
1529 |
+
#~ "Area."
|
1530 |
+
#~ msgstr ""
|
1531 |
+
#~ "La clé de licence correspond à un autre site. Modifier là au travers de "
|
1532 |
+
#~ "votre espace client."
|
1533 |
+
|
1534 |
+
#~ msgid "Log in"
|
1535 |
+
#~ msgstr "Connexion"
|
1536 |
+
|
1537 |
+
#~ msgid ""
|
1538 |
+
#~ "Unfortunately, you have exceeded the number of available tries per day."
|
1539 |
+
#~ msgstr ""
|
1540 |
+
#~ "Désoler mais vous avez dépassé le nombre d’essai de la journée. "
|
1541 |
+
#~ "Merci de télécharger l’extension manuellement."
|
1542 |
+
|
1543 |
+
#~ msgid ""
|
1544 |
+
#~ "Unfortunately, Your license has expired. To continue getting top-priority "
|
1545 |
+
#~ "support and plugin updates, you should extend it in your %s"
|
1546 |
+
#~ msgstr ""
|
1547 |
+
#~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
|
1548 |
+
#~ "rapide et des mises à jour de l’extension vous devez la renouveler "
|
1549 |
+
#~ "dans votre %s"
|
1550 |
+
|
1551 |
+
#~ msgid ""
|
1552 |
+
#~ "Unfortunately, the Pro licence was already installed to this domain. The "
|
1553 |
+
#~ "Pro Trial license can be installed only once."
|
1554 |
+
#~ msgstr ""
|
1555 |
+
#~ "Une licence a déjà été installée sur ce domaine. La licence d’"
|
1556 |
+
#~ "évaluation ne peut-être installée qu’une seule fois."
|
1557 |
+
|
1558 |
+
#~ msgid "The license key is valid."
|
1559 |
+
#~ msgstr "La clé de licence est valide."
|
1560 |
+
|
1561 |
+
#~ msgid "Your license will expire on"
|
1562 |
+
#~ msgstr "Votre licence se termine le "
|
1563 |
+
|
1564 |
+
#~ msgid "Congratulations! Pro Membership license is activated successfully."
|
1565 |
+
#~ msgstr ""
|
1566 |
+
#~ "Félicitations ! La version PRO de cette extension a été activée avec "
|
1567 |
+
#~ "succès."
|
1568 |
+
|
1569 |
+
#~ msgid ""
|
1570 |
+
#~ "Something went wrong. Try again later or upload the plugin manually. We "
|
1571 |
+
#~ "are sorry for inconvenience."
|
1572 |
+
#~ msgstr ""
|
1573 |
+
#~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l’"
|
1574 |
+
#~ "extension manuellement.Nous sommes désolés pour le désagrément."
|
1575 |
+
|
1576 |
+
#~ msgid "Please enter your license key."
|
1577 |
+
#~ msgstr "Merci de saisir votre clé de licence."
|
1578 |
+
|
1579 |
+
#~ msgid "Not set"
|
1580 |
+
#~ msgstr "Not set"
|
1581 |
+
|
1582 |
+
#~ msgid "On"
|
1583 |
+
#~ msgstr "On"
|
1584 |
+
|
1585 |
+
#~ msgid "Off"
|
1586 |
+
#~ msgstr "Off"
|
1587 |
+
|
1588 |
+
#~ msgid "N/A"
|
1589 |
+
#~ msgstr "N/A"
|
1590 |
+
|
1591 |
+
#~ msgid " Mb"
|
1592 |
+
#~ msgstr " Mb"
|
1593 |
+
|
1594 |
+
#~ msgid "Yes"
|
1595 |
+
#~ msgstr "Yes"
|
1596 |
+
|
1597 |
+
#~ msgid "No"
|
1598 |
+
#~ msgstr "No"
|
1599 |
+
|
1600 |
+
#~ msgid "WordPress Environment"
|
1601 |
+
#~ msgstr "Environnent WordPress"
|
1602 |
+
|
1603 |
+
#~ msgid "Home URL"
|
1604 |
+
#~ msgstr "Home URL"
|
1605 |
+
|
1606 |
+
#~ msgid "Website URL"
|
1607 |
+
#~ msgstr "Site URL"
|
1608 |
+
|
1609 |
+
#~ msgid "WP Version"
|
1610 |
+
#~ msgstr "WP Version"
|
1611 |
+
|
1612 |
+
#~ msgid "WP Multisite"
|
1613 |
+
#~ msgstr "WP Multisite"
|
1614 |
+
|
1615 |
+
#~ msgid "WP Memory Limit"
|
1616 |
+
#~ msgstr "WP Memory Limit"
|
1617 |
+
|
1618 |
+
#~ msgid "Active Theme"
|
1619 |
+
#~ msgstr "Active Theme"
|
1620 |
+
|
1621 |
+
#~ msgid "by %s"
|
1622 |
+
#~ msgstr "par %s"
|
1623 |
+
|
1624 |
+
#~ msgid "Server Environment"
|
1625 |
+
#~ msgstr "Environnent serveur"
|
1626 |
+
|
1627 |
+
#~ msgid "Operating System"
|
1628 |
+
#~ msgstr "Operating System"
|
1629 |
+
|
1630 |
+
#~ msgid "Server"
|
1631 |
+
#~ msgstr "Server"
|
1632 |
+
|
1633 |
+
#~ msgid "PHP Version"
|
1634 |
+
#~ msgstr "PHP Version"
|
1635 |
+
|
1636 |
+
#~ msgid "PHP Allow URL fopen"
|
1637 |
+
#~ msgstr "PHP Allow URL fopen"
|
1638 |
+
|
1639 |
+
#~ msgid "PHP Memory Limit"
|
1640 |
+
#~ msgstr "PHP Memory Limit"
|
1641 |
+
|
1642 |
+
#~ msgid "Memory Usage"
|
1643 |
+
#~ msgstr "Memory usage"
|
1644 |
+
|
1645 |
+
#~ msgid "PHP Max Upload Size"
|
1646 |
+
#~ msgstr "PHP Max Upload Size"
|
1647 |
+
|
1648 |
+
#~ msgid "PHP Max Post Size"
|
1649 |
+
#~ msgstr "PHP Max Post Size"
|
1650 |
+
|
1651 |
+
#~ msgid "PHP Max Script Execute Time"
|
1652 |
+
#~ msgstr "PHP Max Script Execute Time"
|
1653 |
+
|
1654 |
+
#~ msgid "PHP Exif support"
|
1655 |
+
#~ msgstr "PHP Exif support"
|
1656 |
+
|
1657 |
+
#~ msgid "PHP IPTC support"
|
1658 |
+
#~ msgstr "PHP IPTC support"
|
1659 |
+
|
1660 |
+
#~ msgid "PHP XML support"
|
1661 |
+
#~ msgstr "PHP XML support"
|
1662 |
+
|
1663 |
+
#~ msgid "Database"
|
1664 |
+
#~ msgstr "Base de données"
|
1665 |
+
|
1666 |
+
#~ msgid "WP DB version"
|
1667 |
+
#~ msgstr "WordPress DB Version"
|
1668 |
+
|
1669 |
+
#~ msgid "MySQL version"
|
1670 |
+
#~ msgstr "MYSQL Version"
|
1671 |
+
|
1672 |
+
#~ msgid "SQL Mode"
|
1673 |
+
#~ msgstr "SQL Mode"
|
1674 |
+
|
1675 |
+
#~ msgid "Active Plugins"
|
1676 |
+
#~ msgstr "Extensions actives"
|
1677 |
+
|
1678 |
+
#~ msgid "Inactive Plugins"
|
1679 |
+
#~ msgstr "Extensions inactives"
|
1680 |
+
|
1681 |
+
#~ msgid "Please enter a valid email address."
|
1682 |
+
#~ msgstr "Merci de saisir une adresse e-mail valide."
|
1683 |
+
|
1684 |
+
#~ msgid "Email with system info is sent to %s."
|
1685 |
+
#~ msgstr "Le courriel avec les informations système est envoyé à %s."
|
1686 |
+
|
1687 |
+
#~ msgid "Thank you for contacting us."
|
1688 |
+
#~ msgstr "Merci de nous avoir contacté."
|
1689 |
+
|
1690 |
+
#~ msgid "Sorry, email message could not be delivered."
|
1691 |
+
#~ msgstr "Désolé, votre e-mail n’a pas pu être envoyé."
|
1692 |
+
|
1693 |
+
#~ msgid "Plugins"
|
1694 |
+
#~ msgstr "Extensions"
|
1695 |
+
|
1696 |
+
#~ msgid "Themes"
|
1697 |
+
#~ msgstr "Thèmes"
|
1698 |
+
|
1699 |
+
#~ msgid "System status"
|
1700 |
+
#~ msgstr "Etat du système"
|
1701 |
+
|
1702 |
+
#~ msgid "Manage purchased licenses & subscriptions"
|
1703 |
+
#~ msgstr "Gérer les licences et les inscriptions"
|
1704 |
+
|
1705 |
+
#~ msgid "Get Access to %s+ Premium Plugins"
|
1706 |
+
#~ msgstr "Accéder à plus de %s extensions premiums"
|
1707 |
+
|
1708 |
+
#~ msgid "Subscribe to Pro Membership"
|
1709 |
+
#~ msgstr "Souscrire une adhésion PRO"
|
1710 |
+
|
1711 |
+
#~ msgid "Check license key"
|
1712 |
+
#~ msgstr "Vérifier la clé de licence"
|
1713 |
+
|
1714 |
+
#~ msgid "Enter your license key"
|
1715 |
+
#~ msgstr "Merci de saisir votre clé de licence"
|
1716 |
+
|
1717 |
+
#~ msgid "Upload Plugin"
|
1718 |
+
#~ msgstr "Charger l’extension"
|
1719 |
+
|
1720 |
+
#~ msgid ""
|
1721 |
+
#~ "The plugin generated %d characters of <strong>unexpected output</strong> "
|
1722 |
+
#~ "during activation. If you notice “headers already sent” "
|
1723 |
+
#~ "messages, problems with syndication feeds or other issues, try "
|
1724 |
+
#~ "deactivating or removing this plugin."
|
1725 |
+
#~ msgstr ""
|
1726 |
+
#~ "Cette extension a produit %d caractères <strong>inattendus</strong> "
|
1727 |
+
#~ "durant l’activation. Si vous constatez le message “headers "
|
1728 |
+
#~ "already sent”, des problèmes avec les flux de syndication ou "
|
1729 |
+
#~ "autres, essayez de désactiver l’extension ou supprimer l’"
|
1730 |
+
#~ "extension."
|
1731 |
+
|
1732 |
+
#~ msgid ""
|
1733 |
+
#~ "Plugin could not be activated because it triggered a <strong>fatal error</"
|
1734 |
+
#~ "strong>."
|
1735 |
+
#~ msgstr ""
|
1736 |
+
#~ "L’extension ne peut pas être activée car une <strong>erreur fatale</"
|
1737 |
+
#~ "strong> a été détectée."
|
1738 |
+
|
1739 |
+
#~ msgid "Plugin <strong>activated</strong>."
|
1740 |
+
#~ msgstr "Extension <strong>activée</strong>."
|
1741 |
+
|
1742 |
+
#~ msgid "Installing Plugin"
|
1743 |
+
#~ msgstr "Extension installée"
|
1744 |
+
|
1745 |
+
#~ msgid "Downloading install package from"
|
1746 |
+
#~ msgstr "Télécharger le paquet d’installation depuis"
|
1747 |
+
|
1748 |
+
#~ msgid ""
|
1749 |
+
#~ "Failed to download the zip archive. Please, upload the plugin manually"
|
1750 |
+
#~ msgstr ""
|
1751 |
+
#~ "Erreur de téléchargement de l’archive ZIP. Merci de télécharger "
|
1752 |
+
#~ "l’extension manuellement."
|
1753 |
+
|
1754 |
+
#~ msgid "Unpacking the package"
|
1755 |
+
#~ msgstr "Décompresser le paquet"
|
1756 |
+
|
1757 |
+
#~ msgid "Installing the plugin"
|
1758 |
+
#~ msgstr "Installer l’extension"
|
1759 |
+
|
1760 |
+
#~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
1761 |
+
#~ msgstr ""
|
1762 |
+
#~ "Erreur d’ouverture de l’archive zip. Merci de télécharger "
|
1763 |
+
#~ "l’extension manuellement."
|
1764 |
+
|
1765 |
+
#~ msgid ""
|
1766 |
+
#~ "Your server does not support either ZipArchive or Phar. Please, upload "
|
1767 |
+
#~ "the plugin manually"
|
1768 |
+
#~ msgstr ""
|
1769 |
+
#~ "Votre serveur n’a pas le support du format des archives ZIP ou "
|
1770 |
+
#~ "Phar. Merci de télécharger l’extension manuellement."
|
1771 |
+
|
1772 |
+
#~ msgid "The plugin %s is successfully installed."
|
1773 |
+
#~ msgstr "L’extension %s a été installée avec succès."
|
1774 |
+
|
1775 |
+
#~ msgid "UploadDir is not writable. Please, upload the plugin manually"
|
1776 |
+
#~ msgstr ""
|
1777 |
+
#~ "Erreur d’ouverture de l’archive zip. Merci de télécharger "
|
1778 |
+
#~ "l’extension manuellement."
|
1779 |
+
|
1780 |
+
#~ msgid "Activate Plugin"
|
1781 |
+
#~ msgstr "Activer l’extension"
|
1782 |
+
|
1783 |
+
#~ msgid "Return to BestWebSoft Panel"
|
1784 |
+
#~ msgstr "Retourner à l’administration BestWebSoft"
|
1785 |
+
|
1786 |
+
#~ msgid "All"
|
1787 |
+
#~ msgstr "Tous"
|
1788 |
+
|
1789 |
+
#~ msgid "Installed"
|
1790 |
+
#~ msgstr "Installé"
|
1791 |
+
|
1792 |
+
#~ msgid "Not Installed"
|
1793 |
+
#~ msgstr "Non installé"
|
1794 |
+
|
1795 |
+
#~ msgid "Filter results"
|
1796 |
+
#~ msgstr "Filtrer les résultats"
|
1797 |
+
|
1798 |
+
#~ msgid "Category"
|
1799 |
+
#~ msgstr "Catégorie"
|
1800 |
+
|
1801 |
+
#~ msgid "Not installed"
|
1802 |
+
#~ msgstr "Non installé"
|
1803 |
+
|
1804 |
+
#~ msgid "Renew to get updates"
|
1805 |
+
#~ msgstr "Se réabonner pour avoir les mises à jour"
|
1806 |
+
|
1807 |
+
#~ msgid "Update to v %s"
|
1808 |
+
#~ msgstr "Mettre à jour avec la version %s"
|
1809 |
+
|
1810 |
+
#~ msgid "Activate this plugin"
|
1811 |
+
#~ msgstr "Activer cette extension"
|
1812 |
+
|
1813 |
+
#~ msgid "Install this plugin"
|
1814 |
+
#~ msgstr "Installer cette extension"
|
1815 |
+
|
1816 |
+
#~ msgid "Nothing found. Try another criteria."
|
1817 |
+
#~ msgstr "Pas de réponse. Essayer d’autres critères."
|
1818 |
+
|
1819 |
+
#~ msgid "By %s"
|
1820 |
+
#~ msgstr "Par %s"
|
1821 |
+
|
1822 |
+
#~ msgid "Already Installed"
|
1823 |
+
#~ msgstr "Déjà installé"
|
1824 |
+
|
1825 |
+
#~ msgid "Browse More WordPress Themes"
|
1826 |
+
#~ msgstr "Parcourir les thèmes gratuits pour WordPress"
|
1827 |
+
|
1828 |
+
#~ msgid "Send to support"
|
1829 |
+
#~ msgstr "Envoyé au support"
|
1830 |
+
|
1831 |
+
#~ msgid "Send to custom email »"
|
1832 |
+
#~ msgstr "Envoyer un e-mail spécifique »"
|
1833 |
+
|
1834 |
+
#~ msgid "Information"
|
1835 |
+
#~ msgstr "Information"
|
1836 |
+
|
1837 |
+
#~ msgid "Inactive"
|
1838 |
+
#~ msgstr "Inactive"
|
1839 |
+
|
1840 |
+
#~ msgid "Expired"
|
1841 |
+
#~ msgstr "Expiré"
|
1842 |
+
|
1843 |
+
#~ msgid "%s day(-s) left"
|
1844 |
+
#~ msgstr "%s jour(s) restant"
|
1845 |
+
|
1846 |
+
#~ msgid "Expired on %s"
|
1847 |
+
#~ msgstr "Terminer le %s"
|
1848 |
+
|
1849 |
+
#~ msgid "Renew Now"
|
1850 |
+
#~ msgstr "Renouveler maintenant"
|
1851 |
+
|
1852 |
+
#~ msgid "Active"
|
1853 |
+
#~ msgstr "Activé"
|
1854 |
+
|
1855 |
+
#~ msgid "License"
|
1856 |
+
#~ msgstr "Licence"
|
1857 |
+
|
1858 |
+
#~ msgid "Status"
|
1859 |
+
#~ msgstr "Etat"
|
1860 |
+
|
1861 |
+
#~ msgid "Version"
|
1862 |
+
#~ msgstr "Version"
|
1863 |
+
|
1864 |
+
#~ msgid "All plugin settings were restored."
|
1865 |
+
#~ msgstr ""
|
1866 |
+
#~ "Les paramètres de l’extension ont été remis aux valeurs d’"
|
1867 |
+
#~ "origine."
|
1868 |
+
|
1869 |
+
#~ msgid ""
|
1870 |
+
#~ "You do not have sufficient permissions to edit plugins for this site."
|
1871 |
+
#~ msgstr ""
|
1872 |
+
#~ "Vous n’avez pas assez de droits pour modifier l’extension "
|
1873 |
+
#~ "pour ce site."
|
1874 |
+
|
1875 |
+
#~ msgid "These styles will be added to the header on all pages of your site."
|
1876 |
+
#~ msgstr ""
|
1877 |
+
#~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
1878 |
+
|
1879 |
+
#~ msgid ""
|
1880 |
+
#~ "This PHP code will be hooked to the %s action and will be printed on "
|
1881 |
+
#~ "front end only."
|
1882 |
+
#~ msgstr ""
|
1883 |
+
#~ "Ce code PHP sera rattaché à l’action %s et sera affiché uniquement "
|
1884 |
+
#~ "sur la partie publique."
|
1885 |
+
|
1886 |
+
#~ msgid "These code will be added to the header on all pages of your site."
|
1887 |
+
#~ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
|
1888 |
+
|
1889 |
+
#~ msgid ""
|
1890 |
+
#~ "You need to make this files writable before you can save your changes. "
|
1891 |
+
#~ "See %s the Codex %s for more information."
|
1892 |
+
#~ msgstr ""
|
1893 |
+
#~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
|
1894 |
+
#~ "modifications. Regarder %s du Codex %s pour plus d’informations."
|
1895 |
+
|
1896 |
+
#~ msgid "Browsing"
|
1897 |
+
#~ msgstr "Parcourir"
|
1898 |
+
|
1899 |
+
#~ msgid "Activate custom %s code."
|
1900 |
+
#~ msgstr "Activer le code personnalisé %s."
|
1901 |
+
|
1902 |
+
#~ msgid "Learn more about %s"
|
1903 |
+
#~ msgstr "En savoir plus sur %s"
|
1904 |
+
|
1905 |
+
#~ msgid "Miscellaneous Settings"
|
1906 |
+
#~ msgstr "Paramètres divers"
|
1907 |
+
|
1908 |
+
#~ msgid ""
|
1909 |
+
#~ "It is prohibited to change %s settings on this site in the %s network "
|
1910 |
+
#~ "settings."
|
1911 |
+
#~ msgstr ""
|
1912 |
+
#~ "Il est interdit de changer le paramètre %s sur ce site dans les "
|
1913 |
+
#~ "paramètres %s du réseau."
|
1914 |
+
|
1915 |
+
#~ msgid ""
|
1916 |
+
#~ "It is prohibited to view %s settings on this site in the %s network "
|
1917 |
+
#~ "settings."
|
1918 |
+
#~ msgstr ""
|
1919 |
+
#~ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres "
|
1920 |
+
#~ "%s du réseau."
|
1921 |
+
|
1922 |
+
#~ msgid "Pro Options"
|
1923 |
+
#~ msgstr "Options Pro"
|
1924 |
+
|
1925 |
+
#~ msgid "Enable to display plugin Pro options."
|
1926 |
+
#~ msgstr "Activer pour voir les options PRO de l’extension."
|
1927 |
+
|
1928 |
+
#~ msgid "Track Usage"
|
1929 |
+
#~ msgstr "Suivi de l’utilisation"
|
1930 |
+
|
1931 |
+
#~ msgid ""
|
1932 |
+
#~ "Enable to allow tracking plugin usage anonymously in order to make it "
|
1933 |
+
#~ "better."
|
1934 |
+
#~ msgstr ""
|
1935 |
+
#~ "Activer pour autoriser le suivi de l’utilisation de l’"
|
1936 |
+
#~ "extension de manière anonyme afin de la rendre meilleure."
|
1937 |
+
|
1938 |
+
#~ msgid "Default Settings"
|
1939 |
+
#~ msgstr "Réglages par défaut"
|
1940 |
+
|
1941 |
+
#~ msgid "Restore Settings"
|
1942 |
+
#~ msgstr "Remettre les paramètres"
|
1943 |
+
|
1944 |
+
#~ msgid "This will restore plugin settings to defaults."
|
1945 |
+
#~ msgstr ""
|
1946 |
+
#~ "Remettre les valeurs par défaut des paramètres de l’extension."
|
1947 |
+
|
1948 |
+
#~ msgid "Congratulations! Pro license is activated successfully."
|
1949 |
+
#~ msgstr ""
|
1950 |
+
#~ "Félicitations ! La version PRO de cette extension a été activée avec "
|
1951 |
+
#~ "succès."
|
1952 |
+
|
1953 |
+
#~ msgid "You will be automatically redirected to the %s in %s seconds."
|
1954 |
+
#~ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
|
1955 |
+
|
1956 |
+
#~ msgid "Settings page"
|
1957 |
+
#~ msgstr "Page des paramètres"
|
1958 |
+
|
1959 |
+
#~ msgid ""
|
1960 |
+
#~ "Enter your license key to activate %s and get premium plugin features."
|
1961 |
+
#~ msgstr ""
|
1962 |
+
#~ "Saisir votre clé de licence pour activer %s et obtenir les "
|
1963 |
+
#~ "fonctionnalités premium."
|
1964 |
+
|
1965 |
+
#~ msgid ""
|
1966 |
+
#~ "Unfortunately, you have exceeded the number of available tries per day. "
|
1967 |
+
#~ "Please, upload the plugin manually."
|
1968 |
+
#~ msgstr ""
|
1969 |
+
#~ "Désoler mais vous avez dépassé le nombre d’essai de la journée. "
|
1970 |
+
#~ "Merci de télécharger l’extension manuellement."
|
1971 |
+
|
1972 |
+
#~ msgid "Start Your Free %s-Day Trial Now"
|
1973 |
+
#~ msgstr "Débuter votre licence d’évaluation gratuite de %s jours"
|
1974 |
+
|
1975 |
+
#~ msgid ""
|
1976 |
+
#~ "If necessary, you can check if the license key is correct or reenter it "
|
1977 |
+
#~ "in the field below."
|
1978 |
+
#~ msgstr ""
|
1979 |
+
#~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
|
1980 |
+
#~ "la saisir de nouveau dans le champ ci-dessous."
|
1981 |
+
|
1982 |
+
#~ msgid "Manage License Settings"
|
1983 |
+
#~ msgstr "Gérer les paramètres de licence"
|
1984 |
+
|
1985 |
+
#~ msgid "Login to Client Area"
|
1986 |
+
#~ msgstr "Se connecter à l’espace client"
|
1987 |
+
|
1988 |
+
#~ msgid ""
|
1989 |
+
#~ "Manage active licenses, download BWS products, and view your payment "
|
1990 |
+
#~ "history using BestWebSoft Client Area."
|
1991 |
+
#~ msgstr ""
|
1992 |
+
#~ "Gérer les licences actives, télécharger les produits BWS, et voir l’"
|
1993 |
+
#~ "historique de vos règlements dans l’interface client de BestWebSoft."
|
1994 |
+
|
1995 |
+
#~ msgid "This license key is bound to another site."
|
1996 |
+
#~ msgstr "La clé de licence correspond à un autre site."
|
1997 |
+
|
1998 |
+
#~ msgid ""
|
1999 |
+
#~ "This license key is valid, but Your license has expired. If you want to "
|
2000 |
+
#~ "update our plugin in future, you should extend the license."
|
2001 |
+
#~ msgstr ""
|
2002 |
+
#~ "La clé de licence est valide mais votre durée de validité est passée. "
|
2003 |
+
#~ "Pour continuer à disposer du support rapide et des mises à jour de "
|
2004 |
+
#~ "l’extension vous devez la renouveller."
|
2005 |
+
|
2006 |
+
#~ msgid "Unfortunately, you have exceeded the number of available tries."
|
2007 |
+
#~ msgstr ""
|
2008 |
+
#~ "Désoler mais vous avez dépassé le nombre d’essai de la journée. "
|
2009 |
+
#~ "Merci de télécharger l’extension manuellement."
|
2010 |
+
|
2011 |
+
#~ msgid ""
|
2012 |
+
#~ "Unfortunately, the Pro Trial licence was already installed to this "
|
2013 |
+
#~ "domain. The Pro Trial license can be installed only once."
|
2014 |
+
#~ msgstr ""
|
2015 |
+
#~ "Une licence a déjà été installée sur ce domaine. La licence d’"
|
2016 |
+
#~ "évaluation ne peut-être installée qu’une seule fois."
|
2017 |
+
|
2018 |
+
#~ msgid "The Pro Trial license key is valid."
|
2019 |
+
#~ msgstr "La clé de licence d’évaluation est valide."
|
2020 |
+
|
2021 |
+
#~ msgid ""
|
2022 |
+
#~ "In order to continue using the plugin it is necessary to buy a %s license."
|
2023 |
+
#~ msgstr ""
|
2024 |
+
#~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
|
2025 |
+
#~ "d’acheter une licence %s."
|
2026 |
+
|
2027 |
+
#~ msgid ""
|
2028 |
+
#~ "Unfortunately, Your license has expired. To continue getting top-priority "
|
2029 |
+
#~ "support and plugin updates, you should extend it in your %s."
|
2030 |
+
#~ msgstr ""
|
2031 |
+
#~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
|
2032 |
+
#~ "rapide et des mises à jour de l’extension vous devez la renouveler "
|
2033 |
+
#~ "dans votre %s."
|
2034 |
+
|
2035 |
+
#~ msgid ""
|
2036 |
+
#~ "Failed to download the zip archive. Please, upload the plugin manually."
|
2037 |
+
#~ msgstr ""
|
2038 |
+
#~ "Erreur de téléchargement de l’archive ZIP. Merci de télécharger "
|
2039 |
+
#~ "l’extension manuellement."
|
2040 |
+
|
2041 |
+
#~ msgid "Failed to open the zip archive. Please, upload the plugin manually."
|
2042 |
+
#~ msgstr ""
|
2043 |
+
#~ "Erreur d’ouverture de l’archive zip. Merci de télécharger "
|
2044 |
+
#~ "l’extension manuellement."
|
2045 |
+
|
2046 |
+
#~ msgid ""
|
2047 |
+
#~ "Your server does not support either ZipArchive or Phar. Please, upload "
|
2048 |
+
#~ "the plugin manually."
|
2049 |
+
#~ msgstr ""
|
2050 |
+
#~ "Votre serveur n’a pas le support du format des archives ZIP ou "
|
2051 |
+
#~ "Phar. Merci de télécharger l’extension manuellement."
|
2052 |
+
|
2053 |
+
#~ msgid "UploadDir is not writable. Please, upload the plugin manually."
|
2054 |
+
#~ msgstr ""
|
2055 |
+
#~ "Le répertoire de destination n’est pas disponible en écriture. "
|
2056 |
+
#~ "Merci de télécharger l’extension manuellement."
|
2057 |
+
|
2058 |
+
#~ msgid "Please, enter Your license key"
|
2059 |
+
#~ msgstr "Merci de saisir votre clé de licence"
|
2060 |
+
|
2061 |
+
#~ msgid "Need Help?"
|
2062 |
+
#~ msgstr "Besoin d’aide ?"
|
2063 |
+
|
2064 |
+
#~ msgid "Read the Instruction"
|
2065 |
+
#~ msgstr "Lire les instructions"
|
2066 |
+
|
2067 |
+
#~ msgid "Watch the Video"
|
2068 |
+
#~ msgstr "Regarder la vidéo"
|
2069 |
+
|
2070 |
+
#~ msgid "Start Your Free Trial"
|
2071 |
+
#~ msgstr "Débuter votre licence d’évaluation gratuite"
|
2072 |
+
|
2073 |
+
#~ msgid "Need help? We are ready to answer your questions."
|
2074 |
+
#~ msgstr ""
|
2075 |
+
#~ "Besoin d’aide ? Nous sommes prêts à répondre à vos questions."
|
2076 |
+
|
2077 |
+
#~ msgid "Contact Support"
|
2078 |
+
#~ msgstr "Contacter le support"
|
2079 |
+
|
2080 |
+
#~ msgid "The plugin is not working"
|
2081 |
+
#~ msgstr "L’extension ne fonctionna pas"
|
2082 |
+
|
2083 |
+
#~ msgid "Kindly share what didn't work so we can fix it in future updates..."
|
2084 |
+
#~ msgstr ""
|
2085 |
+
#~ "Merci de partager ce qui ne fonctionne pas afin que nous puissions le "
|
2086 |
+
#~ "corriger dans une prochaine version..."
|
2087 |
+
|
2088 |
+
#~ msgid "The plugin didn't work as expected"
|
2089 |
+
#~ msgstr "L’extension ne fonctionne pas comme prévue"
|
2090 |
+
|
2091 |
+
#~ msgid "What did you expect?"
|
2092 |
+
#~ msgstr "Quel est le fonctionnement attendu ?"
|
2093 |
+
|
2094 |
+
#~ msgid "The plugin suddenly stopped working"
|
2095 |
+
#~ msgstr "L’extension a subitement cessé de fonctionner"
|
2096 |
+
|
2097 |
+
#~ msgid "The plugin broke my site"
|
2098 |
+
#~ msgstr "L’extension a cassé mon site"
|
2099 |
+
|
2100 |
+
#~ msgid "I couldn't understand how to get it work"
|
2101 |
+
#~ msgstr "Je n’arrive pas à comprendre commen la faire fonctionner"
|
2102 |
+
|
2103 |
+
#~ msgid "I found a better plugin"
|
2104 |
+
#~ msgstr "J’ai trouvé une meuilleure extension"
|
2105 |
+
|
2106 |
+
#~ msgid "What's the plugin name?"
|
2107 |
+
#~ msgstr "Quel est le nom de l’extension ?"
|
2108 |
+
|
2109 |
+
#~ msgid ""
|
2110 |
+
#~ "The plugin is great, but I need specific feature that you don't support"
|
2111 |
+
#~ msgstr ""
|
2112 |
+
#~ "L’extension est magnifique, mais j’ai besoin d’une "
|
2113 |
+
#~ "fonctionnalité spécifique que vous n’offrez pas"
|
2114 |
+
|
2115 |
+
#~ msgid "What feature?"
|
2116 |
+
#~ msgstr "Quelle fonctionalité ?"
|
2117 |
+
|
2118 |
+
#~ msgid "I no longer need the plugin"
|
2119 |
+
#~ msgstr "Je n’ai plus besoin de cette extension"
|
2120 |
+
|
2121 |
+
#~ msgid "It's a temporary deactivation, I'm just debugging an issue"
|
2122 |
+
#~ msgstr ""
|
2123 |
+
#~ "C’est une désactivation temporaire, je suis entrain de résoudre un "
|
2124 |
+
#~ "problème"
|
2125 |
+
|
2126 |
+
#~ msgid "Other"
|
2127 |
+
#~ msgstr "Autre"
|
2128 |
+
|
2129 |
+
#~ msgid "Quick Feedback"
|
2130 |
+
#~ msgstr "Retour rapide"
|
2131 |
+
|
2132 |
+
#~ msgid "If you have a moment, please let us know why you are deactivating"
|
2133 |
+
#~ msgstr ""
|
2134 |
+
#~ "Si vous avez quelques instants, merci de nous dire pourquoi vous "
|
2135 |
+
#~ "désactivez l’extension"
|
2136 |
+
|
2137 |
+
#~ msgid "Send website data and allow to contact me back"
|
2138 |
+
#~ msgstr ""
|
2139 |
+
#~ "Envoyer les informations sur le site et autorisez un contact en retour"
|
2140 |
+
|
2141 |
+
#~ msgid "Cancel"
|
2142 |
+
#~ msgstr "Annuler"
|
2143 |
+
|
2144 |
+
#~ msgid "Processing"
|
2145 |
+
#~ msgstr "En cours"
|
2146 |
+
|
2147 |
+
#~ msgid "Submit & Deactivate"
|
2148 |
+
#~ msgstr "Envoyer et désactiver"
|
2149 |
+
|
2150 |
+
#~ msgid "Please tell us the reason so we can improve it."
|
2151 |
+
#~ msgstr ""
|
2152 |
+
#~ "Merci de nous en dire la raison afin que nous puission l’améliorer."
|
2153 |
+
|
2154 |
+
#~ msgid "Deactivate"
|
2155 |
+
#~ msgstr "Désactivé"
|
2156 |
+
|
2157 |
+
#~ msgid "System Status"
|
2158 |
+
#~ msgstr "Etat du système"
|
2159 |
+
|
2160 |
+
#~ msgid "Please, enter your license key"
|
2161 |
+
#~ msgstr "Merci de saisir votre clé de licence"
|
2162 |
+
|
2163 |
+
#~ msgid ""
|
2164 |
+
#~ "If necessary, you can check if the license key is correct or reenter it "
|
2165 |
+
#~ "in the field below. You can find your license key on your personal page - "
|
2166 |
+
#~ "Client Area - on our website"
|
2167 |
+
#~ msgstr ""
|
2168 |
+
#~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
|
2169 |
+
#~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
|
2170 |
+
#~ "clé de licence sur votre page personnelle (zone client) sur notre site "
|
2171 |
+
#~ "web."
|
2172 |
+
|
2173 |
+
#~ msgid ""
|
2174 |
+
#~ "(your username is the email address specified during the purchase). If "
|
2175 |
+
#~ "necessary, please submit \"Lost your password?\" request."
|
2176 |
+
#~ msgstr ""
|
2177 |
+
#~ "(votre nom d’utilisateur est l’adresse e-mail que vous avez "
|
2178 |
+
#~ "donnée lors de l’achat de l’extension). Si nécessaire, "
|
2179 |
+
#~ "utilisez la fonction de demande de mot de passe perdu."
|
2180 |
+
|
2181 |
+
#~ msgid "After that, you can activate it by entering your license key."
|
2182 |
+
#~ msgstr ""
|
2183 |
+
#~ " Après vous pouvez activer cette extension en donnant votre clé de "
|
2184 |
+
#~ "licence."
|
2185 |
+
|
2186 |
+
#~ msgid "License key can be found in the"
|
2187 |
+
#~ msgstr "La clé de licence peut être trouvée dans "
|
2188 |
+
|
2189 |
+
#~ msgid "(your username is the email address specified during the purchase)."
|
2190 |
+
#~ msgstr ""
|
2191 |
+
#~ "(votre nom d’utilisateur est l’adresse e-mail que vous avez "
|
2192 |
+
#~ "donnée lors de l’achat de l’extension)."
|
2193 |
+
|
2194 |
+
#~ msgid ""
|
2195 |
+
#~ "Congratulations! The Pro license of the plugin is activated successfully."
|
2196 |
+
#~ msgstr ""
|
2197 |
+
#~ "Félicitations ! La version PRO de cette extension a été activée avec "
|
2198 |
+
#~ "succès."
|
2199 |
+
|
2200 |
+
#~ msgid "Please, go to"
|
2201 |
+
#~ msgstr "Merci d’aller à"
|
2202 |
+
|
2203 |
+
#~ msgid "the setting page"
|
2204 |
+
#~ msgstr "Options supplémentaires"
|
2205 |
+
|
2206 |
+
#~ msgid "You will be redirected automatically in 5 seconds."
|
2207 |
+
#~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
2208 |
+
|
2209 |
+
#~ msgid "Check premium options on the plugin settings page!"
|
2210 |
+
#~ msgstr ""
|
2211 |
+
#~ "Vérifier les options premium sur la page des paramètres de l’"
|
2212 |
+
#~ "extension !"
|
2213 |
+
|
2214 |
+
#~ msgid "Restore all plugin settings to defaults"
|
2215 |
+
#~ msgstr "Remettre les valeurs par défaut des paramètres de l’extension"
|
2216 |
+
|
2217 |
+
#~ msgid "Restore settings"
|
2218 |
+
#~ msgstr "Remettre les paramètres"
|
2219 |
+
|
2220 |
+
#~ msgid "Not enough permissions to create or update the file"
|
2221 |
+
#~ msgstr "Pas assez de droits pour créer ou modifier le fichier"
|
2222 |
+
|
2223 |
+
#~ msgid "Not enough permissions to create the file"
|
2224 |
+
#~ msgstr "Pas assez de droits pour créer le fichier"
|
2225 |
+
|
2226 |
+
#~ msgid "Editing"
|
2227 |
+
#~ msgstr "Modifier"
|
2228 |
+
|
2229 |
+
#~ msgid ""
|
2230 |
+
#~ "Congratulations! Pro version of the plugin is installed and activated "
|
2231 |
+
#~ "successfully."
|
2232 |
+
#~ msgstr ""
|
2233 |
+
#~ "Félicitations ! La version PRO de cette extension a été téléchargée "
|
2234 |
+
#~ "et activée avec succès."
|
2235 |
+
|
2236 |
+
#~ msgid "Show Pro features"
|
2237 |
+
#~ msgstr "Voir les fonctionnalités de la version PRO"
|
2238 |
+
|
2239 |
+
#~ msgid "Enter your license key to install and activate"
|
2240 |
+
#~ msgstr "Saisir votre clé de licence pour installer et activer"
|
2241 |
+
|
2242 |
+
#~ msgid "version of the plugin."
|
2243 |
+
#~ msgstr "version de l’extension."
|
2244 |
+
|
2245 |
+
#~ msgid "Admin Tools"
|
2246 |
+
#~ msgstr "Outils d’administration"
|
2247 |
+
|
2248 |
+
#~ msgid "Content"
|
2249 |
+
#~ msgstr "Contenu"
|
2250 |
+
|
2251 |
+
#~ msgid "eCommerce"
|
2252 |
+
#~ msgstr "eCommerce"
|
2253 |
+
|
2254 |
+
#~ msgid "Marketing"
|
2255 |
+
#~ msgstr "Marketing"
|
2256 |
+
|
2257 |
+
#~ msgid "Navigation"
|
2258 |
+
#~ msgstr "Navigation"
|
2259 |
+
|
2260 |
+
#~ msgid "Recommended"
|
2261 |
+
#~ msgstr "Recommandé"
|
2262 |
+
|
2263 |
+
#~ msgid "Security"
|
2264 |
+
#~ msgstr "Sécurité"
|
2265 |
+
|
2266 |
+
#~ msgid "SEO"
|
2267 |
+
#~ msgstr "SEO"
|
2268 |
+
|
2269 |
+
#~ msgid "SMM"
|
2270 |
+
#~ msgstr "SMM"
|
2271 |
+
|
2272 |
+
#~ msgid "Best secure captcha plugin to protect your WordPress forms."
|
2273 |
+
#~ msgstr ""
|
2274 |
+
#~ "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
|
2275 |
+
|
2276 |
+
#~ msgid "Create your personal car rental/booking and reservation website."
|
2277 |
+
#~ msgstr "Créer votre site personnel de vente/location de voitures."
|
2278 |
+
|
2279 |
+
#~ msgid ""
|
2280 |
+
#~ "Allow customers to reach you using secure contact form plugin any website "
|
2281 |
+
#~ "must have."
|
2282 |
+
#~ msgstr ""
|
2283 |
+
#~ "Permet à vos clients de vous joindre en utilisant un formulaire de "
|
2284 |
+
#~ "contact sécurisé que tout site doit avoir."
|
2285 |
+
|
2286 |
+
#~ msgid "Add unlimited number of contact forms to WordPress website."
|
2287 |
+
#~ msgstr "Ajoute une nombre illimité de formulaires de contact."
|
2288 |
+
|
2289 |
+
#~ msgid "Save and manage Contact Form messages. Never lose important data."
|
2290 |
+
#~ msgstr ""
|
2291 |
+
#~ "Enregistrer et gérer les messages issu du formulaire de contact. Permet "
|
2292 |
+
#~ "de ne pas perdre des informations importantes."
|
2293 |
+
|
2294 |
+
#~ msgid "Add unlimited custom pages to WordPress admin dashboard."
|
2295 |
+
#~ msgstr "Ajouter un nombre illimté de pages dans l’administration."
|
2296 |
+
|
2297 |
+
#~ msgid "Add custom fields to WordPress website search results."
|
2298 |
+
#~ msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
|
2299 |
+
|
2300 |
+
#~ msgid ""
|
2301 |
+
#~ "Add custom post types and taxonomies to WordPress website search results."
|
2302 |
+
#~ msgstr ""
|
2303 |
+
#~ "Ajouter des types d’articles personalisés et des taxonomies dans le "
|
2304 |
+
#~ "résultat de la recherche."
|
2305 |
+
|
2306 |
+
#~ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
2307 |
+
#~ msgstr ""
|
2308 |
+
#~ "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des "
|
2309 |
+
#~ "donations."
|
2310 |
+
|
2311 |
+
#~ msgid ""
|
2312 |
+
#~ "Get latest error log messages to diagnose website problems. Define and "
|
2313 |
+
#~ "fix issues faster."
|
2314 |
+
#~ msgstr ""
|
2315 |
+
#~ "Obtenir les derniers messages d’erreur pour diagnostiquer les "
|
2316 |
+
#~ "problèmes du site. Permet de corriger plus rapidement."
|
2317 |
+
|
2318 |
+
#~ msgid ""
|
2319 |
+
#~ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, "
|
2320 |
+
#~ "and widgets."
|
2321 |
+
#~ msgstr ""
|
2322 |
+
#~ "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, "
|
2323 |
+
#~ "pages et widgets."
|
2324 |
+
|
2325 |
+
#~ msgid ""
|
2326 |
+
#~ "Add beautiful galleries, albums & images to your WordPress website in a "
|
2327 |
+
#~ "few clicks."
|
2328 |
+
#~ msgstr "Ajouter des galeries, albums et images en quelques clics."
|
2329 |
+
|
2330 |
+
#~ msgid ""
|
2331 |
+
#~ "Add Google +1, Share, Follow, Hangout buttons and profile badge to "
|
2332 |
+
#~ "WordPress posts, pages and widgets."
|
2333 |
+
#~ msgstr ""
|
2334 |
+
#~ "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google "
|
2335 |
+
#~ "+1 aux articles, pages et widgets."
|
2336 |
+
|
2337 |
+
#~ msgid ""
|
2338 |
+
#~ "Stronger security solution which protects your WordPress website from "
|
2339 |
+
#~ "hacks and unauthorized login attempts."
|
2340 |
+
#~ msgstr ""
|
2341 |
+
#~ "Solution forte de sécurité qui protège votre site des attaques et des "
|
2342 |
+
#~ "tentatives de connexions."
|
2343 |
+
|
2344 |
+
#~ msgid ""
|
2345 |
+
#~ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
2346 |
+
#~ "results, categories, tags, and widgets."
|
2347 |
+
#~ msgstr ""
|
2348 |
+
#~ "Ajouter les publicités Adsense aux pages, articles, types personalisés, "
|
2349 |
+
#~ "résultats de recherche, catégories, tags, widgets."
|
2350 |
+
|
2351 |
+
#~ msgid ""
|
2352 |
+
#~ "Add Google Analytics code to WordPress website and track basic stats."
|
2353 |
+
#~ msgstr ""
|
2354 |
+
#~ "Ajouter le code Google Analytics et permet de suivre les statistiques "
|
2355 |
+
#~ "basiques."
|
2356 |
+
|
2357 |
+
#~ msgid ""
|
2358 |
+
#~ "Protect WordPress website forms from spam entries with Google Captcha "
|
2359 |
+
#~ "(reCaptcha)."
|
2360 |
+
#~ msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
|
2361 |
+
|
2362 |
+
#~ msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
2363 |
+
#~ msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
|
2364 |
+
|
2365 |
+
#~ msgid ""
|
2366 |
+
#~ "Generate and add XML sitemap to WordPress website. Help search engines "
|
2367 |
+
#~ "index your blog."
|
2368 |
+
#~ msgstr ""
|
2369 |
+
#~ "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de "
|
2370 |
+
#~ "recherche à parcourir votre site."
|
2371 |
+
|
2372 |
+
#~ msgid ""
|
2373 |
+
#~ "Replace external WordPress website links with Google shortlinks and track "
|
2374 |
+
#~ "click stats."
|
2375 |
+
#~ msgstr ""
|
2376 |
+
#~ "Remplacer les liens externes dans votre site par des liens courts de "
|
2377 |
+
#~ "Google et disposer de statistiques."
|
2378 |
+
|
2379 |
+
#~ msgid ""
|
2380 |
+
#~ "Protect WordPress website – allow and deny access for certain IP "
|
2381 |
+
#~ "addresses, hostnames, etc."
|
2382 |
+
#~ msgstr ""
|
2383 |
+
#~ "Protéger votre site en autorisant ou interdissant certaines adresses IP, "
|
2384 |
+
#~ "nom de machine, ..."
|
2385 |
+
|
2386 |
+
#~ msgid ""
|
2387 |
+
#~ "Create your personal job board and listing WordPress website. Search "
|
2388 |
+
#~ "jobs, submit CV/resumes, choose candidates."
|
2389 |
+
#~ msgstr ""
|
2390 |
+
#~ "Créer votre site d’offres d’emploies. Rechercher des emplois, "
|
2391 |
+
#~ "envoyer des CV/des candidatures."
|
2392 |
+
|
2393 |
+
#~ msgid ""
|
2394 |
+
#~ "Protect WordPress website against brute force attacks. Limit rate of "
|
2395 |
+
#~ "login attempts."
|
2396 |
+
#~ msgstr ""
|
2397 |
+
#~ "Protéger le site contre les attaques de brute force. Limite la fréquence "
|
2398 |
+
#~ "des tentatives de connexions."
|
2399 |
+
|
2400 |
+
#~ msgid ""
|
2401 |
+
#~ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and "
|
2402 |
+
#~ "widgets. 5 plugins included – profile, insider, etc."
|
2403 |
+
#~ msgstr ""
|
2404 |
+
#~ "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et "
|
2405 |
+
#~ "widgets. 5 extensions incluses (profile, insider, etc.)"
|
2406 |
+
|
2407 |
+
#~ msgid ""
|
2408 |
+
#~ "Translate WordPress website content to other languages manually. Create "
|
2409 |
+
#~ "multilingual pages, posts, widgets, menus, etc."
|
2410 |
+
#~ msgstr ""
|
2411 |
+
#~ "Traduire le contenu du site dans d’autres langues manuellement. "
|
2412 |
+
#~ "Créer des pages, des articles, des widgets, des menus, etc dans plusieurs "
|
2413 |
+
#~ "langues."
|
2414 |
+
|
2415 |
+
#~ msgid ""
|
2416 |
+
#~ "Add customizable pagination to WordPress website. Split long content to "
|
2417 |
+
#~ "multiple pages for better navigation."
|
2418 |
+
#~ msgstr ""
|
2419 |
+
#~ "Ajouter une pagination presonalisée. Découper un contenu long en "
|
2420 |
+
#~ "plusieurs pages pour une meuilleure navigation."
|
2421 |
+
|
2422 |
+
#~ msgid ""
|
2423 |
+
#~ "Generate PDF files and print WordPress posts/pages. Customize document "
|
2424 |
+
#~ "header/footer styles and appearance."
|
2425 |
+
#~ msgstr ""
|
2426 |
+
#~ "Générer des fichiers PDF pour des pages ou des articles. Personaliser "
|
2427 |
+
#~ "l’en-tête/pied de page, les styles et l’apparence."
|
2428 |
+
|
2429 |
+
#~ msgid ""
|
2430 |
+
#~ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
2431 |
+
#~ "Profile) to WordPress posts, pages and widgets."
|
2432 |
+
#~ msgstr ""
|
2433 |
+
#~ "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, "
|
2434 |
+
#~ "Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
|
2435 |
+
|
2436 |
+
#~ msgid ""
|
2437 |
+
#~ "Create your personal portfolio WordPress website. Manage and showcase "
|
2438 |
+
#~ "past projects to get more clients."
|
2439 |
+
#~ msgstr ""
|
2440 |
+
#~ "Créer votre site de portfolio. Gérer et présenter vos anciens projets "
|
2441 |
+
#~ "pour acquérir de nouveaux clients."
|
2442 |
+
|
2443 |
+
#~ msgid ""
|
2444 |
+
#~ "Export WordPress posts to CSV file format easily. Configure data order."
|
2445 |
+
#~ msgstr ""
|
2446 |
+
#~ "Exporter vos articles dans un format CSV facilement. Configurer l’"
|
2447 |
+
#~ "ordre des données."
|
2448 |
+
|
2449 |
+
#~ msgid ""
|
2450 |
+
#~ "Add extra fields to default WordPress user profile. The easiest way to "
|
2451 |
+
#~ "create and manage additional custom values."
|
2452 |
+
#~ msgstr ""
|
2453 |
+
#~ "Ajouter des champs personalisés au profil utilisateur. La façon la plus "
|
2454 |
+
#~ "simple de créer et gérer des informations supplémentaires."
|
2455 |
+
|
2456 |
+
#~ msgid ""
|
2457 |
+
#~ "Add and display HTML advertisement banner on WordPress website. Customize "
|
2458 |
+
#~ "bar styles and appearance."
|
2459 |
+
#~ msgstr ""
|
2460 |
+
#~ "Ajouter et afficher une bannière de publicité en HTML. Personaliser le "
|
2461 |
+
#~ "style et l’apparence de la barre."
|
2462 |
+
|
2463 |
+
#~ msgid ""
|
2464 |
+
#~ "Add customizable quotes and tips blocks to WordPress posts, pages and "
|
2465 |
+
#~ "widgets."
|
2466 |
+
#~ msgstr ""
|
2467 |
+
#~ "Ajouter des blocs d’avis et d’astuces sur vos pages, articles "
|
2468 |
+
#~ "et widgets."
|
2469 |
+
|
2470 |
+
#~ msgid ""
|
2471 |
+
#~ "Add rating plugin to your WordPress website to receive feedback from your "
|
2472 |
+
#~ "customers."
|
2473 |
+
#~ msgstr ""
|
2474 |
+
#~ "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
|
2475 |
+
|
2476 |
+
#~ msgid ""
|
2477 |
+
#~ "Create your personal real estate WordPress website. Sell, rent and buy "
|
2478 |
+
#~ "properties. Add, search and browse listings easily."
|
2479 |
+
#~ msgstr ""
|
2480 |
+
#~ "Créer votre site d’annonces immobilières. Vendre, louer et acheter "
|
2481 |
+
#~ "des biens. Recherche et catalogue facilement mis en place."
|
2482 |
+
|
2483 |
+
#~ msgid ""
|
2484 |
+
#~ "Add related, featured, latest, and popular posts to your WordPress "
|
2485 |
+
#~ "website. Connect your blog readers with a relevant content."
|
2486 |
+
#~ msgstr ""
|
2487 |
+
#~ "Ajouter des informations sur les articles en relations, mis en avant, "
|
2488 |
+
#~ "populaires. Fournisser à vos lecteurs un contenu passionant."
|
2489 |
+
|
2490 |
+
#~ msgid ""
|
2491 |
+
#~ "Send bulk email messages to WordPress users. Custom templates, advanced "
|
2492 |
+
#~ "settings and detailed reports."
|
2493 |
+
#~ msgstr ""
|
2494 |
+
#~ "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles "
|
2495 |
+
#~ "personalisables, paramétrage avancé et reporting complet."
|
2496 |
+
|
2497 |
+
#~ msgid ""
|
2498 |
+
#~ "The best responsive slider plugin for your WordPress website. Create "
|
2499 |
+
#~ "beautifully animated slides just in a few clicks."
|
2500 |
+
#~ msgstr ""
|
2501 |
+
#~ "Extension pour mettre en place des diaporamas responsive. Créer des "
|
2502 |
+
#~ "diaporamas animés en quelques clics."
|
2503 |
+
|
2504 |
+
#~ msgid ""
|
2505 |
+
#~ "Configure SMTP server to receive email messages from WordPress to Gmail, "
|
2506 |
+
#~ "Yahoo, Hotmail and other services."
|
2507 |
+
#~ msgstr ""
|
2508 |
+
#~ "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, "
|
2509 |
+
#~ "Hotmail et d’autres services."
|
2510 |
+
|
2511 |
+
#~ msgid ""
|
2512 |
+
#~ "Add social media buttons and widgets to WordPress posts, pages and "
|
2513 |
+
#~ "widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
|
2514 |
+
#~ msgstr ""
|
2515 |
+
#~ "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, "
|
2516 |
+
#~ "LinkedIn aux articles, pages et widgets."
|
2517 |
+
|
2518 |
+
#~ msgid ""
|
2519 |
+
#~ "Add social media login, registration, and commenting to your WordPress "
|
2520 |
+
#~ "website."
|
2521 |
+
#~ msgstr ""
|
2522 |
+
#~ "Ajouter la connection, l’enregistrement et la rédaction de "
|
2523 |
+
#~ "commentaires pour vos réseaux sociaux."
|
2524 |
+
|
2525 |
+
#~ msgid ""
|
2526 |
+
#~ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
2527 |
+
#~ "Collect data and subscribe your users."
|
2528 |
+
#~ msgstr ""
|
2529 |
+
#~ "Ajouter un formulaire d’inscription à votre lettre d’"
|
2530 |
+
#~ "information sur vos pages, articles et widgets. Récolter les inscriptions "
|
2531 |
+
#~ "et les données de vos utilisateurs."
|
2532 |
+
|
2533 |
+
#~ msgid ""
|
2534 |
+
#~ "Add testimonials and feedbacks from your customers to WordPress website "
|
2535 |
+
#~ "posts, pages, and widgets."
|
2536 |
+
#~ msgstr ""
|
2537 |
+
#~ "Ajouter des témoignages et des retours de vos clients aux articles, pages "
|
2538 |
+
#~ "et widgets."
|
2539 |
+
|
2540 |
+
#~ msgid ""
|
2541 |
+
#~ "Best timesheet plugin for WordPress. Track employee time, streamline "
|
2542 |
+
#~ "attendance and generate reports."
|
2543 |
+
#~ msgstr ""
|
2544 |
+
#~ "La meuilleure extension de suivi du temps. Suiver le temps de vos "
|
2545 |
+
#~ "employés, le temps de présence et créer des rapports."
|
2546 |
+
|
2547 |
+
#~ msgid ""
|
2548 |
+
#~ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress "
|
2549 |
+
#~ "posts and pages."
|
2550 |
+
#~ msgstr ""
|
2551 |
+
#~ "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, "
|
2552 |
+
#~ "pages et widgets."
|
2553 |
+
|
2554 |
+
#~ msgid ""
|
2555 |
+
#~ "Automatically check and update WordPress website core with all installed "
|
2556 |
+
#~ "plugins and themes to the latest versions."
|
2557 |
+
#~ msgstr ""
|
2558 |
+
#~ "Mettre à jour automatiquement votre site pour WordPress, les extensions "
|
2559 |
+
#~ "et les thèmes."
|
2560 |
+
|
2561 |
+
#~ msgid ""
|
2562 |
+
#~ "Powerful user role management plugin for WordPress website. Create, edit, "
|
2563 |
+
#~ "copy, and delete user roles."
|
2564 |
+
#~ msgstr ""
|
2565 |
+
#~ "Gestion des droits des utilisateurs. Créer, modifier et supprimer des "
|
2566 |
+
#~ "droits utilisateurs."
|
2567 |
+
|
2568 |
+
#~ msgid ""
|
2569 |
+
#~ "Display live count of online visitors who are currently browsing your "
|
2570 |
+
#~ "WordPress website."
|
2571 |
+
#~ msgstr "Afficher en direct le compteur des visiteurs sur votre site."
|
2572 |
+
|
2573 |
+
#~ msgid ""
|
2574 |
+
#~ "Backup and export Zendesk Help Center content automatically to your "
|
2575 |
+
#~ "WordPress website database."
|
2576 |
+
#~ msgstr ""
|
2577 |
+
#~ "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers "
|
2578 |
+
#~ "votre site."
|
languages/gallery-plugin-id_ID.mo
CHANGED
Binary file
|
languages/gallery-plugin-id_ID.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
"Language: id_ID\n"
|
@@ -13,121 +13,121 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Pengaturan Gallery"
|
22 |
|
23 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Pengaturan global"
|
26 |
|
27 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Upgrade ke yang lebih baik"
|
30 |
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Kembali ke semua album"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "See images »"
|
37 |
msgstr "Lihat gambar & raquo;"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Galleries"
|
41 |
msgstr "Galeri"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Gallery"
|
45 |
msgstr "Galeri"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Tambahkan Galeri Baru"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Mengedit Galeri"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Galeri baru"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Lihat Galeri"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Cari Galeri"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Tidak ada Galeri ditemukan"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
-
#: gallery-plugin.php:
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Galeri Kategori"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Galeri Kategori"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Tambahkan Baru Galeri Kategori"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
#, fuzzy
|
95 |
msgid "New Gallery Category"
|
96 |
msgstr "Tambahkan Baru Galeri Kategori"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "View Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid "Find Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "No Gallery Categories found"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "No Gallery Categories found in Trash"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Parent Gallery Category"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Gallery Categories list navigation"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Gallery Categories list"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Gallery Shortcode"
|
128 |
msgstr "galeri pendek"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid ""
|
132 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
133 |
"widgets by using the following shortcode:"
|
@@ -135,7 +135,7 @@ msgstr ""
|
|
135 |
"Menambahkan sebuah galeri tunggal dengan gambar untuk posting, halaman, "
|
136 |
"jenis posting kustom atau widget dengan menggunakan shortcode berikut:"
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid ""
|
140 |
"Add a gallery cover including featured image, description, and a link to "
|
141 |
"your single gallery using the following shortcode:"
|
@@ -143,90 +143,135 @@ msgstr ""
|
|
143 |
"Menambahkan penutup galeri termasuk gambar fitur, deskripsi, dan link ke "
|
144 |
"galeri tunggal Anda menggunakan shortcode berikut:"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Shortcode"
|
159 |
msgstr "Kode pendek"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "All Gallery Categories"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "You can't delete default gallery category."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Sorry, nothing found."
|
171 |
msgstr "Maaf, tidak ditemukan."
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "Featured Image"
|
175 |
msgstr "Gambar Pilihan"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
179 |
-
msgid "Title"
|
180 |
-
msgstr "Judul"
|
181 |
-
|
182 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
183 |
msgid "Images"
|
184 |
msgstr "gambar"
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
msgid "Author"
|
188 |
-
msgstr "Penulis"
|
189 |
-
|
190 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
191 |
-
#: includes/class-gllr-settings.php:680
|
192 |
-
msgid "Date"
|
193 |
-
msgstr "Tanggal"
|
194 |
-
|
195 |
-
#: gallery-plugin.php:1688
|
196 |
#, php-format
|
197 |
msgid "%s Settings"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
202 |
msgid "Settings"
|
203 |
msgstr "pengaturan"
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "FAQ"
|
207 |
msgstr "FAQ"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "Support"
|
211 |
msgstr "Mendukung"
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
msgid "Updating images..."
|
215 |
msgstr "Memperbarui gambar ..."
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "No images found."
|
219 |
msgstr "Tidak ada gambar yang ditemukan."
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "All images were updated."
|
223 |
msgstr "Semua gambar yang diperbarui."
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Error."
|
227 |
msgstr "Kesalahan."
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid ""
|
231 |
"You are about to remove these items from this gallery.\n"
|
232 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -234,7 +279,7 @@ msgstr ""
|
|
234 |
"Anda akan menghapus item dari galeri ini. \\ N 'Batal' untuk menghentikan, "
|
235 |
"'OK' untuk menghapus."
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid ""
|
239 |
"You are about to remove this image from the gallery.\n"
|
240 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -242,7 +287,7 @@ msgstr ""
|
|
242 |
"Anda akan menghapus gambar ini dari galeri. \\ N 'Batal' untuk menghentikan, "
|
243 |
"'OK' untuk menghapus."
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid ""
|
247 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
248 |
"switching?"
|
@@ -250,19 +295,23 @@ msgstr ""
|
|
250 |
"Beralih ke mode lain, semua data yang belum disimpan akan hilang. Menyimpan "
|
251 |
"data sebelum beralih?"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "Insert Media"
|
255 |
msgstr "Insert Media"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Insert"
|
259 |
msgstr "Memasukkan"
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
262 |
msgid "Image size not defined"
|
263 |
msgstr "ukuran gambar tidak didefinisikan"
|
264 |
|
265 |
-
#: gallery-plugin.php:
|
266 |
msgid ""
|
267 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
268 |
"reload images manually."
|
@@ -270,75 +319,75 @@ msgstr ""
|
|
270 |
"update Plugin hanya PNG, JPEG, GIF, WPMP atau XBM filetype. Untuk lainnya, "
|
271 |
"silakan ulang gambar secara manual."
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Invalid path"
|
275 |
msgstr "Jalan yang salah"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "List View"
|
279 |
msgstr "Daftar View"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Grid View"
|
283 |
msgstr "Tampilan bergaris"
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid "Filter"
|
287 |
msgstr "Menyaring"
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Empty Trash"
|
291 |
msgstr "Sampah kosong"
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "No images found"
|
295 |
msgstr "Tidak ada gambar yang ditemukan"
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "Select bulk action"
|
299 |
msgstr "tindakan massal pilih"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "Bulk Actions"
|
303 |
msgstr "Aksi besar"
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Apply"
|
307 |
msgstr "Menerapkan"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Delete from Gallery"
|
311 |
msgstr "Hapus dari Galeri"
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Bulk Select"
|
315 |
msgstr "massal Pilih"
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "Cancel Selection"
|
319 |
msgstr "Batal Seleksi"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Delete Selected"
|
323 |
msgstr "Hapus yang Dipilih"
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "File"
|
327 |
msgstr "Mengajukan"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "Dimensions"
|
331 |
msgstr "Ukuran"
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "Alt Text"
|
335 |
msgstr "Alt Teks"
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "URL"
|
339 |
msgstr "URL"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid ""
|
343 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
344 |
"to open a full size image."
|
@@ -346,146 +395,142 @@ msgstr ""
|
|
346 |
"Masukkan URL kustom Anda untuk menghubungkan gambar ini ke halaman lain atau "
|
347 |
"file. Biarkan kosong untuk membuka gambar ukuran penuh."
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Remove Image from Gallery"
|
351 |
msgstr "Hapus Gambar dari Galeri"
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Edit Image Info"
|
355 |
msgstr "Info mengedit Gambar"
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid "Deselect"
|
359 |
msgstr "hapus"
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "File name"
|
363 |
msgstr "Nama file"
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "File type"
|
367 |
msgstr "jenis file"
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
msgid "Description"
|
371 |
msgstr "Deskripsi"
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
msgid "Lightbox Button URL"
|
375 |
msgstr "URL Tombol Lightbox"
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
msgid "New Tab"
|
379 |
msgstr "Tab baru"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "Enable to open URLs above in a new tab."
|
383 |
msgstr "Memungkinkan untuk membuka URL di atas di tab baru."
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Go Pro"
|
387 |
msgstr "Go Pro"
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Edit more details"
|
391 |
msgstr "Mengedit rincian lebih lanjut"
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
msgid "Remove from Gallery"
|
395 |
msgstr "Hapus dari Galeri"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
#, php-format
|
399 |
msgid "Select %s"
|
400 |
msgstr "Pilih %s"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
#, php-format
|
404 |
msgid "Edit “%s”"
|
405 |
msgstr "Mengedit & # 8220; %s & # 8221;"
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "Edit Attachment Info"
|
409 |
msgstr "Info mengedit Lampiran"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "Edit"
|
413 |
msgstr "mengedit"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "Trash"
|
417 |
msgstr "Sampah"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Delete Permanently"
|
421 |
msgstr "Hapus secara permanen"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
#, php-format
|
425 |
msgid "View “%s”"
|
426 |
msgstr "Lihat & # 8220; %s & # 8221;"
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "View"
|
430 |
msgstr "Melihat"
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
msgid "Attach"
|
434 |
msgstr "Melampirkan"
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
msgid "Restore"
|
438 |
msgstr "Mengembalikan"
|
439 |
|
440 |
-
#: gallery-plugin.php:
|
441 |
msgid "A list or dropdown of Gallery categories."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "Select Gallery Category"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
#, fuzzy
|
450 |
msgid "Title:"
|
451 |
msgstr "Judul"
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "Display as dropdown"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "Show gallery counts"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "Show hierarchy"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
msgid "Warning"
|
467 |
msgstr "PERINGATAN"
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "You can add only images to the gallery"
|
471 |
msgstr "Anda dapat menambahkan hanya gambar ke galeri"
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
-
msgid "or"
|
475 |
-
msgstr "atau"
|
476 |
-
|
477 |
-
#: gallery-plugin.php:3181
|
478 |
msgid "no title"
|
479 |
msgstr "tanpa judul"
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid ""
|
483 |
"Display an album image with the description and the link to a single gallery "
|
484 |
"page"
|
485 |
msgstr ""
|
486 |
"Menampilkan gambar album dengan deskripsi dan link ke halaman galeri tunggal"
|
487 |
|
488 |
-
#: gallery-plugin.php:
|
489 |
msgid "Sorry, no gallery found."
|
490 |
msgstr "Maaf, tidak ada galeri ditemukan."
|
491 |
|
@@ -517,106 +562,128 @@ msgstr "Ekspor Impor"
|
|
517 |
msgid "License Key"
|
518 |
msgstr "Kunci lisensi"
|
519 |
|
520 |
-
#: includes/class-gllr-settings.php:
|
521 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
522 |
-
msgstr "ukuran gambar kustom berubah. Anda perlu memperbarui gambar galeri."
|
523 |
-
|
524 |
-
#: includes/class-gllr-settings.php:247
|
525 |
msgid "Settings saved"
|
526 |
msgstr "pengaturan disimpan"
|
527 |
|
528 |
-
#: includes/class-gllr-settings.php:
|
529 |
msgid "Please, enable JavaScript in Your browser."
|
530 |
msgstr "Silahkan mengaktifkan JavaScript di browser Anda."
|
531 |
|
532 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
533 |
msgid "Update Images"
|
534 |
msgstr "Gambar pembaruan"
|
535 |
|
536 |
-
#: includes/class-gllr-settings.php:
|
537 |
msgid "Gallery Images"
|
538 |
msgstr "Galeri gambar"
|
539 |
|
540 |
-
#: includes/class-gllr-settings.php:
|
541 |
msgid "Images adding requires JavaScript."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: includes/class-gllr-settings.php:
|
545 |
msgid "Add Media"
|
546 |
msgstr "Tambahkan Media"
|
547 |
|
548 |
-
#: includes/class-gllr-settings.php:
|
549 |
msgid "The grid view for the Gallery images requires JavaScript."
|
550 |
msgstr "Tampilan kotak untuk gambar Galeri membutuhkan JavaScript."
|
551 |
|
552 |
-
#: includes/class-gllr-settings.php:
|
553 |
msgid "Switch to the list view"
|
554 |
msgstr "Beralih ke tampilan daftar"
|
555 |
|
556 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "Single Gallery Settings"
|
558 |
msgstr "Pengaturan Galeri tunggal"
|
559 |
|
560 |
-
#: includes/class-gllr-settings.php:
|
561 |
#, php-format
|
562 |
msgid "Enable to configure single gallery settings and disable %s."
|
563 |
msgstr ""
|
564 |
"Memungkinkan untuk mengkonfigurasi pengaturan galeri tunggal dan "
|
565 |
"menonaktifkan %s ."
|
566 |
|
567 |
-
#: includes/class-gllr-settings.php:
|
568 |
-
#: includes/class-gllr-settings.php:
|
569 |
-
#: includes/class-gllr-settings.php:
|
570 |
-
#: includes/class-gllr-settings.php:
|
571 |
-
#: includes/class-gllr-settings.php:
|
572 |
msgid "Close"
|
573 |
msgstr "Dekat"
|
574 |
|
575 |
-
#: includes/class-gllr-settings.php:
|
576 |
msgid "Gallery Layout"
|
577 |
msgstr "galeri Tata Letak"
|
578 |
|
579 |
-
#: includes/class-gllr-settings.php:
|
580 |
msgid "Grid"
|
581 |
msgstr "kisi"
|
582 |
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
msgid "Masonry"
|
585 |
msgstr "perkumpulan rahasia"
|
586 |
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
msgid "Number of Columns"
|
589 |
msgstr "Jumlah kolom"
|
590 |
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
#, php-format
|
593 |
msgid "Number of gallery columns (default is %s)."
|
594 |
msgstr "Jumlah kolom galeri (default adalah %s )."
|
595 |
|
596 |
-
#: includes/class-gllr-settings.php:
|
597 |
msgid "Image Size"
|
598 |
msgstr "Ukuran gambar"
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
msgid "Custom"
|
602 |
msgstr "Adat"
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
msgid ""
|
606 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
607 |
msgstr ""
|
608 |
"Maksimum ukuran galeri foto. \\ \"Custom \" menggunakan Gambar nilai Dimensi."
|
609 |
|
610 |
-
#: includes/class-gllr-settings.php:
|
611 |
msgid "Custom Image Size"
|
612 |
msgstr "Ukuran kustom Gambar"
|
613 |
|
614 |
-
#: includes/class-gllr-settings.php:
|
615 |
-
#: includes/class-gllr-settings.php:
|
616 |
msgid "px"
|
617 |
msgstr "px"
|
618 |
|
619 |
-
#: includes/class-gllr-settings.php:
|
620 |
msgid ""
|
621 |
"Adjust these values based on the number of columns in your gallery. This "
|
622 |
"won't effect the full size of your images in the lightbox."
|
@@ -624,11 +691,11 @@ msgstr ""
|
|
624 |
"Menyesuaikan nilai-nilai ini didasarkan pada jumlah kolom dalam galeri anda. "
|
625 |
"Ini tidak akan mempengaruhi ukuran penuh gambar Anda dalam lightbox."
|
626 |
|
627 |
-
#: includes/class-gllr-settings.php:
|
628 |
msgid "Crop Images"
|
629 |
msgstr "Gambar tanaman"
|
630 |
|
631 |
-
#: includes/class-gllr-settings.php:
|
632 |
msgid ""
|
633 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
634 |
"to resize images automatically using their aspect ratio."
|
@@ -637,63 +704,63 @@ msgstr ""
|
|
637 |
"Ukuran Custom Image. Menonaktifkan untuk mengubah ukuran gambar secara "
|
638 |
"otomatis menggunakan aspek rasio mereka."
|
639 |
|
640 |
-
#: includes/class-gllr-settings.php:
|
641 |
msgid "Crop Position"
|
642 |
msgstr "Posisi tanaman"
|
643 |
|
644 |
-
#: includes/class-gllr-settings.php:
|
645 |
msgid "Select crop position base (by default: center)."
|
646 |
msgstr "Pilih posisi tanaman dasar (default: pusat)."
|
647 |
|
648 |
-
#: includes/class-gllr-settings.php:
|
649 |
msgid "Image Title"
|
650 |
msgstr "gambar Judul"
|
651 |
|
652 |
-
#: includes/class-gllr-settings.php:
|
653 |
msgid "Enable to display image title along with the gallery image."
|
654 |
msgstr ""
|
655 |
"Memungkinkan untuk menampilkan judul gambar bersama dengan gambar galeri."
|
656 |
|
657 |
-
#: includes/class-gllr-settings.php:
|
658 |
msgid "Image Title Position"
|
659 |
msgstr "Gambar Judul Posisi"
|
660 |
|
661 |
-
#: includes/class-gllr-settings.php:
|
662 |
msgid "Under image"
|
663 |
msgstr "di bawah gambar"
|
664 |
|
665 |
-
#: includes/class-gllr-settings.php:
|
666 |
msgid "On mouse hover"
|
667 |
msgstr "Pada mouse hover"
|
668 |
|
669 |
-
#: includes/class-gllr-settings.php:
|
670 |
msgid "Image Border"
|
671 |
msgstr "gambar Border"
|
672 |
|
673 |
-
#: includes/class-gllr-settings.php:
|
674 |
msgid ""
|
675 |
"Enable images border using the styles defined for Image Border Size and "
|
676 |
"Color options."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/class-gllr-settings.php:
|
680 |
msgid "Image Border Size"
|
681 |
msgstr "Gambar Ukuran Border"
|
682 |
|
683 |
-
#: includes/class-gllr-settings.php:
|
684 |
#, php-format
|
685 |
msgid "Gallery image border width (default is %s)"
|
686 |
msgstr "Galeri lebar border image (default adalah %s )"
|
687 |
|
688 |
-
#: includes/class-gllr-settings.php:
|
689 |
msgid "Image Border Color"
|
690 |
msgstr "Warna Gambar Border"
|
691 |
|
692 |
-
#: includes/class-gllr-settings.php:
|
693 |
msgid "Pagination"
|
694 |
msgstr "pagination"
|
695 |
|
696 |
-
#: includes/class-gllr-settings.php:
|
697 |
msgid ""
|
698 |
"Enable pagination for images to limit number of images displayed on a single "
|
699 |
"gallery page."
|
@@ -701,36 +768,32 @@ msgstr ""
|
|
701 |
"Aktifkan pagination untuk gambar untuk membatasi jumlah gambar yang "
|
702 |
"ditampilkan pada halaman galeri tunggal."
|
703 |
|
704 |
-
#: includes/class-gllr-settings.php:
|
705 |
msgid "Number of Images"
|
706 |
msgstr "Jumlah gambar"
|
707 |
|
708 |
-
#: includes/class-gllr-settings.php:
|
709 |
#, php-format
|
710 |
msgid "Number of images displayed per page (default is %d)."
|
711 |
msgstr "Jumlah gambar yang ditampilkan per halaman (default adalah %d )."
|
712 |
|
713 |
-
#: includes/class-gllr-settings.php:
|
714 |
msgid "Sort Images by"
|
715 |
msgstr "Urutkan Gambar dengan"
|
716 |
|
717 |
-
#: includes/class-gllr-settings.php:
|
718 |
msgid "Manually (default)"
|
719 |
msgstr "Manual (default)"
|
720 |
|
721 |
-
#: includes/class-gllr-settings.php:
|
722 |
msgid "Image ID"
|
723 |
msgstr "ID gambar"
|
724 |
|
725 |
-
#: includes/class-gllr-settings.php:
|
726 |
msgid "Name"
|
727 |
msgstr "Nama"
|
728 |
|
729 |
-
#: includes/class-gllr-settings.php:
|
730 |
-
msgid "Random"
|
731 |
-
msgstr "Acak"
|
732 |
-
|
733 |
-
#: includes/class-gllr-settings.php:516
|
734 |
msgid ""
|
735 |
"Select images sorting order in your gallery. By default, you can sort images "
|
736 |
"manually in the images tab."
|
@@ -738,23 +801,23 @@ msgstr ""
|
|
738 |
"Pilih gambar menyortir urutan galeri Anda. Secara default, Anda dapat "
|
739 |
"mengurutkan gambar secara manual di tab gambar."
|
740 |
|
741 |
-
#: includes/class-gllr-settings.php:
|
742 |
msgid "Arrange Images by"
|
743 |
msgstr "Atur Gambar dengan"
|
744 |
|
745 |
-
#: includes/class-gllr-settings.php:
|
746 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
747 |
msgstr "Naik (misalnya 1, 2, 3, a, b, c)"
|
748 |
|
749 |
-
#: includes/class-gllr-settings.php:
|
750 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
751 |
msgstr "Menurun (misalnya 3, 2, 1; c, b, a)"
|
752 |
|
753 |
-
#: includes/class-gllr-settings.php:
|
754 |
msgid "Back Link"
|
755 |
msgstr "Back link"
|
756 |
|
757 |
-
#: includes/class-gllr-settings.php:
|
758 |
msgid ""
|
759 |
"Enable to show a back link in a single gallery page which navigate to a "
|
760 |
"previous page."
|
@@ -762,96 +825,96 @@ msgstr ""
|
|
762 |
"Memungkinkan untuk menunjukkan link kembali halaman galeri tunggal yang "
|
763 |
"menavigasi ke halaman sebelumnya."
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
msgid "Back Link URL"
|
767 |
msgstr "Tautan URL Kembali"
|
768 |
|
769 |
-
#: includes/class-gllr-settings.php:
|
770 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
771 |
msgstr ""
|
772 |
"Kembali menautkan URL halaman kustom. Biarkan kosong untuk menggunakan "
|
773 |
"Gallery template halaman."
|
774 |
|
775 |
-
#: includes/class-gllr-settings.php:
|
776 |
msgid "Back Link Label"
|
777 |
msgstr "Back Link Label"
|
778 |
|
779 |
-
#: includes/class-gllr-settings.php:
|
780 |
msgid "Back Link with Shortcode"
|
781 |
msgstr "Back Link dengan pendek"
|
782 |
|
783 |
-
#: includes/class-gllr-settings.php:
|
784 |
msgid "Enable to display a back link on a page where shortcode is used."
|
785 |
msgstr ""
|
786 |
"Memungkinkan untuk menampilkan link kembali pada halaman di mana shortcode "
|
787 |
"digunakan."
|
788 |
|
789 |
-
#: includes/class-gllr-settings.php:
|
790 |
msgid "Cover Settings"
|
791 |
msgstr "Pengaturan penutup"
|
792 |
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
msgid "Galleries Page"
|
795 |
msgstr "galeri Halaman"
|
796 |
|
797 |
-
#: includes/class-gllr-settings.php:
|
798 |
msgid "Base page where all existing galleries will be displayed."
|
799 |
msgstr "halaman dasar di mana semua galeri yang ada akan ditampilkan."
|
800 |
|
801 |
-
#: includes/class-gllr-settings.php:
|
802 |
msgid "Albums Displaying"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: includes/class-gllr-settings.php:
|
806 |
msgid "Column"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: includes/class-gllr-settings.php:
|
810 |
msgid "Rows"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: includes/class-gllr-settings.php:
|
818 |
msgid "Column Alignment"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/class-gllr-settings.php:
|
822 |
msgid "Left"
|
823 |
msgstr "Kiri"
|
824 |
|
825 |
-
#: includes/class-gllr-settings.php:
|
826 |
msgid "Right"
|
827 |
msgstr "Право"
|
828 |
|
829 |
-
#: includes/class-gllr-settings.php:
|
830 |
msgid "Center"
|
831 |
msgstr "Центр"
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
msgid "Select the column alignment."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid "Cover Image Size"
|
839 |
msgstr "Ukuran Penutup gambar"
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
843 |
msgstr ""
|
844 |
"Maksimum ukuran Penutup gambar. Kustom menggunakan Gambar nilai Dimensi."
|
845 |
|
846 |
-
#: includes/class-gllr-settings.php:
|
847 |
msgid "Custom Cover Image Size"
|
848 |
msgstr "Kustom Sampul Ukuran Gambar"
|
849 |
|
850 |
-
#: includes/class-gllr-settings.php:
|
851 |
msgid "Crop Cover Images"
|
852 |
msgstr "Gambar Cover Crop"
|
853 |
|
854 |
-
#: includes/class-gllr-settings.php:
|
855 |
msgid ""
|
856 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
857 |
"Disable to resize images automatically using their aspect ratio."
|
@@ -860,11 +923,11 @@ msgstr ""
|
|
860 |
"Custom Sampul Ukuran Gambar. Menonaktifkan untuk mengubah ukuran gambar "
|
861 |
"secara otomatis menggunakan aspek rasio mereka."
|
862 |
|
863 |
-
#: includes/class-gllr-settings.php:
|
864 |
msgid "Cover Image Border"
|
865 |
msgstr "Penutup Gambar Berbatasan"
|
866 |
|
867 |
-
#: includes/class-gllr-settings.php:
|
868 |
msgid ""
|
869 |
"Enable cover images border using the styles defined for Image Border Size "
|
870 |
"and Color."
|
@@ -872,56 +935,40 @@ msgstr ""
|
|
872 |
"Aktifkan gambar sampul perbatasan menggunakan gaya yang ditetapkan untuk "
|
873 |
"Ukuran Gambar Berbatasan dan Warna."
|
874 |
|
875 |
-
#: includes/class-gllr-settings.php:
|
876 |
msgid "Cover Image Border Size"
|
877 |
msgstr "Penutup Ukuran Gambar Border"
|
878 |
|
879 |
-
#: includes/class-gllr-settings.php:
|
880 |
#, php-format
|
881 |
msgid "Cover image border width (default is %s)"
|
882 |
msgstr "Menutupi lebar berbatasan gambar (default adalah %s )"
|
883 |
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
msgid "Cover Image Border Color"
|
886 |
msgstr "Penutup gambar Warna Berbatasan"
|
887 |
|
888 |
-
#: includes/class-gllr-settings.php:
|
889 |
msgid "Sort Albums by"
|
890 |
msgstr "Album Urutkan berdasarkan"
|
891 |
|
892 |
-
#: includes/class-gllr-settings.php:
|
893 |
-
msgid "Gallery ID"
|
894 |
-
msgstr "galeri ID"
|
895 |
-
|
896 |
-
#: includes/class-gllr-settings.php:681
|
897 |
-
msgid "Last modified date"
|
898 |
-
msgstr "tanggal diubah terakhir"
|
899 |
-
|
900 |
-
#: includes/class-gllr-settings.php:682
|
901 |
-
msgid "Comment count"
|
902 |
-
msgstr "jumlah komentar"
|
903 |
-
|
904 |
-
#: includes/class-gllr-settings.php:683
|
905 |
-
msgid "\"Order\" field on the gallery edit page"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: includes/class-gllr-settings.php:687
|
909 |
msgid "Select galleries sorting order in your galleries page."
|
910 |
msgstr "Pilih galeri menyortir urutan halaman galeri Anda."
|
911 |
|
912 |
-
#: includes/class-gllr-settings.php:
|
913 |
msgid "Arrange Albums by"
|
914 |
msgstr "Mengatur Album oleh"
|
915 |
|
916 |
-
#: includes/class-gllr-settings.php:
|
917 |
msgid "Read More Link Label"
|
918 |
msgstr "Read More link Label"
|
919 |
|
920 |
-
#: includes/class-gllr-settings.php:
|
921 |
msgid "Instant Lightbox"
|
922 |
msgstr "Lightbox instan"
|
923 |
|
924 |
-
#: includes/class-gllr-settings.php:
|
925 |
msgid ""
|
926 |
"Enable to display all images in the lightbox after clicking cover image or "
|
927 |
"URL instead of going to a single gallery page."
|
@@ -929,19 +976,29 @@ msgstr ""
|
|
929 |
"Memungkinkan untuk menampilkan semua gambar dalam lightbox setelah mengklik "
|
930 |
"gambar cover atau URL bukannya pergi ke halaman galeri tunggal."
|
931 |
|
932 |
-
#: includes/class-gllr-settings.php:
|
933 |
msgid "Lightbox Settings"
|
934 |
msgstr "Pengaturan Lightbox"
|
935 |
|
936 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgid "Enable Lightbox"
|
938 |
msgstr "aktifkan Lightbox"
|
939 |
|
940 |
-
#: includes/class-gllr-settings.php:
|
941 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
942 |
msgstr "Aktifkan untuk menampilkan lightbox ketika mengklik gambar galeri."
|
943 |
|
944 |
-
#: includes/class-gllr-settings.php:
|
945 |
msgid ""
|
946 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
947 |
"will display the original, full size image."
|
@@ -949,93 +1006,93 @@ msgstr ""
|
|
949 |
"Pilih ukuran galeri gambar maksimal untuk tampilan lightbox. \\ \"Default \" "
|
950 |
"akan menampilkan asli, ukuran gambar penuh."
|
951 |
|
952 |
-
#: includes/class-gllr-settings.php:
|
953 |
msgid "Overlay Color"
|
954 |
msgstr "Hamparan Warna"
|
955 |
|
956 |
-
#: includes/class-gllr-settings.php:
|
957 |
msgid "Overlay Opacity"
|
958 |
msgstr "Opacity hamparan"
|
959 |
|
960 |
-
#: includes/class-gllr-settings.php:
|
961 |
#, php-format
|
962 |
msgid ""
|
963 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
964 |
"is %s)."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: includes/class-gllr-settings.php:
|
968 |
msgid "Slideshow"
|
969 |
msgstr "slideshow"
|
970 |
|
971 |
-
#: includes/class-gllr-settings.php:
|
972 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
973 |
msgstr ""
|
974 |
"Memungkinkan untuk memulai slideshow secara otomatis ketika lightbox yang "
|
975 |
"digunakan."
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
msgid "Slideshow Duration"
|
979 |
msgstr "Durasi slideshow"
|
980 |
|
981 |
-
#: includes/class-gllr-settings.php:
|
982 |
msgid "ms"
|
983 |
msgstr "Nona"
|
984 |
|
985 |
-
#: includes/class-gllr-settings.php:
|
986 |
msgid "Slideshow interval duration between two images."
|
987 |
msgstr "Slideshow durasi interval antara dua gambar."
|
988 |
|
989 |
-
#: includes/class-gllr-settings.php:
|
990 |
#, fuzzy
|
991 |
msgid "Lightbox Helpers"
|
992 |
msgstr "Lightbox Helper"
|
993 |
|
994 |
-
#: includes/class-gllr-settings.php:
|
995 |
msgid "Enable to display the lightbox toolbar and arrows."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/class-gllr-settings.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Lightbox Thumbnails"
|
1001 |
msgstr "Ukuran Lightbox Helper Thumbnail"
|
1002 |
|
1003 |
-
#: includes/class-gllr-settings.php:
|
1004 |
msgid "Enable to use a lightbox helper navigation between images."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/class-gllr-settings.php:
|
1008 |
#, fuzzy
|
1009 |
msgid "Lightbox Thumbnails Position"
|
1010 |
msgstr "Lightbox Helper Thumbnail Posisi"
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
msgid "Top"
|
1014 |
msgstr "Puncak"
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid "Lightbox Button Label"
|
1018 |
msgstr "Lightbox Tombol Label"
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
#, fuzzy
|
1022 |
msgid "Read More"
|
1023 |
msgstr "Baca lebih banyak"
|
1024 |
|
1025 |
-
#: includes/class-gllr-settings.php:
|
1026 |
#, fuzzy
|
1027 |
msgid "Download Button"
|
1028 |
msgstr "Завантажити"
|
1029 |
|
1030 |
-
#: includes/class-gllr-settings.php:
|
1031 |
msgid "Enable to display download button."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
msgid "Single Lightbox"
|
1036 |
msgstr "Lightbox tunggal"
|
1037 |
|
1038 |
-
#: includes/class-gllr-settings.php:
|
1039 |
msgid ""
|
1040 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1041 |
"page."
|
@@ -1043,27 +1100,27 @@ msgstr ""
|
|
1043 |
"Memungkinkan untuk menggunakan lightbox tunggal untuk beberapa galeri yang "
|
1044 |
"terletak pada satu halaman."
|
1045 |
|
1046 |
-
#: includes/class-gllr-settings.php:
|
1047 |
msgid "Social Sharing Buttons Settings"
|
1048 |
msgstr "Sharing sosial Tombol Pengaturan"
|
1049 |
|
1050 |
-
#: includes/class-gllr-settings.php:
|
1051 |
msgid "Social Buttons"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/class-gllr-settings.php:
|
1055 |
msgid "Enable social sharing buttons in the lightbox."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/class-gllr-settings.php:
|
1059 |
msgid "Social Networks"
|
1060 |
msgstr "Jaringan sosial"
|
1061 |
|
1062 |
-
#: includes/class-gllr-settings.php:
|
1063 |
msgid "Counter"
|
1064 |
msgstr "Melawan"
|
1065 |
|
1066 |
-
#: includes/class-gllr-settings.php:
|
1067 |
#, fuzzy
|
1068 |
msgid ""
|
1069 |
"Enable to show likes counter for each social button (not available for "
|
@@ -1072,11 +1129,11 @@ msgstr ""
|
|
1072 |
"Aktifkan untuk menampilkan orang-orang seperti meja untuk setiap tombol "
|
1073 |
"sosial."
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Demo Data"
|
1077 |
msgstr "data yang demo"
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
msgid ""
|
1081 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1082 |
"page with a list of all galleries."
|
@@ -1084,11 +1141,11 @@ msgstr ""
|
|
1084 |
"Pasang data demo untuk membuat galeri dengan gambar, posting dengan "
|
1085 |
"shortcode dan halaman dengan daftar semua galeri."
|
1086 |
|
1087 |
-
#: includes/class-gllr-settings.php:
|
1088 |
msgid "Gallery Post Type"
|
1089 |
msgstr "Galeri Posting Mengetik"
|
1090 |
|
1091 |
-
#: includes/class-gllr-settings.php:
|
1092 |
msgid ""
|
1093 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1094 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1100,27 +1157,23 @@ msgstr ""
|
|
1100 |
"setelah mengaktifkan kami sarankan untuk memeriksa pengaturan plugin lain di "
|
1101 |
"mana \\ \"gallery \" Jenis posting digunakan."
|
1102 |
|
1103 |
-
#: includes/class-gllr-settings.php:
|
1104 |
msgid "Gallery Slug"
|
1105 |
msgstr "galeri Slug"
|
1106 |
|
1107 |
-
#: includes/class-gllr-settings.php:
|
1108 |
msgid "Enter the unique gallery slug."
|
1109 |
msgstr "Masukkan siput galeri unik."
|
1110 |
|
1111 |
-
#: includes/class-gllr-settings.php:
|
1112 |
msgid "Activate Now"
|
1113 |
msgstr "Sekarang aktif"
|
1114 |
|
1115 |
-
#: includes/class-gllr-settings.php:
|
1116 |
-
msgid "Install Now"
|
1117 |
-
msgstr "Pasang sekarang"
|
1118 |
-
|
1119 |
-
#: includes/class-gllr-settings.php:965
|
1120 |
msgid "Enable to include galleries to your website search."
|
1121 |
msgstr "Memungkinkan untuk menyertakan galeri untuk pencarian website Anda."
|
1122 |
|
1123 |
-
#: includes/class-gllr-settings.php:
|
1124 |
#, php-format
|
1125 |
msgid "%s is required."
|
1126 |
msgstr "%s diperlukan."
|
@@ -1214,6 +1267,9 @@ msgstr ""
|
|
1214 |
msgid "Yes, install demo now"
|
1215 |
msgstr "Ya, instal demo sekarang"
|
1216 |
|
|
|
|
|
|
|
1217 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1218 |
#~ msgstr "Menyortir order (kolom input untuk menyortir order)"
|
1219 |
|
@@ -1299,9 +1355,6 @@ msgstr "Ya, instal demo sekarang"
|
|
1299 |
#~ msgid "Learn more"
|
1300 |
#~ msgstr "Belajarlah lagi"
|
1301 |
|
1302 |
-
#~ msgid "Activate"
|
1303 |
-
#~ msgstr "Mengaktifkan"
|
1304 |
-
|
1305 |
#~ msgid "Add multiple gallery categories"
|
1306 |
#~ msgstr "Tambahkan beberapa kategori galeri"
|
1307 |
|
@@ -1648,9 +1701,6 @@ msgstr "Ya, instal demo sekarang"
|
|
1648 |
#~ msgid "Full URL to custom page"
|
1649 |
#~ msgstr "Повне посилання на сторінку користувача"
|
1650 |
|
1651 |
-
#~ msgid "Add gallery to the search"
|
1652 |
-
#~ msgstr "Додати галерею до пошуку"
|
1653 |
-
|
1654 |
#~ msgid "Using"
|
1655 |
#~ msgstr "Використовуючи"
|
1656 |
|
@@ -1726,9 +1776,6 @@ msgstr "Ya, instal demo sekarang"
|
|
1726 |
#~ msgid "Select a background color"
|
1727 |
#~ msgstr "Виберіть колір фону"
|
1728 |
|
1729 |
-
#~ msgid "Sort galleries by"
|
1730 |
-
#~ msgstr "Сортувати галереї за"
|
1731 |
-
|
1732 |
#~ msgid "The number of images per row can be less"
|
1733 |
#~ msgstr "Кількість зображень в рядку може бути менше"
|
1734 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:52+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
"Language: id_ID\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Pengaturan Gallery"
|
22 |
|
23 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Pengaturan global"
|
26 |
|
27 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Upgrade ke yang lebih baik"
|
30 |
|
31 |
+
#: gallery-plugin.php:340
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Kembali ke semua album"
|
34 |
|
35 |
+
#: gallery-plugin.php:354
|
36 |
msgid "See images »"
|
37 |
msgstr "Lihat gambar & raquo;"
|
38 |
|
39 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
40 |
msgid "Galleries"
|
41 |
msgstr "Galeri"
|
42 |
|
43 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
44 |
msgid "Gallery"
|
45 |
msgstr "Galeri"
|
46 |
|
47 |
+
#: gallery-plugin.php:444
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Tambahkan Galeri Baru"
|
50 |
|
51 |
+
#: gallery-plugin.php:445
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Mengedit Galeri"
|
54 |
|
55 |
+
#: gallery-plugin.php:446
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Galeri baru"
|
58 |
|
59 |
+
#: gallery-plugin.php:447
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Lihat Galeri"
|
62 |
|
63 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Cari Galeri"
|
66 |
|
67 |
+
#: gallery-plugin.php:449
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Tidak ada Galeri ditemukan"
|
70 |
|
71 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
72 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
73 |
+
#: gallery-plugin.php:3332
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Galeri Kategori"
|
76 |
|
77 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Galeri Kategori"
|
80 |
|
81 |
+
#: gallery-plugin.php:473
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: gallery-plugin.php:474
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Tambahkan Baru Galeri Kategori"
|
88 |
|
89 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
#, fuzzy
|
95 |
msgid "New Gallery Category"
|
96 |
msgstr "Tambahkan Baru Galeri Kategori"
|
97 |
|
98 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
99 |
msgid "View Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: gallery-plugin.php:480
|
103 |
msgid "Find Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:481
|
107 |
msgid "No Gallery Categories found"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:482
|
111 |
msgid "No Gallery Categories found in Trash"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: gallery-plugin.php:483
|
115 |
msgid "Parent Gallery Category"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: gallery-plugin.php:484
|
119 |
msgid "Gallery Categories list navigation"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: gallery-plugin.php:485
|
123 |
msgid "Gallery Categories list"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: gallery-plugin.php:533
|
127 |
msgid "Gallery Shortcode"
|
128 |
msgstr "galeri pendek"
|
129 |
|
130 |
+
#: gallery-plugin.php:542
|
131 |
msgid ""
|
132 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
133 |
"widgets by using the following shortcode:"
|
135 |
"Menambahkan sebuah galeri tunggal dengan gambar untuk posting, halaman, "
|
136 |
"jenis posting kustom atau widget dengan menggunakan shortcode berikut:"
|
137 |
|
138 |
+
#: gallery-plugin.php:546
|
139 |
msgid ""
|
140 |
"Add a gallery cover including featured image, description, and a link to "
|
141 |
"your single gallery using the following shortcode:"
|
143 |
"Menambahkan penutup galeri termasuk gambar fitur, deskripsi, dan link ke "
|
144 |
"galeri tunggal Anda menggunakan shortcode berikut:"
|
145 |
|
146 |
+
#: gallery-plugin.php:659
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: gallery-plugin.php:659
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: gallery-plugin.php:670
|
158 |
+
#, fuzzy
|
159 |
+
#| msgid "Sort galleries by"
|
160 |
+
msgid "Sort Galleries in Category by"
|
161 |
+
msgstr "Сортувати галереї за"
|
162 |
+
|
163 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
164 |
+
#: includes/class-gllr-settings.php:711
|
165 |
+
msgid "Gallery ID"
|
166 |
+
msgstr "galeri ID"
|
167 |
+
|
168 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
169 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
170 |
+
#: includes/class-gllr-settings.php:712
|
171 |
+
msgid "Title"
|
172 |
+
msgstr "Judul"
|
173 |
+
|
174 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
175 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
176 |
+
msgid "Date"
|
177 |
+
msgstr "Tanggal"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
180 |
+
#: includes/class-gllr-settings.php:714
|
181 |
+
msgid "Last modified date"
|
182 |
+
msgstr "tanggal diubah terakhir"
|
183 |
+
|
184 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
185 |
+
#: includes/class-gllr-settings.php:715
|
186 |
+
msgid "Comment count"
|
187 |
+
msgstr "jumlah komentar"
|
188 |
+
|
189 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
190 |
+
#: includes/class-gllr-settings.php:716
|
191 |
+
msgid "\"Order\" field on the gallery edit page"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
195 |
+
#: includes/class-gllr-settings.php:717
|
196 |
+
msgid "Author"
|
197 |
+
msgstr "Penulis"
|
198 |
+
|
199 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
200 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
201 |
+
msgid "Random"
|
202 |
+
msgstr "Acak"
|
203 |
+
|
204 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
205 |
+
#, fuzzy
|
206 |
+
#| msgid "Settings"
|
207 |
+
msgid "Plugin Settings"
|
208 |
+
msgstr "pengaturan"
|
209 |
+
|
210 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
211 |
+
#, fuzzy
|
212 |
+
#| msgid "Select galleries sorting order in your galleries page."
|
213 |
+
msgid "Select galleries sorting order in your category."
|
214 |
+
msgstr "Pilih galeri menyortir urutan halaman galeri Anda."
|
215 |
+
|
216 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
217 |
msgid "Shortcode"
|
218 |
msgstr "Kode pendek"
|
219 |
|
220 |
+
#: gallery-plugin.php:749
|
221 |
msgid "All Gallery Categories"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:827
|
225 |
msgid "You can't delete default gallery category."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
229 |
msgid "Sorry, nothing found."
|
230 |
msgstr "Maaf, tidak ditemukan."
|
231 |
|
232 |
+
#: gallery-plugin.php:1717
|
233 |
msgid "Featured Image"
|
234 |
msgstr "Gambar Pilihan"
|
235 |
|
236 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
237 |
msgid "Images"
|
238 |
msgstr "gambar"
|
239 |
|
240 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
#, php-format
|
242 |
msgid "%s Settings"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
246 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
247 |
msgid "Settings"
|
248 |
msgstr "pengaturan"
|
249 |
|
250 |
+
#: gallery-plugin.php:1838
|
251 |
msgid "FAQ"
|
252 |
msgstr "FAQ"
|
253 |
|
254 |
+
#: gallery-plugin.php:1839
|
255 |
msgid "Support"
|
256 |
msgstr "Mendukung"
|
257 |
|
258 |
+
#: gallery-plugin.php:1878
|
259 |
msgid "Updating images..."
|
260 |
msgstr "Memperbarui gambar ..."
|
261 |
|
262 |
+
#: gallery-plugin.php:1879
|
263 |
msgid "No images found."
|
264 |
msgstr "Tidak ada gambar yang ditemukan."
|
265 |
|
266 |
+
#: gallery-plugin.php:1880
|
267 |
msgid "All images were updated."
|
268 |
msgstr "Semua gambar yang diperbarui."
|
269 |
|
270 |
+
#: gallery-plugin.php:1881
|
271 |
msgid "Error."
|
272 |
msgstr "Kesalahan."
|
273 |
|
274 |
+
#: gallery-plugin.php:1893
|
275 |
msgid ""
|
276 |
"You are about to remove these items from this gallery.\n"
|
277 |
" 'Cancel' to stop, 'OK' to delete."
|
279 |
"Anda akan menghapus item dari galeri ini. \\ N 'Batal' untuk menghentikan, "
|
280 |
"'OK' untuk menghapus."
|
281 |
|
282 |
+
#: gallery-plugin.php:1894
|
283 |
msgid ""
|
284 |
"You are about to remove this image from the gallery.\n"
|
285 |
" 'Cancel' to stop, 'OK' to delete."
|
287 |
"Anda akan menghapus gambar ini dari galeri. \\ N 'Batal' untuk menghentikan, "
|
288 |
"'OK' untuk menghapus."
|
289 |
|
290 |
+
#: gallery-plugin.php:1895
|
291 |
msgid ""
|
292 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
293 |
"switching?"
|
295 |
"Beralih ke mode lain, semua data yang belum disimpan akan hilang. Menyimpan "
|
296 |
"data sebelum beralih?"
|
297 |
|
298 |
+
#: gallery-plugin.php:1896
|
299 |
msgid "Insert Media"
|
300 |
msgstr "Insert Media"
|
301 |
|
302 |
+
#: gallery-plugin.php:1897
|
303 |
msgid "Insert"
|
304 |
msgstr "Memasukkan"
|
305 |
|
306 |
+
#: gallery-plugin.php:1898
|
307 |
+
msgid "Gallery has been successfully added!"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
311 |
msgid "Image size not defined"
|
312 |
msgstr "ukuran gambar tidak didefinisikan"
|
313 |
|
314 |
+
#: gallery-plugin.php:2455
|
315 |
msgid ""
|
316 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
317 |
"reload images manually."
|
319 |
"update Plugin hanya PNG, JPEG, GIF, WPMP atau XBM filetype. Untuk lainnya, "
|
320 |
"silakan ulang gambar secara manual."
|
321 |
|
322 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
323 |
msgid "Invalid path"
|
324 |
msgstr "Jalan yang salah"
|
325 |
|
326 |
+
#: gallery-plugin.php:2607
|
327 |
msgid "List View"
|
328 |
msgstr "Daftar View"
|
329 |
|
330 |
+
#: gallery-plugin.php:2608
|
331 |
msgid "Grid View"
|
332 |
msgstr "Tampilan bergaris"
|
333 |
|
334 |
+
#: gallery-plugin.php:2665
|
335 |
msgid "Filter"
|
336 |
msgstr "Menyaring"
|
337 |
|
338 |
+
#: gallery-plugin.php:2669
|
339 |
msgid "Empty Trash"
|
340 |
msgstr "Sampah kosong"
|
341 |
|
342 |
+
#: gallery-plugin.php:2692
|
343 |
msgid "No images found"
|
344 |
msgstr "Tidak ada gambar yang ditemukan"
|
345 |
|
346 |
+
#: gallery-plugin.php:2745
|
347 |
msgid "Select bulk action"
|
348 |
msgstr "tindakan massal pilih"
|
349 |
|
350 |
+
#: gallery-plugin.php:2747
|
351 |
msgid "Bulk Actions"
|
352 |
msgstr "Aksi besar"
|
353 |
|
354 |
+
#: gallery-plugin.php:2757
|
355 |
msgid "Apply"
|
356 |
msgstr "Menerapkan"
|
357 |
|
358 |
+
#: gallery-plugin.php:2764
|
359 |
msgid "Delete from Gallery"
|
360 |
msgstr "Hapus dari Galeri"
|
361 |
|
362 |
+
#: gallery-plugin.php:2773
|
363 |
msgid "Bulk Select"
|
364 |
msgstr "massal Pilih"
|
365 |
|
366 |
+
#: gallery-plugin.php:2774
|
367 |
msgid "Cancel Selection"
|
368 |
msgstr "Batal Seleksi"
|
369 |
|
370 |
+
#: gallery-plugin.php:2775
|
371 |
msgid "Delete Selected"
|
372 |
msgstr "Hapus yang Dipilih"
|
373 |
|
374 |
+
#: gallery-plugin.php:2786
|
375 |
msgid "File"
|
376 |
msgstr "Mengajukan"
|
377 |
|
378 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
379 |
msgid "Dimensions"
|
380 |
msgstr "Ukuran"
|
381 |
|
382 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
383 |
msgid "Alt Text"
|
384 |
msgstr "Alt Teks"
|
385 |
|
386 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
387 |
msgid "URL"
|
388 |
msgstr "URL"
|
389 |
|
390 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
391 |
msgid ""
|
392 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
393 |
"to open a full size image."
|
395 |
"Masukkan URL kustom Anda untuk menghubungkan gambar ini ke halaman lain atau "
|
396 |
"file. Biarkan kosong untuk membuka gambar ukuran penuh."
|
397 |
|
398 |
+
#: gallery-plugin.php:2872
|
399 |
msgid "Remove Image from Gallery"
|
400 |
msgstr "Hapus Gambar dari Galeri"
|
401 |
|
402 |
+
#: gallery-plugin.php:2875
|
403 |
msgid "Edit Image Info"
|
404 |
msgstr "Info mengedit Gambar"
|
405 |
|
406 |
+
#: gallery-plugin.php:2876
|
407 |
msgid "Deselect"
|
408 |
msgstr "hapus"
|
409 |
|
410 |
+
#: gallery-plugin.php:2888
|
411 |
msgid "File name"
|
412 |
msgstr "Nama file"
|
413 |
|
414 |
+
#: gallery-plugin.php:2889
|
415 |
msgid "File type"
|
416 |
msgstr "jenis file"
|
417 |
|
418 |
+
#: gallery-plugin.php:2914
|
419 |
msgid "Description"
|
420 |
msgstr "Deskripsi"
|
421 |
|
422 |
+
#: gallery-plugin.php:2920
|
423 |
msgid "Lightbox Button URL"
|
424 |
msgstr "URL Tombol Lightbox"
|
425 |
|
426 |
+
#: gallery-plugin.php:2927
|
427 |
msgid "New Tab"
|
428 |
msgstr "Tab baru"
|
429 |
|
430 |
+
#: gallery-plugin.php:2929
|
431 |
msgid "Enable to open URLs above in a new tab."
|
432 |
msgstr "Memungkinkan untuk membuka URL di atas di tab baru."
|
433 |
|
434 |
+
#: gallery-plugin.php:2934
|
435 |
msgid "Go Pro"
|
436 |
msgstr "Go Pro"
|
437 |
|
438 |
+
#: gallery-plugin.php:2940
|
439 |
msgid "Edit more details"
|
440 |
msgstr "Mengedit rincian lebih lanjut"
|
441 |
|
442 |
+
#: gallery-plugin.php:2942
|
443 |
msgid "Remove from Gallery"
|
444 |
msgstr "Hapus dari Galeri"
|
445 |
|
446 |
+
#: gallery-plugin.php:2978
|
447 |
#, php-format
|
448 |
msgid "Select %s"
|
449 |
msgstr "Pilih %s"
|
450 |
|
451 |
+
#: gallery-plugin.php:2991
|
452 |
#, php-format
|
453 |
msgid "Edit “%s”"
|
454 |
msgstr "Mengedit & # 8220; %s & # 8221;"
|
455 |
|
456 |
+
#: gallery-plugin.php:2999
|
457 |
msgid "Edit Attachment Info"
|
458 |
msgstr "Info mengedit Lampiran"
|
459 |
|
460 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
461 |
msgid "Edit"
|
462 |
msgstr "mengedit"
|
463 |
|
464 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
465 |
msgid "Trash"
|
466 |
msgstr "Sampah"
|
467 |
|
468 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
469 |
msgid "Delete Permanently"
|
470 |
msgstr "Hapus secara permanen"
|
471 |
|
472 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
473 |
#, php-format
|
474 |
msgid "View “%s”"
|
475 |
msgstr "Lihat & # 8220; %s & # 8221;"
|
476 |
|
477 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
478 |
msgid "View"
|
479 |
msgstr "Melihat"
|
480 |
|
481 |
+
#: gallery-plugin.php:3048
|
482 |
msgid "Attach"
|
483 |
msgstr "Melampirkan"
|
484 |
|
485 |
+
#: gallery-plugin.php:3056
|
486 |
msgid "Restore"
|
487 |
msgstr "Mengembalikan"
|
488 |
|
489 |
+
#: gallery-plugin.php:3086
|
490 |
msgid "A list or dropdown of Gallery categories."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:3131
|
494 |
msgid "Select Gallery Category"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:3189
|
498 |
#, fuzzy
|
499 |
msgid "Title:"
|
500 |
msgstr "Judul"
|
501 |
|
502 |
+
#: gallery-plugin.php:3192
|
503 |
msgid "Display as dropdown"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:3194
|
507 |
msgid "Show gallery counts"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:3196
|
511 |
msgid "Show hierarchy"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:3312
|
515 |
msgid "Warning"
|
516 |
msgstr "PERINGATAN"
|
517 |
|
518 |
+
#: gallery-plugin.php:3312
|
519 |
msgid "You can add only images to the gallery"
|
520 |
msgstr "Anda dapat menambahkan hanya gambar ke galeri"
|
521 |
|
522 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
523 |
msgid "no title"
|
524 |
msgstr "tanpa judul"
|
525 |
|
526 |
+
#: gallery-plugin.php:3377
|
527 |
msgid ""
|
528 |
"Display an album image with the description and the link to a single gallery "
|
529 |
"page"
|
530 |
msgstr ""
|
531 |
"Menampilkan gambar album dengan deskripsi dan link ke halaman galeri tunggal"
|
532 |
|
533 |
+
#: gallery-plugin.php:3381
|
534 |
msgid "Sorry, no gallery found."
|
535 |
msgstr "Maaf, tidak ada galeri ditemukan."
|
536 |
|
562 |
msgid "License Key"
|
563 |
msgstr "Kunci lisensi"
|
564 |
|
565 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
566 |
msgid "Settings saved"
|
567 |
msgstr "pengaturan disimpan"
|
568 |
|
569 |
+
#: includes/class-gllr-settings.php:256
|
570 |
msgid "Please, enable JavaScript in Your browser."
|
571 |
msgstr "Silahkan mengaktifkan JavaScript di browser Anda."
|
572 |
|
573 |
+
#: includes/class-gllr-settings.php:260
|
574 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
575 |
+
msgstr "ukuran gambar kustom berubah. Anda perlu memperbarui gambar galeri."
|
576 |
+
|
577 |
+
#: includes/class-gllr-settings.php:261
|
578 |
msgid "Update Images"
|
579 |
msgstr "Gambar pembaruan"
|
580 |
|
581 |
+
#: includes/class-gllr-settings.php:276
|
582 |
msgid "Gallery Images"
|
583 |
msgstr "Galeri gambar"
|
584 |
|
585 |
+
#: includes/class-gllr-settings.php:281
|
586 |
msgid "Images adding requires JavaScript."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/class-gllr-settings.php:284
|
590 |
msgid "Add Media"
|
591 |
msgstr "Tambahkan Media"
|
592 |
|
593 |
+
#: includes/class-gllr-settings.php:293
|
594 |
msgid "The grid view for the Gallery images requires JavaScript."
|
595 |
msgstr "Tampilan kotak untuk gambar Galeri membutuhkan JavaScript."
|
596 |
|
597 |
+
#: includes/class-gllr-settings.php:293
|
598 |
msgid "Switch to the list view"
|
599 |
msgstr "Beralih ke tampilan daftar"
|
600 |
|
601 |
+
#: includes/class-gllr-settings.php:320
|
602 |
+
#, fuzzy
|
603 |
+
#| msgid "Add gallery to the search"
|
604 |
+
msgid "Add Gallery to the Slider"
|
605 |
+
msgstr "Додати галерею до пошуку"
|
606 |
+
|
607 |
+
#: includes/class-gllr-settings.php:332
|
608 |
+
msgid "Activate"
|
609 |
+
msgstr "Mengaktifkan"
|
610 |
+
|
611 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
612 |
+
msgid "Install Now"
|
613 |
+
msgstr "Pasang sekarang"
|
614 |
+
|
615 |
+
#: includes/class-gllr-settings.php:337
|
616 |
+
msgid "Add"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: includes/class-gllr-settings.php:340
|
620 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/class-gllr-settings.php:351
|
624 |
msgid "Single Gallery Settings"
|
625 |
msgstr "Pengaturan Galeri tunggal"
|
626 |
|
627 |
+
#: includes/class-gllr-settings.php:353
|
628 |
#, php-format
|
629 |
msgid "Enable to configure single gallery settings and disable %s."
|
630 |
msgstr ""
|
631 |
"Memungkinkan untuk mengkonfigurasi pengaturan galeri tunggal dan "
|
632 |
"menonaktifkan %s ."
|
633 |
|
634 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
635 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
636 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
637 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
638 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
639 |
msgid "Close"
|
640 |
msgstr "Dekat"
|
641 |
|
642 |
+
#: includes/class-gllr-settings.php:369
|
643 |
msgid "Gallery Layout"
|
644 |
msgstr "galeri Tata Letak"
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:374
|
647 |
msgid "Grid"
|
648 |
msgstr "kisi"
|
649 |
|
650 |
+
#: includes/class-gllr-settings.php:380
|
651 |
msgid "Masonry"
|
652 |
msgstr "perkumpulan rahasia"
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:393
|
655 |
msgid "Number of Columns"
|
656 |
msgstr "Jumlah kolom"
|
657 |
|
658 |
+
#: includes/class-gllr-settings.php:396
|
659 |
#, php-format
|
660 |
msgid "Number of gallery columns (default is %s)."
|
661 |
msgstr "Jumlah kolom galeri (default adalah %s )."
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
664 |
msgid "Image Size"
|
665 |
msgstr "Ukuran gambar"
|
666 |
|
667 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
668 |
msgid "Custom"
|
669 |
msgstr "Adat"
|
670 |
|
671 |
+
#: includes/class-gllr-settings.php:408
|
672 |
msgid ""
|
673 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
674 |
msgstr ""
|
675 |
"Maksimum ukuran galeri foto. \\ \"Custom \" menggunakan Gambar nilai Dimensi."
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:412
|
678 |
msgid "Custom Image Size"
|
679 |
msgstr "Ukuran kustom Gambar"
|
680 |
|
681 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
682 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
683 |
msgid "px"
|
684 |
msgstr "px"
|
685 |
|
686 |
+
#: includes/class-gllr-settings.php:415
|
687 |
msgid ""
|
688 |
"Adjust these values based on the number of columns in your gallery. This "
|
689 |
"won't effect the full size of your images in the lightbox."
|
691 |
"Menyesuaikan nilai-nilai ini didasarkan pada jumlah kolom dalam galeri anda. "
|
692 |
"Ini tidak akan mempengaruhi ukuran penuh gambar Anda dalam lightbox."
|
693 |
|
694 |
+
#: includes/class-gllr-settings.php:426
|
695 |
msgid "Crop Images"
|
696 |
msgstr "Gambar tanaman"
|
697 |
|
698 |
+
#: includes/class-gllr-settings.php:428
|
699 |
msgid ""
|
700 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
701 |
"to resize images automatically using their aspect ratio."
|
704 |
"Ukuran Custom Image. Menonaktifkan untuk mengubah ukuran gambar secara "
|
705 |
"otomatis menggunakan aspek rasio mereka."
|
706 |
|
707 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
708 |
msgid "Crop Position"
|
709 |
msgstr "Posisi tanaman"
|
710 |
|
711 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
712 |
msgid "Select crop position base (by default: center)."
|
713 |
msgstr "Pilih posisi tanaman dasar (default: pusat)."
|
714 |
|
715 |
+
#: includes/class-gllr-settings.php:457
|
716 |
msgid "Image Title"
|
717 |
msgstr "gambar Judul"
|
718 |
|
719 |
+
#: includes/class-gllr-settings.php:459
|
720 |
msgid "Enable to display image title along with the gallery image."
|
721 |
msgstr ""
|
722 |
"Memungkinkan untuk menampilkan judul gambar bersama dengan gambar galeri."
|
723 |
|
724 |
+
#: includes/class-gllr-settings.php:470
|
725 |
msgid "Image Title Position"
|
726 |
msgstr "Gambar Judul Posisi"
|
727 |
|
728 |
+
#: includes/class-gllr-settings.php:475
|
729 |
msgid "Under image"
|
730 |
msgstr "di bawah gambar"
|
731 |
|
732 |
+
#: includes/class-gllr-settings.php:481
|
733 |
msgid "On mouse hover"
|
734 |
msgstr "Pada mouse hover"
|
735 |
|
736 |
+
#: includes/class-gllr-settings.php:494
|
737 |
msgid "Image Border"
|
738 |
msgstr "gambar Border"
|
739 |
|
740 |
+
#: includes/class-gllr-settings.php:496
|
741 |
msgid ""
|
742 |
"Enable images border using the styles defined for Image Border Size and "
|
743 |
"Color options."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/class-gllr-settings.php:500
|
747 |
msgid "Image Border Size"
|
748 |
msgstr "Gambar Ukuran Border"
|
749 |
|
750 |
+
#: includes/class-gllr-settings.php:503
|
751 |
#, php-format
|
752 |
msgid "Gallery image border width (default is %s)"
|
753 |
msgstr "Galeri lebar border image (default adalah %s )"
|
754 |
|
755 |
+
#: includes/class-gllr-settings.php:507
|
756 |
msgid "Image Border Color"
|
757 |
msgstr "Warna Gambar Border"
|
758 |
|
759 |
+
#: includes/class-gllr-settings.php:520
|
760 |
msgid "Pagination"
|
761 |
msgstr "pagination"
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:523
|
764 |
msgid ""
|
765 |
"Enable pagination for images to limit number of images displayed on a single "
|
766 |
"gallery page."
|
768 |
"Aktifkan pagination untuk gambar untuk membatasi jumlah gambar yang "
|
769 |
"ditampilkan pada halaman galeri tunggal."
|
770 |
|
771 |
+
#: includes/class-gllr-settings.php:527
|
772 |
msgid "Number of Images"
|
773 |
msgstr "Jumlah gambar"
|
774 |
|
775 |
+
#: includes/class-gllr-settings.php:530
|
776 |
#, php-format
|
777 |
msgid "Number of images displayed per page (default is %d)."
|
778 |
msgstr "Jumlah gambar yang ditampilkan per halaman (default adalah %d )."
|
779 |
|
780 |
+
#: includes/class-gllr-settings.php:540
|
781 |
msgid "Sort Images by"
|
782 |
msgstr "Urutkan Gambar dengan"
|
783 |
|
784 |
+
#: includes/class-gllr-settings.php:543
|
785 |
msgid "Manually (default)"
|
786 |
msgstr "Manual (default)"
|
787 |
|
788 |
+
#: includes/class-gllr-settings.php:544
|
789 |
msgid "Image ID"
|
790 |
msgstr "ID gambar"
|
791 |
|
792 |
+
#: includes/class-gllr-settings.php:545
|
793 |
msgid "Name"
|
794 |
msgstr "Nama"
|
795 |
|
796 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
797 |
msgid ""
|
798 |
"Select images sorting order in your gallery. By default, you can sort images "
|
799 |
"manually in the images tab."
|
801 |
"Pilih gambar menyortir urutan galeri Anda. Secara default, Anda dapat "
|
802 |
"mengurutkan gambar secara manual di tab gambar."
|
803 |
|
804 |
+
#: includes/class-gllr-settings.php:553
|
805 |
msgid "Arrange Images by"
|
806 |
msgstr "Atur Gambar dengan"
|
807 |
|
808 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
809 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
810 |
msgstr "Naik (misalnya 1, 2, 3, a, b, c)"
|
811 |
|
812 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
813 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
814 |
msgstr "Menurun (misalnya 3, 2, 1; c, b, a)"
|
815 |
|
816 |
+
#: includes/class-gllr-settings.php:562
|
817 |
msgid "Back Link"
|
818 |
msgstr "Back link"
|
819 |
|
820 |
+
#: includes/class-gllr-settings.php:564
|
821 |
msgid ""
|
822 |
"Enable to show a back link in a single gallery page which navigate to a "
|
823 |
"previous page."
|
825 |
"Memungkinkan untuk menunjukkan link kembali halaman galeri tunggal yang "
|
826 |
"menavigasi ke halaman sebelumnya."
|
827 |
|
828 |
+
#: includes/class-gllr-settings.php:568
|
829 |
msgid "Back Link URL"
|
830 |
msgstr "Tautan URL Kembali"
|
831 |
|
832 |
+
#: includes/class-gllr-settings.php:571
|
833 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
834 |
msgstr ""
|
835 |
"Kembali menautkan URL halaman kustom. Biarkan kosong untuk menggunakan "
|
836 |
"Gallery template halaman."
|
837 |
|
838 |
+
#: includes/class-gllr-settings.php:575
|
839 |
msgid "Back Link Label"
|
840 |
msgstr "Back Link Label"
|
841 |
|
842 |
+
#: includes/class-gllr-settings.php:581
|
843 |
msgid "Back Link with Shortcode"
|
844 |
msgstr "Back Link dengan pendek"
|
845 |
|
846 |
+
#: includes/class-gllr-settings.php:584
|
847 |
msgid "Enable to display a back link on a page where shortcode is used."
|
848 |
msgstr ""
|
849 |
"Memungkinkan untuk menampilkan link kembali pada halaman di mana shortcode "
|
850 |
"digunakan."
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:595
|
853 |
msgid "Cover Settings"
|
854 |
msgstr "Pengaturan penutup"
|
855 |
|
856 |
+
#: includes/class-gllr-settings.php:600
|
857 |
msgid "Galleries Page"
|
858 |
msgstr "galeri Halaman"
|
859 |
|
860 |
+
#: includes/class-gllr-settings.php:608
|
861 |
msgid "Base page where all existing galleries will be displayed."
|
862 |
msgstr "halaman dasar di mana semua galeri yang ada akan ditampilkan."
|
863 |
|
864 |
+
#: includes/class-gllr-settings.php:612
|
865 |
msgid "Albums Displaying"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/class-gllr-settings.php:615
|
869 |
msgid "Column"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/class-gllr-settings.php:616
|
873 |
msgid "Rows"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/class-gllr-settings.php:618
|
877 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/class-gllr-settings.php:622
|
881 |
msgid "Column Alignment"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/class-gllr-settings.php:625
|
885 |
msgid "Left"
|
886 |
msgstr "Kiri"
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:626
|
889 |
msgid "Right"
|
890 |
msgstr "Право"
|
891 |
|
892 |
+
#: includes/class-gllr-settings.php:627
|
893 |
msgid "Center"
|
894 |
msgstr "Центр"
|
895 |
|
896 |
+
#: includes/class-gllr-settings.php:629
|
897 |
msgid "Select the column alignment."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/class-gllr-settings.php:633
|
901 |
msgid "Cover Image Size"
|
902 |
msgstr "Ukuran Penutup gambar"
|
903 |
|
904 |
+
#: includes/class-gllr-settings.php:641
|
905 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
906 |
msgstr ""
|
907 |
"Maksimum ukuran Penutup gambar. Kustom menggunakan Gambar nilai Dimensi."
|
908 |
|
909 |
+
#: includes/class-gllr-settings.php:645
|
910 |
msgid "Custom Cover Image Size"
|
911 |
msgstr "Kustom Sampul Ukuran Gambar"
|
912 |
|
913 |
+
#: includes/class-gllr-settings.php:658
|
914 |
msgid "Crop Cover Images"
|
915 |
msgstr "Gambar Cover Crop"
|
916 |
|
917 |
+
#: includes/class-gllr-settings.php:660
|
918 |
msgid ""
|
919 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
920 |
"Disable to resize images automatically using their aspect ratio."
|
923 |
"Custom Sampul Ukuran Gambar. Menonaktifkan untuk mengubah ukuran gambar "
|
924 |
"secara otomatis menggunakan aspek rasio mereka."
|
925 |
|
926 |
+
#: includes/class-gllr-settings.php:689
|
927 |
msgid "Cover Image Border"
|
928 |
msgstr "Penutup Gambar Berbatasan"
|
929 |
|
930 |
+
#: includes/class-gllr-settings.php:691
|
931 |
msgid ""
|
932 |
"Enable cover images border using the styles defined for Image Border Size "
|
933 |
"and Color."
|
935 |
"Aktifkan gambar sampul perbatasan menggunakan gaya yang ditetapkan untuk "
|
936 |
"Ukuran Gambar Berbatasan dan Warna."
|
937 |
|
938 |
+
#: includes/class-gllr-settings.php:695
|
939 |
msgid "Cover Image Border Size"
|
940 |
msgstr "Penutup Ukuran Gambar Border"
|
941 |
|
942 |
+
#: includes/class-gllr-settings.php:698
|
943 |
#, php-format
|
944 |
msgid "Cover image border width (default is %s)"
|
945 |
msgstr "Menutupi lebar berbatasan gambar (default adalah %s )"
|
946 |
|
947 |
+
#: includes/class-gllr-settings.php:702
|
948 |
msgid "Cover Image Border Color"
|
949 |
msgstr "Penutup gambar Warna Berbatasan"
|
950 |
|
951 |
+
#: includes/class-gllr-settings.php:708
|
952 |
msgid "Sort Albums by"
|
953 |
msgstr "Album Urutkan berdasarkan"
|
954 |
|
955 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
msgid "Select galleries sorting order in your galleries page."
|
957 |
msgstr "Pilih galeri menyortir urutan halaman galeri Anda."
|
958 |
|
959 |
+
#: includes/class-gllr-settings.php:724
|
960 |
msgid "Arrange Albums by"
|
961 |
msgstr "Mengatur Album oleh"
|
962 |
|
963 |
+
#: includes/class-gllr-settings.php:733
|
964 |
msgid "Read More Link Label"
|
965 |
msgstr "Read More link Label"
|
966 |
|
967 |
+
#: includes/class-gllr-settings.php:746
|
968 |
msgid "Instant Lightbox"
|
969 |
msgstr "Lightbox instan"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:749
|
972 |
msgid ""
|
973 |
"Enable to display all images in the lightbox after clicking cover image or "
|
974 |
"URL instead of going to a single gallery page."
|
976 |
"Memungkinkan untuk menampilkan semua gambar dalam lightbox setelah mengklik "
|
977 |
"gambar cover atau URL bukannya pergi ke halaman galeri tunggal."
|
978 |
|
979 |
+
#: includes/class-gllr-settings.php:763
|
980 |
msgid "Lightbox Settings"
|
981 |
msgstr "Pengaturan Lightbox"
|
982 |
|
983 |
+
#: includes/class-gllr-settings.php:768
|
984 |
+
msgid "Unclickable Thumbnail Images"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: includes/class-gllr-settings.php:771
|
988 |
+
msgid ""
|
989 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
990 |
+
"URLs. This option also disables Lightbox."
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: includes/class-gllr-settings.php:775
|
994 |
msgid "Enable Lightbox"
|
995 |
msgstr "aktifkan Lightbox"
|
996 |
|
997 |
+
#: includes/class-gllr-settings.php:778
|
998 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
999 |
msgstr "Aktifkan untuk menampilkan lightbox ketika mengklik gambar galeri."
|
1000 |
|
1001 |
+
#: includes/class-gllr-settings.php:796
|
1002 |
msgid ""
|
1003 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1004 |
"will display the original, full size image."
|
1006 |
"Pilih ukuran galeri gambar maksimal untuk tampilan lightbox. \\ \"Default \" "
|
1007 |
"akan menampilkan asli, ukuran gambar penuh."
|
1008 |
|
1009 |
+
#: includes/class-gllr-settings.php:800
|
1010 |
msgid "Overlay Color"
|
1011 |
msgstr "Hamparan Warna"
|
1012 |
|
1013 |
+
#: includes/class-gllr-settings.php:806
|
1014 |
msgid "Overlay Opacity"
|
1015 |
msgstr "Opacity hamparan"
|
1016 |
|
1017 |
+
#: includes/class-gllr-settings.php:809
|
1018 |
#, php-format
|
1019 |
msgid ""
|
1020 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1021 |
"is %s)."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/class-gllr-settings.php:819
|
1025 |
msgid "Slideshow"
|
1026 |
msgstr "slideshow"
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:821
|
1029 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1030 |
msgstr ""
|
1031 |
"Memungkinkan untuk memulai slideshow secara otomatis ketika lightbox yang "
|
1032 |
"digunakan."
|
1033 |
|
1034 |
+
#: includes/class-gllr-settings.php:825
|
1035 |
msgid "Slideshow Duration"
|
1036 |
msgstr "Durasi slideshow"
|
1037 |
|
1038 |
+
#: includes/class-gllr-settings.php:827
|
1039 |
msgid "ms"
|
1040 |
msgstr "Nona"
|
1041 |
|
1042 |
+
#: includes/class-gllr-settings.php:828
|
1043 |
msgid "Slideshow interval duration between two images."
|
1044 |
msgstr "Slideshow durasi interval antara dua gambar."
|
1045 |
|
1046 |
+
#: includes/class-gllr-settings.php:839
|
1047 |
#, fuzzy
|
1048 |
msgid "Lightbox Helpers"
|
1049 |
msgstr "Lightbox Helper"
|
1050 |
|
1051 |
+
#: includes/class-gllr-settings.php:841
|
1052 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/class-gllr-settings.php:845
|
1056 |
#, fuzzy
|
1057 |
msgid "Lightbox Thumbnails"
|
1058 |
msgstr "Ukuran Lightbox Helper Thumbnail"
|
1059 |
|
1060 |
+
#: includes/class-gllr-settings.php:847
|
1061 |
msgid "Enable to use a lightbox helper navigation between images."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/class-gllr-settings.php:851
|
1065 |
#, fuzzy
|
1066 |
msgid "Lightbox Thumbnails Position"
|
1067 |
msgstr "Lightbox Helper Thumbnail Posisi"
|
1068 |
|
1069 |
+
#: includes/class-gllr-settings.php:854
|
1070 |
msgid "Top"
|
1071 |
msgstr "Puncak"
|
1072 |
|
1073 |
+
#: includes/class-gllr-settings.php:859
|
1074 |
msgid "Lightbox Button Label"
|
1075 |
msgstr "Lightbox Tombol Label"
|
1076 |
|
1077 |
+
#: includes/class-gllr-settings.php:861
|
1078 |
#, fuzzy
|
1079 |
msgid "Read More"
|
1080 |
msgstr "Baca lebih banyak"
|
1081 |
|
1082 |
+
#: includes/class-gllr-settings.php:871
|
1083 |
#, fuzzy
|
1084 |
msgid "Download Button"
|
1085 |
msgstr "Завантажити"
|
1086 |
|
1087 |
+
#: includes/class-gllr-settings.php:873
|
1088 |
msgid "Enable to display download button."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: includes/class-gllr-settings.php:877
|
1092 |
msgid "Single Lightbox"
|
1093 |
msgstr "Lightbox tunggal"
|
1094 |
|
1095 |
+
#: includes/class-gllr-settings.php:879
|
1096 |
msgid ""
|
1097 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1098 |
"page."
|
1100 |
"Memungkinkan untuk menggunakan lightbox tunggal untuk beberapa galeri yang "
|
1101 |
"terletak pada satu halaman."
|
1102 |
|
1103 |
+
#: includes/class-gllr-settings.php:889
|
1104 |
msgid "Social Sharing Buttons Settings"
|
1105 |
msgstr "Sharing sosial Tombol Pengaturan"
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:898
|
1108 |
msgid "Social Buttons"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:900
|
1112 |
msgid "Enable social sharing buttons in the lightbox."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:904
|
1116 |
msgid "Social Networks"
|
1117 |
msgstr "Jaringan sosial"
|
1118 |
|
1119 |
+
#: includes/class-gllr-settings.php:915
|
1120 |
msgid "Counter"
|
1121 |
msgstr "Melawan"
|
1122 |
|
1123 |
+
#: includes/class-gllr-settings.php:918
|
1124 |
#, fuzzy
|
1125 |
msgid ""
|
1126 |
"Enable to show likes counter for each social button (not available for "
|
1129 |
"Aktifkan untuk menampilkan orang-orang seperti meja untuk setiap tombol "
|
1130 |
"sosial."
|
1131 |
|
1132 |
+
#: includes/class-gllr-settings.php:933
|
1133 |
msgid "Demo Data"
|
1134 |
msgstr "data yang demo"
|
1135 |
|
1136 |
+
#: includes/class-gllr-settings.php:935
|
1137 |
msgid ""
|
1138 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1139 |
"page with a list of all galleries."
|
1141 |
"Pasang data demo untuk membuat galeri dengan gambar, posting dengan "
|
1142 |
"shortcode dan halaman dengan daftar semua galeri."
|
1143 |
|
1144 |
+
#: includes/class-gllr-settings.php:973
|
1145 |
msgid "Gallery Post Type"
|
1146 |
msgstr "Galeri Posting Mengetik"
|
1147 |
|
1148 |
+
#: includes/class-gllr-settings.php:975
|
1149 |
msgid ""
|
1150 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1151 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1157 |
"setelah mengaktifkan kami sarankan untuk memeriksa pengaturan plugin lain di "
|
1158 |
"mana \\ \"gallery \" Jenis posting digunakan."
|
1159 |
|
1160 |
+
#: includes/class-gllr-settings.php:987
|
1161 |
msgid "Gallery Slug"
|
1162 |
msgstr "galeri Slug"
|
1163 |
|
1164 |
+
#: includes/class-gllr-settings.php:991
|
1165 |
msgid "Enter the unique gallery slug."
|
1166 |
msgstr "Masukkan siput galeri unik."
|
1167 |
|
1168 |
+
#: includes/class-gllr-settings.php:1007
|
1169 |
msgid "Activate Now"
|
1170 |
msgstr "Sekarang aktif"
|
1171 |
|
1172 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1173 |
msgid "Enable to include galleries to your website search."
|
1174 |
msgstr "Memungkinkan untuk menyertakan galeri untuk pencarian website Anda."
|
1175 |
|
1176 |
+
#: includes/class-gllr-settings.php:1025
|
1177 |
#, php-format
|
1178 |
msgid "%s is required."
|
1179 |
msgstr "%s diperlukan."
|
1267 |
msgid "Yes, install demo now"
|
1268 |
msgstr "Ya, instal demo sekarang"
|
1269 |
|
1270 |
+
#~ msgid "or"
|
1271 |
+
#~ msgstr "atau"
|
1272 |
+
|
1273 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1274 |
#~ msgstr "Menyortir order (kolom input untuk menyortir order)"
|
1275 |
|
1355 |
#~ msgid "Learn more"
|
1356 |
#~ msgstr "Belajarlah lagi"
|
1357 |
|
|
|
|
|
|
|
1358 |
#~ msgid "Add multiple gallery categories"
|
1359 |
#~ msgstr "Tambahkan beberapa kategori galeri"
|
1360 |
|
1701 |
#~ msgid "Full URL to custom page"
|
1702 |
#~ msgstr "Повне посилання на сторінку користувача"
|
1703 |
|
|
|
|
|
|
|
1704 |
#~ msgid "Using"
|
1705 |
#~ msgstr "Використовуючи"
|
1706 |
|
1776 |
#~ msgid "Select a background color"
|
1777 |
#~ msgstr "Виберіть колір фону"
|
1778 |
|
|
|
|
|
|
|
1779 |
#~ msgid "The number of images per row can be less"
|
1780 |
#~ msgstr "Кількість зображень в рядку може бути менше"
|
1781 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -13,255 +13,302 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galerij Instellingen"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galerij Instellingen"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "See images »"
|
39 |
msgstr "Foto's bekijken »"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerijen"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerij"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Nieuwe Galerij toevoegen"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Galerij bewerken"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nieuwe Galerij"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Galerij bekijken"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galerijen"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Geen Galerij gevonden"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Afmeting galerij foto"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Afmeting galerij foto"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Nieuwe Galerij toevoegen"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Galerij Shortcode"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#, fuzzy
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Galerij Shortcode"
|
162 |
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "All Gallery Categories"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "You can't delete default gallery category."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Sorry, nothing found."
|
173 |
msgstr "Sorry, niets gevonden."
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Featured Image"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
181 |
-
msgid "Title"
|
182 |
-
msgstr "Titel"
|
183 |
-
|
184 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
185 |
#, fuzzy
|
186 |
msgid "Images"
|
187 |
msgstr "Foto's bekijken »"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
msgid "Author"
|
191 |
-
msgstr "Autheur"
|
192 |
-
|
193 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
194 |
-
#: includes/class-gllr-settings.php:680
|
195 |
-
msgid "Date"
|
196 |
-
msgstr "Datum"
|
197 |
-
|
198 |
-
#: gallery-plugin.php:1688
|
199 |
#, php-format
|
200 |
msgid "%s Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
205 |
msgid "Settings"
|
206 |
msgstr "Instellingen"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "FAQ"
|
210 |
msgstr "FAQ "
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "Support"
|
214 |
msgstr "Ondersteuning"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Updating images..."
|
218 |
msgstr "Bijwerken foto's..."
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "No images found."
|
223 |
msgstr "Geen foto gevonden"
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
#, fuzzy
|
227 |
msgid "All images were updated."
|
228 |
msgstr "Alle foto's zijn bijgewerkt"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "Error."
|
232 |
msgstr "Fout."
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid ""
|
236 |
"You are about to remove these items from this gallery.\n"
|
237 |
" 'Cancel' to stop, 'OK' to delete."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid ""
|
242 |
"You are about to remove this image from the gallery.\n"
|
243 |
" 'Cancel' to stop, 'OK' to delete."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid ""
|
248 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
249 |
"switching?"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Insert Media"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Insert"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Image size not defined"
|
262 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid ""
|
267 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
@@ -270,224 +317,220 @@ msgstr ""
|
|
270 |
"We kunnen alleen de volgende bestandstypen bijwerken: PNG, JPG, GIF, WPMP of "
|
271 |
"XBM (Voor overige, aub handmatig herladen)."
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Invalid path"
|
275 |
msgstr "Ongeldig pad"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "List View"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Grid View"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid "Filter"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Empty Trash"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
#, fuzzy
|
295 |
msgid "No images found"
|
296 |
msgstr "Geen foto gevonden"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Select bulk action"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "Bulk Actions"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Apply"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: gallery-plugin.php:
|
311 |
#, fuzzy
|
312 |
msgid "Delete from Gallery"
|
313 |
msgstr "Nieuwe Galerij"
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "Bulk Select"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Cancel Selection"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Delete Selected"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "File"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "Dimensions"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
#, fuzzy
|
337 |
msgid "Alt Text"
|
338 |
msgstr "Alt tag"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "URL"
|
342 |
msgstr "URL"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid ""
|
346 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
347 |
"to open a full size image."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
#, fuzzy
|
352 |
msgid "Remove Image from Gallery"
|
353 |
msgstr "Nieuwe Galerij"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
#, fuzzy
|
357 |
msgid "Edit Image Info"
|
358 |
msgstr "Bijlage ID"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Deselect"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "File name"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "File type"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Description"
|
374 |
msgstr "Omschrijving"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "Lightbox Button URL"
|
379 |
msgstr "Lightbox knop URL"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "New Tab"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Enable to open URLs above in a new tab."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
#, fuzzy
|
391 |
msgid "Go Pro"
|
392 |
msgstr "Ga PRO"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Edit more details"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, fuzzy
|
400 |
msgid "Remove from Gallery"
|
401 |
msgstr "Nieuwe Galerij"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, php-format
|
405 |
msgid "Select %s"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
#, php-format
|
410 |
msgid "Edit “%s”"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
#, fuzzy
|
415 |
msgid "Edit Attachment Info"
|
416 |
msgstr "Bijlage ID"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Edit"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Trash"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Delete Permanently"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
#, php-format
|
432 |
msgid "View “%s”"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "View"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
#, fuzzy
|
441 |
msgid "Attach"
|
442 |
msgstr "Bijlage ID"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "Restore"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "A list or dropdown of Gallery categories."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "Select Gallery Category"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
#, fuzzy
|
458 |
msgid "Title:"
|
459 |
msgstr "Titel"
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "Display as dropdown"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
msgid "Show gallery counts"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "Show hierarchy"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "Warning"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "You can add only images to the gallery"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
-
msgid "or"
|
483 |
-
msgstr "of"
|
484 |
-
|
485 |
-
#: gallery-plugin.php:3181
|
486 |
#, fuzzy
|
487 |
msgid "no title"
|
488 |
msgstr "Titel"
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
#, fuzzy
|
492 |
msgid ""
|
493 |
"Display an album image with the description and the link to a single gallery "
|
@@ -496,7 +539,7 @@ msgstr ""
|
|
496 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
497 |
"pagina, wilt weergeven "
|
498 |
|
499 |
-
#: gallery-plugin.php:
|
500 |
#, fuzzy
|
501 |
msgid "Sorry, no gallery found."
|
502 |
msgstr "Sorry, niets gevonden."
|
@@ -530,584 +573,596 @@ msgstr ""
|
|
530 |
msgid "License Key"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/class-gllr-settings.php:
|
534 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: includes/class-gllr-settings.php:247
|
538 |
#, fuzzy
|
539 |
msgid "Settings saved"
|
540 |
msgstr "Instellingen opgeslagen"
|
541 |
|
542 |
-
#: includes/class-gllr-settings.php:
|
543 |
#, fuzzy
|
544 |
msgid "Please, enable JavaScript in Your browser."
|
545 |
msgstr "Activeer JavaScript om de uploader te gebruiken."
|
546 |
|
547 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
548 |
#, fuzzy
|
549 |
msgid "Update Images"
|
550 |
msgstr "Bijwerken foto's..."
|
551 |
|
552 |
-
#: includes/class-gllr-settings.php:
|
553 |
#, fuzzy
|
554 |
msgid "Gallery Images"
|
555 |
msgstr "Afmeting galerij foto"
|
556 |
|
557 |
-
#: includes/class-gllr-settings.php:
|
558 |
msgid "Images adding requires JavaScript."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-gllr-settings.php:
|
562 |
msgid "Add Media"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-gllr-settings.php:
|
566 |
msgid "The grid view for the Gallery images requires JavaScript."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-gllr-settings.php:
|
570 |
msgid "Switch to the list view"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
#, fuzzy
|
575 |
msgid "Single Gallery Settings"
|
576 |
msgstr "Galerij Instellingen"
|
577 |
|
578 |
-
#: includes/class-gllr-settings.php:
|
579 |
#, php-format
|
580 |
msgid "Enable to configure single gallery settings and disable %s."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
-
#: includes/class-gllr-settings.php:
|
585 |
-
#: includes/class-gllr-settings.php:
|
586 |
-
#: includes/class-gllr-settings.php:
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
msgid "Close"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
#, fuzzy
|
593 |
msgid "Gallery Layout"
|
594 |
msgstr "Geen Galerij gevonden"
|
595 |
|
596 |
-
#: includes/class-gllr-settings.php:
|
597 |
msgid "Grid"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
msgid "Masonry"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
msgid "Number of Columns"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
#, php-format
|
610 |
msgid "Number of gallery columns (default is %s)."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-gllr-settings.php:
|
614 |
#, fuzzy
|
615 |
msgid "Image Size"
|
616 |
msgstr "Foto afmeting"
|
617 |
|
618 |
-
#: includes/class-gllr-settings.php:
|
619 |
msgid "Custom"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: includes/class-gllr-settings.php:
|
623 |
msgid ""
|
624 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/class-gllr-settings.php:
|
628 |
#, fuzzy
|
629 |
msgid "Custom Image Size"
|
630 |
msgstr "Foto afmeting"
|
631 |
|
632 |
-
#: includes/class-gllr-settings.php:
|
633 |
-
#: includes/class-gllr-settings.php:
|
634 |
msgid "px"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: includes/class-gllr-settings.php:
|
638 |
msgid ""
|
639 |
"Adjust these values based on the number of columns in your gallery. This "
|
640 |
"won't effect the full size of your images in the lightbox."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
#, fuzzy
|
645 |
msgid "Crop Images"
|
646 |
msgstr "Sorteer foto's"
|
647 |
|
648 |
-
#: includes/class-gllr-settings.php:
|
649 |
msgid ""
|
650 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
651 |
"to resize images automatically using their aspect ratio."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
#, fuzzy
|
656 |
msgid "Crop Position"
|
657 |
msgstr "Positie bijsnijden"
|
658 |
|
659 |
-
#: includes/class-gllr-settings.php:
|
660 |
msgid "Select crop position base (by default: center)."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/class-gllr-settings.php:
|
664 |
#, fuzzy
|
665 |
msgid "Image Title"
|
666 |
msgstr "Foto afmeting"
|
667 |
|
668 |
-
#: includes/class-gllr-settings.php:
|
669 |
msgid "Enable to display image title along with the gallery image."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
#, fuzzy
|
674 |
msgid "Image Title Position"
|
675 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
676 |
|
677 |
-
#: includes/class-gllr-settings.php:
|
678 |
#, fuzzy
|
679 |
msgid "Under image"
|
680 |
msgstr "Foto's bijwerken"
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
msgid "On mouse hover"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
#, fuzzy
|
688 |
msgid "Image Border"
|
689 |
msgstr "Foto's met rand"
|
690 |
|
691 |
-
#: includes/class-gllr-settings.php:
|
692 |
msgid ""
|
693 |
"Enable images border using the styles defined for Image Border Size and "
|
694 |
"Color options."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/class-gllr-settings.php:
|
698 |
#, fuzzy
|
699 |
msgid "Image Border Size"
|
700 |
msgstr "Foto afmeting"
|
701 |
|
702 |
-
#: includes/class-gllr-settings.php:
|
703 |
#, php-format
|
704 |
msgid "Gallery image border width (default is %s)"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/class-gllr-settings.php:
|
708 |
#, fuzzy
|
709 |
msgid "Image Border Color"
|
710 |
msgstr "Selecteer een randkleur"
|
711 |
|
712 |
-
#: includes/class-gllr-settings.php:
|
713 |
msgid "Pagination"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/class-gllr-settings.php:
|
717 |
msgid ""
|
718 |
"Enable pagination for images to limit number of images displayed on a single "
|
719 |
"gallery page."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/class-gllr-settings.php:
|
723 |
#, fuzzy
|
724 |
msgid "Number of Images"
|
725 |
msgstr "Aantal foto's op een rij"
|
726 |
|
727 |
-
#: includes/class-gllr-settings.php:
|
728 |
#, php-format
|
729 |
msgid "Number of images displayed per page (default is %d)."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
#, fuzzy
|
734 |
msgid "Sort Images by"
|
735 |
msgstr "Sorteer foto's op"
|
736 |
|
737 |
-
#: includes/class-gllr-settings.php:
|
738 |
msgid "Manually (default)"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/class-gllr-settings.php:
|
742 |
#, fuzzy
|
743 |
msgid "Image ID"
|
744 |
msgstr "Foto"
|
745 |
|
746 |
-
#: includes/class-gllr-settings.php:
|
747 |
msgid "Name"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/class-gllr-settings.php:
|
751 |
-
msgid "Random"
|
752 |
-
msgstr "Willekeurig"
|
753 |
-
|
754 |
-
#: includes/class-gllr-settings.php:516
|
755 |
msgid ""
|
756 |
"Select images sorting order in your gallery. By default, you can sort images "
|
757 |
"manually in the images tab."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
#, fuzzy
|
762 |
msgid "Arrange Images by"
|
763 |
msgstr "Sorteer foto's op"
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-gllr-settings.php:
|
770 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/class-gllr-settings.php:
|
774 |
#, fuzzy
|
775 |
msgid "Back Link"
|
776 |
msgstr "De Terug link URL"
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
msgid ""
|
780 |
"Enable to show a back link in a single gallery page which navigate to a "
|
781 |
"previous page."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: includes/class-gllr-settings.php:
|
785 |
#, fuzzy
|
786 |
msgid "Back Link URL"
|
787 |
msgstr "De Terug link URL"
|
788 |
|
789 |
-
#: includes/class-gllr-settings.php:
|
790 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
#, fuzzy
|
795 |
msgid "Back Link Label"
|
796 |
msgstr "De Terug link URL"
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
#, fuzzy
|
800 |
msgid "Back Link with Shortcode"
|
801 |
msgstr "Toon de Terug link in de shortcode"
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
#, fuzzy
|
805 |
msgid "Enable to display a back link on a page where shortcode is used."
|
806 |
msgstr "Toon de Terug link in de shortcode"
|
807 |
|
808 |
-
#: includes/class-gllr-settings.php:
|
809 |
#, fuzzy
|
810 |
msgid "Cover Settings"
|
811 |
msgstr "Galerij Instellingen"
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
#, fuzzy
|
815 |
msgid "Galleries Page"
|
816 |
msgstr "Galerijen"
|
817 |
|
818 |
-
#: includes/class-gllr-settings.php:
|
819 |
#, fuzzy
|
820 |
msgid "Base page where all existing galleries will be displayed."
|
821 |
msgstr ""
|
822 |
"Als je naar de Pro versie overstapt, zullen alle instellingen en galerijen "
|
823 |
"bewaard blijven."
|
824 |
|
825 |
-
#: includes/class-gllr-settings.php:
|
826 |
msgid "Albums Displaying"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/class-gllr-settings.php:
|
830 |
msgid "Column"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
msgid "Rows"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Column Alignment"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Left"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Right"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
msgid "Center"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/class-gllr-settings.php:
|
858 |
msgid "Select the column alignment."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/class-gllr-settings.php:
|
862 |
#, fuzzy
|
863 |
msgid "Cover Image Size"
|
864 |
msgstr "Foto afmeting"
|
865 |
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/class-gllr-settings.php:
|
871 |
msgid "Custom Cover Image Size"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: includes/class-gllr-settings.php:
|
875 |
msgid "Crop Cover Images"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/class-gllr-settings.php:
|
879 |
msgid ""
|
880 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
881 |
"Disable to resize images automatically using their aspect ratio."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
#, fuzzy
|
886 |
msgid "Cover Image Border"
|
887 |
msgstr "Foto's met rand"
|
888 |
|
889 |
-
#: includes/class-gllr-settings.php:
|
890 |
msgid ""
|
891 |
"Enable cover images border using the styles defined for Image Border Size "
|
892 |
"and Color."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
msgid "Cover Image Border Size"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:
|
900 |
#, php-format
|
901 |
msgid "Cover image border width (default is %s)"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/class-gllr-settings.php:
|
905 |
#, fuzzy
|
906 |
msgid "Cover Image Border Color"
|
907 |
msgstr "Selecteer een randkleur"
|
908 |
|
909 |
-
#: includes/class-gllr-settings.php:
|
910 |
#, fuzzy
|
911 |
msgid "Sort Albums by"
|
912 |
msgstr "Sorteer foto's op"
|
913 |
|
914 |
-
#: includes/class-gllr-settings.php:
|
915 |
-
#, fuzzy
|
916 |
-
msgid "Gallery ID"
|
917 |
-
msgstr "Galerij"
|
918 |
-
|
919 |
-
#: includes/class-gllr-settings.php:681
|
920 |
-
msgid "Last modified date"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: includes/class-gllr-settings.php:682
|
924 |
-
msgid "Comment count"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: includes/class-gllr-settings.php:683
|
928 |
-
msgid "\"Order\" field on the gallery edit page"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: includes/class-gllr-settings.php:687
|
932 |
msgid "Select galleries sorting order in your galleries page."
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: includes/class-gllr-settings.php:
|
936 |
msgid "Arrange Albums by"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
940 |
#, fuzzy
|
941 |
msgid "Read More Link Label"
|
942 |
msgstr "De 'Lees Meer' link tekst"
|
943 |
|
944 |
-
#: includes/class-gllr-settings.php:
|
945 |
msgid "Instant Lightbox"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/class-gllr-settings.php:
|
949 |
msgid ""
|
950 |
"Enable to display all images in the lightbox after clicking cover image or "
|
951 |
"URL instead of going to a single gallery page."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/class-gllr-settings.php:
|
955 |
#, fuzzy
|
956 |
msgid "Lightbox Settings"
|
957 |
msgstr "Lightbox knop URL"
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
960 |
msgid "Enable Lightbox"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: includes/class-gllr-settings.php:
|
968 |
msgid ""
|
969 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
970 |
"will display the original, full size image."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
msgid "Overlay Color"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
msgid "Overlay Opacity"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/class-gllr-settings.php:
|
982 |
#, php-format
|
983 |
msgid ""
|
984 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
985 |
"is %s)."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/class-gllr-settings.php:
|
989 |
#, fuzzy
|
990 |
msgid "Slideshow"
|
991 |
msgstr "Start diavoorstelling"
|
992 |
|
993 |
-
#: includes/class-gllr-settings.php:
|
994 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/class-gllr-settings.php:
|
998 |
#, fuzzy
|
999 |
msgid "Slideshow Duration"
|
1000 |
msgstr "Diavoorstelling interval"
|
1001 |
|
1002 |
-
#: includes/class-gllr-settings.php:
|
1003 |
msgid "ms"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/class-gllr-settings.php:
|
1007 |
msgid "Slideshow interval duration between two images."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/class-gllr-settings.php:
|
1011 |
#, fuzzy
|
1012 |
msgid "Lightbox Helpers"
|
1013 |
msgstr "De lightbox helper"
|
1014 |
|
1015 |
-
#: includes/class-gllr-settings.php:
|
1016 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: includes/class-gllr-settings.php:
|
1020 |
#, fuzzy
|
1021 |
msgid "Lightbox Thumbnails"
|
1022 |
msgstr "Foto afmeting voor de omslag van het album"
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
msgid "Enable to use a lightbox helper navigation between images."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
1029 |
msgid "Lightbox Thumbnails Position"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Top"
|
1035 |
msgstr "bovenkant"
|
1036 |
|
1037 |
-
#: includes/class-gllr-settings.php:
|
1038 |
#, fuzzy
|
1039 |
msgid "Lightbox Button Label"
|
1040 |
msgstr "Lightbox knop URL"
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Read More"
|
1045 |
msgstr "Kom meer te weten"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
#, fuzzy
|
1049 |
msgid "Download Button"
|
1050 |
msgstr "Aangepast zoeken, downloaden"
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
msgid "Enable to display download button."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/class-gllr-settings.php:
|
1057 |
msgid "Single Lightbox"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/class-gllr-settings.php:
|
1061 |
#, fuzzy
|
1062 |
msgid ""
|
1063 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1064 |
"page."
|
1065 |
msgstr "Gebruik 1 lightbox voor meerdere galerijen op 1 pagina"
|
1066 |
|
1067 |
-
#: includes/class-gllr-settings.php:
|
1068 |
msgid "Social Sharing Buttons Settings"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/class-gllr-settings.php:
|
1072 |
msgid "Social Buttons"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Enable social sharing buttons in the lightbox."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
msgid "Social Networks"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/class-gllr-settings.php:
|
1084 |
#, fuzzy
|
1085 |
msgid "Counter"
|
1086 |
msgstr "Diavoorstelling interval"
|
1087 |
|
1088 |
-
#: includes/class-gllr-settings.php:
|
1089 |
msgid ""
|
1090 |
"Enable to show likes counter for each social button (not available for "
|
1091 |
"Google +1)."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
#, fuzzy
|
1096 |
msgid "Demo Data"
|
1097 |
msgstr "Установка %"
|
1098 |
|
1099 |
-
#: includes/class-gllr-settings.php:
|
1100 |
msgid ""
|
1101 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1102 |
"page with a list of all galleries."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/class-gllr-settings.php:
|
1106 |
#, fuzzy
|
1107 |
msgid "Gallery Post Type"
|
1108 |
msgstr "Galerij Shortcode"
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
msgid ""
|
1112 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1113 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1115,30 +1170,25 @@ msgid ""
|
|
1115 |
"used."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Gallery Slug"
|
1121 |
msgstr "Galerij"
|
1122 |
|
1123 |
-
#: includes/class-gllr-settings.php:
|
1124 |
msgid "Enter the unique gallery slug."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/class-gllr-settings.php:
|
1128 |
#, fuzzy
|
1129 |
msgid "Activate Now"
|
1130 |
msgstr "Activeren"
|
1131 |
|
1132 |
-
#: includes/class-gllr-settings.php:
|
1133 |
-
#, fuzzy
|
1134 |
-
msgid "Install Now"
|
1135 |
-
msgstr "Установка %"
|
1136 |
-
|
1137 |
-
#: includes/class-gllr-settings.php:965
|
1138 |
msgid "Enable to include galleries to your website search."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/class-gllr-settings.php:
|
1142 |
#, php-format
|
1143 |
msgid "%s is required."
|
1144 |
msgstr ""
|
@@ -1233,6 +1283,9 @@ msgstr ""
|
|
1233 |
msgid "Yes, install demo now"
|
1234 |
msgstr "Установка %"
|
1235 |
|
|
|
|
|
|
|
1236 |
#, fuzzy
|
1237 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1238 |
#~ msgstr ""
|
@@ -1285,9 +1338,6 @@ msgstr "Установка %"
|
|
1285 |
#~ msgid "Learn more"
|
1286 |
#~ msgstr "Kom meer te weten"
|
1287 |
|
1288 |
-
#~ msgid "Activate"
|
1289 |
-
#~ msgstr "Activeren"
|
1290 |
-
|
1291 |
#, fuzzy
|
1292 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1293 |
#~ msgstr "Geef 'Vind ik leuk' knoppen weer, in de lightbox"
|
@@ -1430,9 +1480,6 @@ msgstr "Установка %"
|
|
1430 |
#~ msgid "(Full URL to custom page)"
|
1431 |
#~ msgstr "(Volledige URL naar aangepaste pagina)"
|
1432 |
|
1433 |
-
#~ msgid "Add gallery to the search"
|
1434 |
-
#~ msgstr "Galerij, aan zoeken, toevoegen"
|
1435 |
-
|
1436 |
#~ msgid "Using"
|
1437 |
#~ msgstr "Gebruik"
|
1438 |
|
@@ -1510,10 +1557,6 @@ msgstr "Установка %"
|
|
1510 |
#~ msgid "Select a background color"
|
1511 |
#~ msgstr "Selecteer een achtergrondkleur"
|
1512 |
|
1513 |
-
#, fuzzy
|
1514 |
-
#~ msgid "Sort galleries by"
|
1515 |
-
#~ msgstr "Sorteer foto's op"
|
1516 |
-
|
1517 |
#~ msgid "Width (in px)"
|
1518 |
#~ msgstr "Breedte (in px)"
|
1519 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: J Goessens <j.goessens@gmail.com>\n"
|
9 |
"Language: nl_NL\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galerij Instellingen"
|
23 |
|
24 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galerij Instellingen"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:340
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: gallery-plugin.php:354
|
38 |
msgid "See images »"
|
39 |
msgstr "Foto's bekijken »"
|
40 |
|
41 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerijen"
|
44 |
|
45 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerij"
|
48 |
|
49 |
+
#: gallery-plugin.php:444
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Nieuwe Galerij toevoegen"
|
52 |
|
53 |
+
#: gallery-plugin.php:445
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Galerij bewerken"
|
56 |
|
57 |
+
#: gallery-plugin.php:446
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nieuwe Galerij"
|
60 |
|
61 |
+
#: gallery-plugin.php:447
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Galerij bekijken"
|
64 |
|
65 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galerijen"
|
69 |
|
70 |
+
#: gallery-plugin.php:449
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Geen Galerij gevonden"
|
73 |
|
74 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
75 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
76 |
+
#: gallery-plugin.php:3332
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Afmeting galerij foto"
|
80 |
|
81 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Afmeting galerij foto"
|
85 |
|
86 |
+
#: gallery-plugin.php:473
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:474
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Nieuwe Galerij toevoegen"
|
94 |
|
95 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: gallery-plugin.php:480
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: gallery-plugin.php:481
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: gallery-plugin.php:482
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: gallery-plugin.php:483
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: gallery-plugin.php:484
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: gallery-plugin.php:485
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: gallery-plugin.php:533
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Galerij Shortcode"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: gallery-plugin.php:546
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: gallery-plugin.php:659
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: gallery-plugin.php:659
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: gallery-plugin.php:670
|
159 |
+
#, fuzzy
|
160 |
+
msgid "Sort Galleries in Category by"
|
161 |
+
msgstr "Sorteer foto's op"
|
162 |
+
|
163 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
164 |
+
#: includes/class-gllr-settings.php:711
|
165 |
+
#, fuzzy
|
166 |
+
msgid "Gallery ID"
|
167 |
+
msgstr "Galerij"
|
168 |
+
|
169 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
170 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
171 |
+
#: includes/class-gllr-settings.php:712
|
172 |
+
msgid "Title"
|
173 |
+
msgstr "Titel"
|
174 |
+
|
175 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
176 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
177 |
+
msgid "Date"
|
178 |
+
msgstr "Datum"
|
179 |
+
|
180 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
181 |
+
#: includes/class-gllr-settings.php:714
|
182 |
+
msgid "Last modified date"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
186 |
+
#: includes/class-gllr-settings.php:715
|
187 |
+
msgid "Comment count"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
191 |
+
#: includes/class-gllr-settings.php:716
|
192 |
+
msgid "\"Order\" field on the gallery edit page"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
196 |
+
#: includes/class-gllr-settings.php:717
|
197 |
+
msgid "Author"
|
198 |
+
msgstr "Autheur"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
201 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
202 |
+
msgid "Random"
|
203 |
+
msgstr "Willekeurig"
|
204 |
+
|
205 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
206 |
+
#, fuzzy
|
207 |
+
#| msgid "Settings"
|
208 |
+
msgid "Plugin Settings"
|
209 |
+
msgstr "Instellingen"
|
210 |
+
|
211 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
212 |
+
msgid "Select galleries sorting order in your category."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
216 |
#, fuzzy
|
217 |
msgid "Shortcode"
|
218 |
msgstr "Galerij Shortcode"
|
219 |
|
220 |
+
#: gallery-plugin.php:749
|
221 |
msgid "All Gallery Categories"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:827
|
225 |
msgid "You can't delete default gallery category."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
229 |
msgid "Sorry, nothing found."
|
230 |
msgstr "Sorry, niets gevonden."
|
231 |
|
232 |
+
#: gallery-plugin.php:1717
|
233 |
msgid "Featured Image"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "Images"
|
239 |
msgstr "Foto's bekijken »"
|
240 |
|
241 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
#, php-format
|
243 |
msgid "%s Settings"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
247 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
248 |
msgid "Settings"
|
249 |
msgstr "Instellingen"
|
250 |
|
251 |
+
#: gallery-plugin.php:1838
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:1839
|
256 |
msgid "Support"
|
257 |
msgstr "Ondersteuning"
|
258 |
|
259 |
+
#: gallery-plugin.php:1878
|
260 |
msgid "Updating images..."
|
261 |
msgstr "Bijwerken foto's..."
|
262 |
|
263 |
+
#: gallery-plugin.php:1879
|
264 |
#, fuzzy
|
265 |
msgid "No images found."
|
266 |
msgstr "Geen foto gevonden"
|
267 |
|
268 |
+
#: gallery-plugin.php:1880
|
269 |
#, fuzzy
|
270 |
msgid "All images were updated."
|
271 |
msgstr "Alle foto's zijn bijgewerkt"
|
272 |
|
273 |
+
#: gallery-plugin.php:1881
|
274 |
msgid "Error."
|
275 |
msgstr "Fout."
|
276 |
|
277 |
+
#: gallery-plugin.php:1893
|
278 |
msgid ""
|
279 |
"You are about to remove these items from this gallery.\n"
|
280 |
" 'Cancel' to stop, 'OK' to delete."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: gallery-plugin.php:1894
|
284 |
msgid ""
|
285 |
"You are about to remove this image from the gallery.\n"
|
286 |
" 'Cancel' to stop, 'OK' to delete."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: gallery-plugin.php:1895
|
290 |
msgid ""
|
291 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
292 |
"switching?"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: gallery-plugin.php:1896
|
296 |
msgid "Insert Media"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: gallery-plugin.php:1897
|
300 |
msgid "Insert"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: gallery-plugin.php:1898
|
304 |
+
msgid "Gallery has been successfully added!"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
308 |
msgid "Image size not defined"
|
309 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
310 |
|
311 |
+
#: gallery-plugin.php:2455
|
312 |
#, fuzzy
|
313 |
msgid ""
|
314 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
317 |
"We kunnen alleen de volgende bestandstypen bijwerken: PNG, JPG, GIF, WPMP of "
|
318 |
"XBM (Voor overige, aub handmatig herladen)."
|
319 |
|
320 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
321 |
msgid "Invalid path"
|
322 |
msgstr "Ongeldig pad"
|
323 |
|
324 |
+
#: gallery-plugin.php:2607
|
325 |
msgid "List View"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: gallery-plugin.php:2608
|
329 |
msgid "Grid View"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: gallery-plugin.php:2665
|
333 |
msgid "Filter"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: gallery-plugin.php:2669
|
337 |
msgid "Empty Trash"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: gallery-plugin.php:2692
|
341 |
#, fuzzy
|
342 |
msgid "No images found"
|
343 |
msgstr "Geen foto gevonden"
|
344 |
|
345 |
+
#: gallery-plugin.php:2745
|
346 |
msgid "Select bulk action"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: gallery-plugin.php:2747
|
350 |
msgid "Bulk Actions"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: gallery-plugin.php:2757
|
354 |
msgid "Apply"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: gallery-plugin.php:2764
|
358 |
#, fuzzy
|
359 |
msgid "Delete from Gallery"
|
360 |
msgstr "Nieuwe Galerij"
|
361 |
|
362 |
+
#: gallery-plugin.php:2773
|
363 |
msgid "Bulk Select"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: gallery-plugin.php:2774
|
367 |
msgid "Cancel Selection"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: gallery-plugin.php:2775
|
371 |
msgid "Delete Selected"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: gallery-plugin.php:2786
|
375 |
msgid "File"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
379 |
msgid "Dimensions"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
383 |
#, fuzzy
|
384 |
msgid "Alt Text"
|
385 |
msgstr "Alt tag"
|
386 |
|
387 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
388 |
msgid "URL"
|
389 |
msgstr "URL"
|
390 |
|
391 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
392 |
msgid ""
|
393 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
394 |
"to open a full size image."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: gallery-plugin.php:2872
|
398 |
#, fuzzy
|
399 |
msgid "Remove Image from Gallery"
|
400 |
msgstr "Nieuwe Galerij"
|
401 |
|
402 |
+
#: gallery-plugin.php:2875
|
403 |
#, fuzzy
|
404 |
msgid "Edit Image Info"
|
405 |
msgstr "Bijlage ID"
|
406 |
|
407 |
+
#: gallery-plugin.php:2876
|
408 |
msgid "Deselect"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: gallery-plugin.php:2888
|
412 |
msgid "File name"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: gallery-plugin.php:2889
|
416 |
msgid "File type"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: gallery-plugin.php:2914
|
420 |
msgid "Description"
|
421 |
msgstr "Omschrijving"
|
422 |
|
423 |
+
#: gallery-plugin.php:2920
|
424 |
#, fuzzy
|
425 |
msgid "Lightbox Button URL"
|
426 |
msgstr "Lightbox knop URL"
|
427 |
|
428 |
+
#: gallery-plugin.php:2927
|
429 |
msgid "New Tab"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: gallery-plugin.php:2929
|
433 |
msgid "Enable to open URLs above in a new tab."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: gallery-plugin.php:2934
|
437 |
#, fuzzy
|
438 |
msgid "Go Pro"
|
439 |
msgstr "Ga PRO"
|
440 |
|
441 |
+
#: gallery-plugin.php:2940
|
442 |
msgid "Edit more details"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: gallery-plugin.php:2942
|
446 |
#, fuzzy
|
447 |
msgid "Remove from Gallery"
|
448 |
msgstr "Nieuwe Galerij"
|
449 |
|
450 |
+
#: gallery-plugin.php:2978
|
451 |
#, php-format
|
452 |
msgid "Select %s"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:2991
|
456 |
#, php-format
|
457 |
msgid "Edit “%s”"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:2999
|
461 |
#, fuzzy
|
462 |
msgid "Edit Attachment Info"
|
463 |
msgstr "Bijlage ID"
|
464 |
|
465 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
466 |
msgid "Edit"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
470 |
msgid "Trash"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
474 |
msgid "Delete Permanently"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
478 |
#, php-format
|
479 |
msgid "View “%s”"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
483 |
msgid "View"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:3048
|
487 |
#, fuzzy
|
488 |
msgid "Attach"
|
489 |
msgstr "Bijlage ID"
|
490 |
|
491 |
+
#: gallery-plugin.php:3056
|
492 |
msgid "Restore"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:3086
|
496 |
msgid "A list or dropdown of Gallery categories."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:3131
|
500 |
msgid "Select Gallery Category"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:3189
|
504 |
#, fuzzy
|
505 |
msgid "Title:"
|
506 |
msgstr "Titel"
|
507 |
|
508 |
+
#: gallery-plugin.php:3192
|
509 |
msgid "Display as dropdown"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: gallery-plugin.php:3194
|
513 |
msgid "Show gallery counts"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: gallery-plugin.php:3196
|
517 |
msgid "Show hierarchy"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: gallery-plugin.php:3312
|
521 |
msgid "Warning"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:3312
|
525 |
msgid "You can add only images to the gallery"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
529 |
#, fuzzy
|
530 |
msgid "no title"
|
531 |
msgstr "Titel"
|
532 |
|
533 |
+
#: gallery-plugin.php:3377
|
534 |
#, fuzzy
|
535 |
msgid ""
|
536 |
"Display an album image with the description and the link to a single gallery "
|
539 |
"Als je een korte omschrijving, met een voorbeeld & link naar de galerij "
|
540 |
"pagina, wilt weergeven "
|
541 |
|
542 |
+
#: gallery-plugin.php:3381
|
543 |
#, fuzzy
|
544 |
msgid "Sorry, no gallery found."
|
545 |
msgstr "Sorry, niets gevonden."
|
573 |
msgid "License Key"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
577 |
#, fuzzy
|
578 |
msgid "Settings saved"
|
579 |
msgstr "Instellingen opgeslagen"
|
580 |
|
581 |
+
#: includes/class-gllr-settings.php:256
|
582 |
#, fuzzy
|
583 |
msgid "Please, enable JavaScript in Your browser."
|
584 |
msgstr "Activeer JavaScript om de uploader te gebruiken."
|
585 |
|
586 |
+
#: includes/class-gllr-settings.php:260
|
587 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: includes/class-gllr-settings.php:261
|
591 |
#, fuzzy
|
592 |
msgid "Update Images"
|
593 |
msgstr "Bijwerken foto's..."
|
594 |
|
595 |
+
#: includes/class-gllr-settings.php:276
|
596 |
#, fuzzy
|
597 |
msgid "Gallery Images"
|
598 |
msgstr "Afmeting galerij foto"
|
599 |
|
600 |
+
#: includes/class-gllr-settings.php:281
|
601 |
msgid "Images adding requires JavaScript."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/class-gllr-settings.php:284
|
605 |
msgid "Add Media"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/class-gllr-settings.php:293
|
609 |
msgid "The grid view for the Gallery images requires JavaScript."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/class-gllr-settings.php:293
|
613 |
msgid "Switch to the list view"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/class-gllr-settings.php:320
|
617 |
+
#, fuzzy
|
618 |
+
#| msgid "Add gallery to the search"
|
619 |
+
msgid "Add Gallery to the Slider"
|
620 |
+
msgstr "Galerij, aan zoeken, toevoegen"
|
621 |
+
|
622 |
+
#: includes/class-gllr-settings.php:332
|
623 |
+
msgid "Activate"
|
624 |
+
msgstr "Activeren"
|
625 |
+
|
626 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
627 |
+
#, fuzzy
|
628 |
+
msgid "Install Now"
|
629 |
+
msgstr "Установка %"
|
630 |
+
|
631 |
+
#: includes/class-gllr-settings.php:337
|
632 |
+
msgid "Add"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/class-gllr-settings.php:340
|
636 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: includes/class-gllr-settings.php:351
|
640 |
#, fuzzy
|
641 |
msgid "Single Gallery Settings"
|
642 |
msgstr "Galerij Instellingen"
|
643 |
|
644 |
+
#: includes/class-gllr-settings.php:353
|
645 |
#, php-format
|
646 |
msgid "Enable to configure single gallery settings and disable %s."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
650 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
651 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
652 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
653 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
654 |
msgid "Close"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/class-gllr-settings.php:369
|
658 |
#, fuzzy
|
659 |
msgid "Gallery Layout"
|
660 |
msgstr "Geen Galerij gevonden"
|
661 |
|
662 |
+
#: includes/class-gllr-settings.php:374
|
663 |
msgid "Grid"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/class-gllr-settings.php:380
|
667 |
msgid "Masonry"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/class-gllr-settings.php:393
|
671 |
msgid "Number of Columns"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/class-gllr-settings.php:396
|
675 |
#, php-format
|
676 |
msgid "Number of gallery columns (default is %s)."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
680 |
#, fuzzy
|
681 |
msgid "Image Size"
|
682 |
msgstr "Foto afmeting"
|
683 |
|
684 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
685 |
msgid "Custom"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/class-gllr-settings.php:408
|
689 |
msgid ""
|
690 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/class-gllr-settings.php:412
|
694 |
#, fuzzy
|
695 |
msgid "Custom Image Size"
|
696 |
msgstr "Foto afmeting"
|
697 |
|
698 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
699 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
700 |
msgid "px"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/class-gllr-settings.php:415
|
704 |
msgid ""
|
705 |
"Adjust these values based on the number of columns in your gallery. This "
|
706 |
"won't effect the full size of your images in the lightbox."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/class-gllr-settings.php:426
|
710 |
#, fuzzy
|
711 |
msgid "Crop Images"
|
712 |
msgstr "Sorteer foto's"
|
713 |
|
714 |
+
#: includes/class-gllr-settings.php:428
|
715 |
msgid ""
|
716 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
717 |
"to resize images automatically using their aspect ratio."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
721 |
#, fuzzy
|
722 |
msgid "Crop Position"
|
723 |
msgstr "Positie bijsnijden"
|
724 |
|
725 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
726 |
msgid "Select crop position base (by default: center)."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-gllr-settings.php:457
|
730 |
#, fuzzy
|
731 |
msgid "Image Title"
|
732 |
msgstr "Foto afmeting"
|
733 |
|
734 |
+
#: includes/class-gllr-settings.php:459
|
735 |
msgid "Enable to display image title along with the gallery image."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/class-gllr-settings.php:470
|
739 |
#, fuzzy
|
740 |
msgid "Image Title Position"
|
741 |
msgstr "Afmetingen van foto, niet gedefinieerd"
|
742 |
|
743 |
+
#: includes/class-gllr-settings.php:475
|
744 |
#, fuzzy
|
745 |
msgid "Under image"
|
746 |
msgstr "Foto's bijwerken"
|
747 |
|
748 |
+
#: includes/class-gllr-settings.php:481
|
749 |
msgid "On mouse hover"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/class-gllr-settings.php:494
|
753 |
#, fuzzy
|
754 |
msgid "Image Border"
|
755 |
msgstr "Foto's met rand"
|
756 |
|
757 |
+
#: includes/class-gllr-settings.php:496
|
758 |
msgid ""
|
759 |
"Enable images border using the styles defined for Image Border Size and "
|
760 |
"Color options."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:500
|
764 |
#, fuzzy
|
765 |
msgid "Image Border Size"
|
766 |
msgstr "Foto afmeting"
|
767 |
|
768 |
+
#: includes/class-gllr-settings.php:503
|
769 |
#, php-format
|
770 |
msgid "Gallery image border width (default is %s)"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/class-gllr-settings.php:507
|
774 |
#, fuzzy
|
775 |
msgid "Image Border Color"
|
776 |
msgstr "Selecteer een randkleur"
|
777 |
|
778 |
+
#: includes/class-gllr-settings.php:520
|
779 |
msgid "Pagination"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: includes/class-gllr-settings.php:523
|
783 |
msgid ""
|
784 |
"Enable pagination for images to limit number of images displayed on a single "
|
785 |
"gallery page."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/class-gllr-settings.php:527
|
789 |
#, fuzzy
|
790 |
msgid "Number of Images"
|
791 |
msgstr "Aantal foto's op een rij"
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:530
|
794 |
#, php-format
|
795 |
msgid "Number of images displayed per page (default is %d)."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: includes/class-gllr-settings.php:540
|
799 |
#, fuzzy
|
800 |
msgid "Sort Images by"
|
801 |
msgstr "Sorteer foto's op"
|
802 |
|
803 |
+
#: includes/class-gllr-settings.php:543
|
804 |
msgid "Manually (default)"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/class-gllr-settings.php:544
|
808 |
#, fuzzy
|
809 |
msgid "Image ID"
|
810 |
msgstr "Foto"
|
811 |
|
812 |
+
#: includes/class-gllr-settings.php:545
|
813 |
msgid "Name"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
817 |
msgid ""
|
818 |
"Select images sorting order in your gallery. By default, you can sort images "
|
819 |
"manually in the images tab."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/class-gllr-settings.php:553
|
823 |
#, fuzzy
|
824 |
msgid "Arrange Images by"
|
825 |
msgstr "Sorteer foto's op"
|
826 |
|
827 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
828 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
832 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:562
|
836 |
#, fuzzy
|
837 |
msgid "Back Link"
|
838 |
msgstr "De Terug link URL"
|
839 |
|
840 |
+
#: includes/class-gllr-settings.php:564
|
841 |
msgid ""
|
842 |
"Enable to show a back link in a single gallery page which navigate to a "
|
843 |
"previous page."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/class-gllr-settings.php:568
|
847 |
#, fuzzy
|
848 |
msgid "Back Link URL"
|
849 |
msgstr "De Terug link URL"
|
850 |
|
851 |
+
#: includes/class-gllr-settings.php:571
|
852 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/class-gllr-settings.php:575
|
856 |
#, fuzzy
|
857 |
msgid "Back Link Label"
|
858 |
msgstr "De Terug link URL"
|
859 |
|
860 |
+
#: includes/class-gllr-settings.php:581
|
861 |
#, fuzzy
|
862 |
msgid "Back Link with Shortcode"
|
863 |
msgstr "Toon de Terug link in de shortcode"
|
864 |
|
865 |
+
#: includes/class-gllr-settings.php:584
|
866 |
#, fuzzy
|
867 |
msgid "Enable to display a back link on a page where shortcode is used."
|
868 |
msgstr "Toon de Terug link in de shortcode"
|
869 |
|
870 |
+
#: includes/class-gllr-settings.php:595
|
871 |
#, fuzzy
|
872 |
msgid "Cover Settings"
|
873 |
msgstr "Galerij Instellingen"
|
874 |
|
875 |
+
#: includes/class-gllr-settings.php:600
|
876 |
#, fuzzy
|
877 |
msgid "Galleries Page"
|
878 |
msgstr "Galerijen"
|
879 |
|
880 |
+
#: includes/class-gllr-settings.php:608
|
881 |
#, fuzzy
|
882 |
msgid "Base page where all existing galleries will be displayed."
|
883 |
msgstr ""
|
884 |
"Als je naar de Pro versie overstapt, zullen alle instellingen en galerijen "
|
885 |
"bewaard blijven."
|
886 |
|
887 |
+
#: includes/class-gllr-settings.php:612
|
888 |
msgid "Albums Displaying"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-gllr-settings.php:615
|
892 |
msgid "Column"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-gllr-settings.php:616
|
896 |
msgid "Rows"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: includes/class-gllr-settings.php:618
|
900 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/class-gllr-settings.php:622
|
904 |
msgid "Column Alignment"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/class-gllr-settings.php:625
|
908 |
msgid "Left"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/class-gllr-settings.php:626
|
912 |
msgid "Right"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/class-gllr-settings.php:627
|
916 |
msgid "Center"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-gllr-settings.php:629
|
920 |
msgid "Select the column alignment."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-gllr-settings.php:633
|
924 |
#, fuzzy
|
925 |
msgid "Cover Image Size"
|
926 |
msgstr "Foto afmeting"
|
927 |
|
928 |
+
#: includes/class-gllr-settings.php:641
|
929 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/class-gllr-settings.php:645
|
933 |
msgid "Custom Cover Image Size"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-gllr-settings.php:658
|
937 |
msgid "Crop Cover Images"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/class-gllr-settings.php:660
|
941 |
msgid ""
|
942 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
943 |
"Disable to resize images automatically using their aspect ratio."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:689
|
947 |
#, fuzzy
|
948 |
msgid "Cover Image Border"
|
949 |
msgstr "Foto's met rand"
|
950 |
|
951 |
+
#: includes/class-gllr-settings.php:691
|
952 |
msgid ""
|
953 |
"Enable cover images border using the styles defined for Image Border Size "
|
954 |
"and Color."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: includes/class-gllr-settings.php:695
|
958 |
msgid "Cover Image Border Size"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/class-gllr-settings.php:698
|
962 |
#, php-format
|
963 |
msgid "Cover image border width (default is %s)"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:702
|
967 |
#, fuzzy
|
968 |
msgid "Cover Image Border Color"
|
969 |
msgstr "Selecteer een randkleur"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:708
|
972 |
#, fuzzy
|
973 |
msgid "Sort Albums by"
|
974 |
msgstr "Sorteer foto's op"
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
msgid "Select galleries sorting order in your galleries page."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/class-gllr-settings.php:724
|
981 |
msgid "Arrange Albums by"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:733
|
985 |
#, fuzzy
|
986 |
msgid "Read More Link Label"
|
987 |
msgstr "De 'Lees Meer' link tekst"
|
988 |
|
989 |
+
#: includes/class-gllr-settings.php:746
|
990 |
msgid "Instant Lightbox"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/class-gllr-settings.php:749
|
994 |
msgid ""
|
995 |
"Enable to display all images in the lightbox after clicking cover image or "
|
996 |
"URL instead of going to a single gallery page."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:763
|
1000 |
#, fuzzy
|
1001 |
msgid "Lightbox Settings"
|
1002 |
msgstr "Lightbox knop URL"
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:768
|
1005 |
+
msgid "Unclickable Thumbnail Images"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/class-gllr-settings.php:771
|
1009 |
+
msgid ""
|
1010 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1011 |
+
"URLs. This option also disables Lightbox."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/class-gllr-settings.php:775
|
1015 |
msgid "Enable Lightbox"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/class-gllr-settings.php:778
|
1019 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/class-gllr-settings.php:796
|
1023 |
msgid ""
|
1024 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1025 |
"will display the original, full size image."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:800
|
1029 |
msgid "Overlay Color"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: includes/class-gllr-settings.php:806
|
1033 |
msgid "Overlay Opacity"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: includes/class-gllr-settings.php:809
|
1037 |
#, php-format
|
1038 |
msgid ""
|
1039 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1040 |
"is %s)."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/class-gllr-settings.php:819
|
1044 |
#, fuzzy
|
1045 |
msgid "Slideshow"
|
1046 |
msgstr "Start diavoorstelling"
|
1047 |
|
1048 |
+
#: includes/class-gllr-settings.php:821
|
1049 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: includes/class-gllr-settings.php:825
|
1053 |
#, fuzzy
|
1054 |
msgid "Slideshow Duration"
|
1055 |
msgstr "Diavoorstelling interval"
|
1056 |
|
1057 |
+
#: includes/class-gllr-settings.php:827
|
1058 |
msgid "ms"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/class-gllr-settings.php:828
|
1062 |
msgid "Slideshow interval duration between two images."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/class-gllr-settings.php:839
|
1066 |
#, fuzzy
|
1067 |
msgid "Lightbox Helpers"
|
1068 |
msgstr "De lightbox helper"
|
1069 |
|
1070 |
+
#: includes/class-gllr-settings.php:841
|
1071 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/class-gllr-settings.php:845
|
1075 |
#, fuzzy
|
1076 |
msgid "Lightbox Thumbnails"
|
1077 |
msgstr "Foto afmeting voor de omslag van het album"
|
1078 |
|
1079 |
+
#: includes/class-gllr-settings.php:847
|
1080 |
msgid "Enable to use a lightbox helper navigation between images."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/class-gllr-settings.php:851
|
1084 |
msgid "Lightbox Thumbnails Position"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/class-gllr-settings.php:854
|
1088 |
#, fuzzy
|
1089 |
msgid "Top"
|
1090 |
msgstr "bovenkant"
|
1091 |
|
1092 |
+
#: includes/class-gllr-settings.php:859
|
1093 |
#, fuzzy
|
1094 |
msgid "Lightbox Button Label"
|
1095 |
msgstr "Lightbox knop URL"
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:861
|
1098 |
#, fuzzy
|
1099 |
msgid "Read More"
|
1100 |
msgstr "Kom meer te weten"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:871
|
1103 |
#, fuzzy
|
1104 |
msgid "Download Button"
|
1105 |
msgstr "Aangepast zoeken, downloaden"
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:873
|
1108 |
msgid "Enable to display download button."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:877
|
1112 |
msgid "Single Lightbox"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:879
|
1116 |
#, fuzzy
|
1117 |
msgid ""
|
1118 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1119 |
"page."
|
1120 |
msgstr "Gebruik 1 lightbox voor meerdere galerijen op 1 pagina"
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:889
|
1123 |
msgid "Social Sharing Buttons Settings"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:898
|
1127 |
msgid "Social Buttons"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/class-gllr-settings.php:900
|
1131 |
msgid "Enable social sharing buttons in the lightbox."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/class-gllr-settings.php:904
|
1135 |
msgid "Social Networks"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:915
|
1139 |
#, fuzzy
|
1140 |
msgid "Counter"
|
1141 |
msgstr "Diavoorstelling interval"
|
1142 |
|
1143 |
+
#: includes/class-gllr-settings.php:918
|
1144 |
msgid ""
|
1145 |
"Enable to show likes counter for each social button (not available for "
|
1146 |
"Google +1)."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/class-gllr-settings.php:933
|
1150 |
#, fuzzy
|
1151 |
msgid "Demo Data"
|
1152 |
msgstr "Установка %"
|
1153 |
|
1154 |
+
#: includes/class-gllr-settings.php:935
|
1155 |
msgid ""
|
1156 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1157 |
"page with a list of all galleries."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/class-gllr-settings.php:973
|
1161 |
#, fuzzy
|
1162 |
msgid "Gallery Post Type"
|
1163 |
msgstr "Galerij Shortcode"
|
1164 |
|
1165 |
+
#: includes/class-gllr-settings.php:975
|
1166 |
msgid ""
|
1167 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1168 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1170 |
"used."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/class-gllr-settings.php:987
|
1174 |
#, fuzzy
|
1175 |
msgid "Gallery Slug"
|
1176 |
msgstr "Galerij"
|
1177 |
|
1178 |
+
#: includes/class-gllr-settings.php:991
|
1179 |
msgid "Enter the unique gallery slug."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/class-gllr-settings.php:1007
|
1183 |
#, fuzzy
|
1184 |
msgid "Activate Now"
|
1185 |
msgstr "Activeren"
|
1186 |
|
1187 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1188 |
msgid "Enable to include galleries to your website search."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/class-gllr-settings.php:1025
|
1192 |
#, php-format
|
1193 |
msgid "%s is required."
|
1194 |
msgstr ""
|
1283 |
msgid "Yes, install demo now"
|
1284 |
msgstr "Установка %"
|
1285 |
|
1286 |
+
#~ msgid "or"
|
1287 |
+
#~ msgstr "of"
|
1288 |
+
|
1289 |
#, fuzzy
|
1290 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1291 |
#~ msgstr ""
|
1338 |
#~ msgid "Learn more"
|
1339 |
#~ msgstr "Kom meer te weten"
|
1340 |
|
|
|
|
|
|
|
1341 |
#, fuzzy
|
1342 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1343 |
#~ msgstr "Geef 'Vind ik leuk' knoppen weer, in de lightbox"
|
1480 |
#~ msgid "(Full URL to custom page)"
|
1481 |
#~ msgstr "(Volledige URL naar aangepaste pagina)"
|
1482 |
|
|
|
|
|
|
|
1483 |
#~ msgid "Using"
|
1484 |
#~ msgstr "Gebruik"
|
1485 |
|
1557 |
#~ msgid "Select a background color"
|
1558 |
#~ msgstr "Selecteer een achtergrondkleur"
|
1559 |
|
|
|
|
|
|
|
|
|
1560 |
#~ msgid "Width (in px)"
|
1561 |
#~ msgstr "Breedte (in px)"
|
1562 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
@@ -19,152 +19,152 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ gallery
|
22 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Configurações da Galeria"
|
25 |
|
26 |
# @ gallery
|
27 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
28 |
#, fuzzy
|
29 |
msgid "Global Settings"
|
30 |
msgstr "Configurações da Galeria"
|
31 |
|
32 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
33 |
msgid "Upgrade to Pro"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: gallery-plugin.php:
|
37 |
msgid "Return to all albums"
|
38 |
msgstr ""
|
39 |
|
40 |
# @ gallery
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "See images »"
|
43 |
msgstr "Ver imagens »"
|
44 |
|
45 |
# @ gallery
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "Galleries"
|
48 |
msgstr "Galerias"
|
49 |
|
50 |
# @ gallery
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Gallery"
|
53 |
msgstr "Galeria"
|
54 |
|
55 |
# @ gallery
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "Add New Gallery"
|
58 |
msgstr "Adicionar Nova Galeria"
|
59 |
|
60 |
# @ gallery
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "Edit Gallery"
|
63 |
msgstr "Editar Galeria"
|
64 |
|
65 |
# @ gallery
|
66 |
-
#: gallery-plugin.php:
|
67 |
msgid "New Gallery"
|
68 |
msgstr "Nova Galeria"
|
69 |
|
70 |
# @ gallery
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "View Gallery"
|
73 |
msgstr "Ver Galeria"
|
74 |
|
75 |
# @ gallery
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Search Galleries"
|
79 |
msgstr "Galerias"
|
80 |
|
81 |
# @ gallery
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "No Gallery found"
|
84 |
msgstr "Nenhuma Galeria foi encontrada"
|
85 |
|
86 |
# @ gallery
|
87 |
-
#: gallery-plugin.php:
|
88 |
-
#: gallery-plugin.php:
|
89 |
-
#: gallery-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Gallery Categories"
|
92 |
msgstr "Tamanho da imagem da galeria"
|
93 |
|
94 |
# @ gallery
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, fuzzy
|
97 |
msgid "Gallery Category"
|
98 |
msgstr "Tamanho da imagem da galeria"
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Add Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
# @ gallery
|
105 |
-
#: gallery-plugin.php:
|
106 |
#, fuzzy
|
107 |
msgid "Add New Gallery Category"
|
108 |
msgstr "Adicionar Nova Galeria"
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Edit Gallery Category"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "New Gallery Category"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "View Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Find Gallery Category"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "No Gallery Categories found"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "No Gallery Categories found in Trash"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Parent Gallery Category"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "Gallery Categories list navigation"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Gallery Categories list"
|
144 |
msgstr ""
|
145 |
|
146 |
# @ gallery
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "Gallery Shortcode"
|
149 |
msgstr "Shortcode da Galeria"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
msgid ""
|
153 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
154 |
"widgets by using the following shortcode:"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid ""
|
159 |
"Add a gallery cover including featured image, description, and a link to "
|
160 |
"your single gallery using the following shortcode:"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "Note"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
#, php-format
|
169 |
msgid ""
|
170 |
"When deleting a category, the galleries that belong to this category will "
|
@@ -172,359 +172,407 @@ msgid ""
|
|
172 |
msgstr ""
|
173 |
|
174 |
# @ gallery
|
175 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
#, fuzzy
|
177 |
msgid "Shortcode"
|
178 |
msgstr "Shortcode da Galeria"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "All Gallery Categories"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "You can't delete default gallery category."
|
186 |
msgstr ""
|
187 |
|
188 |
# @ gallery
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Sorry, nothing found."
|
191 |
msgstr "Desculpe, nada foi encontrado."
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Featured Image"
|
195 |
msgstr ""
|
196 |
|
197 |
# @ gallery
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
200 |
-
msgid "Title"
|
201 |
-
msgstr "Título"
|
202 |
-
|
203 |
-
# @ gallery
|
204 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
205 |
#, fuzzy
|
206 |
msgid "Images"
|
207 |
msgstr "Ver imagens »"
|
208 |
|
209 |
-
|
210 |
-
#: gallery-plugin.php:1601 includes/class-gllr-settings.php:684
|
211 |
-
msgid "Author"
|
212 |
-
msgstr "Autor"
|
213 |
-
|
214 |
-
# @ gallery
|
215 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
216 |
-
#: includes/class-gllr-settings.php:680
|
217 |
-
msgid "Date"
|
218 |
-
msgstr "Data"
|
219 |
-
|
220 |
-
#: gallery-plugin.php:1688
|
221 |
#, php-format
|
222 |
msgid "%s Settings"
|
223 |
msgstr ""
|
224 |
|
225 |
# @ bestwebsoft
|
226 |
# @ gallery
|
227 |
-
#: gallery-plugin.php:
|
228 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
229 |
msgid "Settings"
|
230 |
msgstr "Configurações"
|
231 |
|
232 |
# @ gallery
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "FAQ"
|
235 |
msgstr "FAQ"
|
236 |
|
237 |
# @ gallery
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Support"
|
240 |
msgstr "Suporte"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
#, fuzzy
|
244 |
msgid "Updating images..."
|
245 |
msgstr "Actualizando imagenes"
|
246 |
|
247 |
# @ gallery
|
248 |
-
#: gallery-plugin.php:
|
249 |
#, fuzzy
|
250 |
msgid "No images found."
|
251 |
msgstr "Nenhuma Galeria foi encontrada"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "All images were updated."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, fuzzy
|
259 |
msgid "Error."
|
260 |
msgstr "Error"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid ""
|
264 |
"You are about to remove these items from this gallery.\n"
|
265 |
" 'Cancel' to stop, 'OK' to delete."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid ""
|
270 |
"You are about to remove this image from the gallery.\n"
|
271 |
" 'Cancel' to stop, 'OK' to delete."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid ""
|
276 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
277 |
"switching?"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Insert Media"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Insert"
|
286 |
msgstr ""
|
287 |
|
|
|
|
|
|
|
|
|
288 |
# @ gallery
|
289 |
-
#: gallery-plugin.php:
|
290 |
#, fuzzy
|
291 |
msgid "Image size not defined"
|
292 |
msgstr "Tanaño de imagen no definida"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid ""
|
296 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
297 |
"reload images manually."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
#, fuzzy
|
302 |
msgid "Invalid path"
|
303 |
msgstr "Ruta incorrecta."
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "List View"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Grid View"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Filter"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "Empty Trash"
|
319 |
msgstr ""
|
320 |
|
321 |
# @ gallery
|
322 |
-
#: gallery-plugin.php:
|
323 |
#, fuzzy
|
324 |
msgid "No images found"
|
325 |
msgstr "Nenhuma Galeria foi encontrada"
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "Select bulk action"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "Bulk Actions"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Apply"
|
337 |
msgstr ""
|
338 |
|
339 |
# @ gallery
|
340 |
-
#: gallery-plugin.php:
|
341 |
#, fuzzy
|
342 |
msgid "Delete from Gallery"
|
343 |
msgstr "Nova Galeria"
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Bulk Select"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Cancel Selection"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Delete Selected"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid "File"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "Dimensions"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "Alt Text"
|
367 |
msgstr ""
|
368 |
|
369 |
# @ gallery
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "URL"
|
372 |
msgstr "URL"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid ""
|
376 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
377 |
"to open a full size image."
|
378 |
msgstr ""
|
379 |
|
380 |
# @ gallery
|
381 |
-
#: gallery-plugin.php:
|
382 |
#, fuzzy
|
383 |
msgid "Remove Image from Gallery"
|
384 |
msgstr "Nova Galeria"
|
385 |
|
386 |
# @ gallery
|
387 |
-
#: gallery-plugin.php:
|
388 |
#, fuzzy
|
389 |
msgid "Edit Image Info"
|
390 |
msgstr "ID do anexo"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Deselect"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "File name"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "File type"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Description"
|
406 |
msgstr ""
|
407 |
|
408 |
# @ gallery
|
409 |
-
#: gallery-plugin.php:
|
410 |
#, fuzzy
|
411 |
msgid "Lightbox Button URL"
|
412 |
msgstr "Fundo do Lightbox"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "New Tab"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Enable to open URLs above in a new tab."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Go Pro"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Edit more details"
|
428 |
msgstr ""
|
429 |
|
430 |
# @ gallery
|
431 |
-
#: gallery-plugin.php:
|
432 |
#, fuzzy
|
433 |
msgid "Remove from Gallery"
|
434 |
msgstr "Nova Galeria"
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
#, php-format
|
438 |
msgid "Select %s"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
#, php-format
|
443 |
msgid "Edit “%s”"
|
444 |
msgstr ""
|
445 |
|
446 |
# @ gallery
|
447 |
-
#: gallery-plugin.php:
|
448 |
#, fuzzy
|
449 |
msgid "Edit Attachment Info"
|
450 |
msgstr "ID do anexo"
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "Edit"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
msgid "Trash"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Delete Permanently"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
#, php-format
|
466 |
msgid "View “%s”"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "View"
|
471 |
msgstr ""
|
472 |
|
473 |
# @ gallery
|
474 |
-
#: gallery-plugin.php:
|
475 |
#, fuzzy
|
476 |
msgid "Attach"
|
477 |
msgstr "ID do anexo"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "Restore"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "A list or dropdown of Gallery categories."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid "Select Gallery Category"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
#, fuzzy
|
493 |
msgid "Title:"
|
494 |
msgstr "Título"
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
msgid "Display as dropdown"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: gallery-plugin.php:
|
501 |
msgid "Show gallery counts"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: gallery-plugin.php:
|
505 |
msgid "Show hierarchy"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: gallery-plugin.php:
|
509 |
msgid "Warning"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: gallery-plugin.php:
|
513 |
msgid "You can add only images to the gallery"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: gallery-plugin.php:3173
|
517 |
-
msgid "or"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
# @ gallery
|
521 |
-
#: gallery-plugin.php:
|
522 |
#, fuzzy
|
523 |
msgid "no title"
|
524 |
msgstr "Título"
|
525 |
|
526 |
# @ gallery
|
527 |
-
#: gallery-plugin.php:
|
528 |
#, fuzzy
|
529 |
msgid ""
|
530 |
"Display an album image with the description and the link to a single gallery "
|
@@ -534,7 +582,7 @@ msgstr ""
|
|
534 |
"para a Página da Galeria use assim"
|
535 |
|
536 |
# @ gallery
|
537 |
-
#: gallery-plugin.php:
|
538 |
#, fuzzy
|
539 |
msgid "Sorry, no gallery found."
|
540 |
msgstr "Desculpe, nada foi encontrado."
|
@@ -567,487 +615,496 @@ msgstr ""
|
|
567 |
msgid "License Key"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/class-gllr-settings.php:210
|
571 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
# @ gallery
|
575 |
-
#: includes/class-gllr-settings.php:
|
576 |
#, fuzzy
|
577 |
msgid "Settings saved"
|
578 |
msgstr "As configurações estão salvas"
|
579 |
|
580 |
# @ gallery
|
581 |
-
#: includes/class-gllr-settings.php:
|
582 |
#, fuzzy
|
583 |
msgid "Please, enable JavaScript in Your browser."
|
584 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
585 |
|
|
|
|
|
|
|
|
|
586 |
# @ gallery
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
#, fuzzy
|
589 |
msgid "Update Images"
|
590 |
msgstr "ordenar imagens"
|
591 |
|
592 |
# @ gallery
|
593 |
-
#: includes/class-gllr-settings.php:
|
594 |
#, fuzzy
|
595 |
msgid "Gallery Images"
|
596 |
msgstr "Tamanho da imagem da galeria"
|
597 |
|
598 |
-
#: includes/class-gllr-settings.php:
|
599 |
msgid "Images adding requires JavaScript."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: includes/class-gllr-settings.php:
|
603 |
msgid "Add Media"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: includes/class-gllr-settings.php:
|
607 |
msgid "The grid view for the Gallery images requires JavaScript."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: includes/class-gllr-settings.php:
|
611 |
msgid "Switch to the list view"
|
612 |
msgstr ""
|
613 |
|
614 |
# @ gallery
|
615 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
#, fuzzy
|
617 |
msgid "Single Gallery Settings"
|
618 |
msgstr "Configurações da Galeria"
|
619 |
|
620 |
-
#: includes/class-gllr-settings.php:
|
621 |
#, php-format
|
622 |
msgid "Enable to configure single gallery settings and disable %s."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/class-gllr-settings.php:
|
626 |
-
#: includes/class-gllr-settings.php:
|
627 |
-
#: includes/class-gllr-settings.php:
|
628 |
-
#: includes/class-gllr-settings.php:
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
msgid "Close"
|
631 |
msgstr ""
|
632 |
|
633 |
# @ gallery
|
634 |
-
#: includes/class-gllr-settings.php:
|
635 |
#, fuzzy
|
636 |
msgid "Gallery Layout"
|
637 |
msgstr "Nenhuma Galeria foi encontrada"
|
638 |
|
639 |
-
#: includes/class-gllr-settings.php:
|
640 |
msgid "Grid"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
msgid "Masonry"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/class-gllr-settings.php:
|
648 |
msgid "Number of Columns"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/class-gllr-settings.php:
|
652 |
#, php-format
|
653 |
msgid "Number of gallery columns (default is %s)."
|
654 |
msgstr ""
|
655 |
|
656 |
# @ gallery
|
657 |
-
#: includes/class-gllr-settings.php:
|
658 |
#, fuzzy
|
659 |
msgid "Image Size"
|
660 |
msgstr "Tamanho da imagem"
|
661 |
|
662 |
-
#: includes/class-gllr-settings.php:
|
663 |
msgid "Custom"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: includes/class-gllr-settings.php:
|
667 |
msgid ""
|
668 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
669 |
msgstr ""
|
670 |
|
671 |
# @ gallery
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
#, fuzzy
|
674 |
msgid "Custom Image Size"
|
675 |
msgstr "Tamanho da imagem"
|
676 |
|
677 |
-
#: includes/class-gllr-settings.php:
|
678 |
-
#: includes/class-gllr-settings.php:
|
679 |
msgid "px"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
msgid ""
|
684 |
"Adjust these values based on the number of columns in your gallery. This "
|
685 |
"won't effect the full size of your images in the lightbox."
|
686 |
msgstr ""
|
687 |
|
688 |
# @ gallery
|
689 |
-
#: includes/class-gllr-settings.php:
|
690 |
#, fuzzy
|
691 |
msgid "Crop Images"
|
692 |
msgstr "Ordenar imagens:"
|
693 |
|
694 |
-
#: includes/class-gllr-settings.php:
|
695 |
msgid ""
|
696 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
697 |
"to resize images automatically using their aspect ratio."
|
698 |
msgstr ""
|
699 |
|
700 |
# @ gallery
|
701 |
-
#: includes/class-gllr-settings.php:
|
702 |
#, fuzzy
|
703 |
msgid "Crop Position"
|
704 |
msgstr "Posição de recorte"
|
705 |
|
706 |
-
#: includes/class-gllr-settings.php:
|
707 |
msgid "Select crop position base (by default: center)."
|
708 |
msgstr ""
|
709 |
|
710 |
# @ gallery
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
#, fuzzy
|
713 |
msgid "Image Title"
|
714 |
msgstr "Tamanho da imagem"
|
715 |
|
716 |
-
#: includes/class-gllr-settings.php:
|
717 |
msgid "Enable to display image title along with the gallery image."
|
718 |
msgstr ""
|
719 |
|
720 |
# @ gallery
|
721 |
-
#: includes/class-gllr-settings.php:
|
722 |
#, fuzzy
|
723 |
msgid "Image Title Position"
|
724 |
msgstr "Tamanho da imagem"
|
725 |
|
726 |
# @ gallery
|
727 |
-
#: includes/class-gllr-settings.php:
|
728 |
#, fuzzy
|
729 |
msgid "Under image"
|
730 |
msgstr "ordenar imagens"
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
msgid "On mouse hover"
|
734 |
msgstr ""
|
735 |
|
736 |
# @ gallery
|
737 |
-
#: includes/class-gllr-settings.php:
|
738 |
#, fuzzy
|
739 |
msgid "Image Border"
|
740 |
msgstr "Imagens com borda"
|
741 |
|
742 |
-
#: includes/class-gllr-settings.php:
|
743 |
msgid ""
|
744 |
"Enable images border using the styles defined for Image Border Size and "
|
745 |
"Color options."
|
746 |
msgstr ""
|
747 |
|
748 |
# @ gallery
|
749 |
-
#: includes/class-gllr-settings.php:
|
750 |
#, fuzzy
|
751 |
msgid "Image Border Size"
|
752 |
msgstr "Tamanho da imagem"
|
753 |
|
754 |
-
#: includes/class-gllr-settings.php:
|
755 |
#, php-format
|
756 |
msgid "Gallery image border width (default is %s)"
|
757 |
msgstr ""
|
758 |
|
759 |
# @ gallery
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
#, fuzzy
|
762 |
msgid "Image Border Color"
|
763 |
msgstr "Escolha a cor da borda"
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
msgid "Pagination"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-gllr-settings.php:
|
770 |
msgid ""
|
771 |
"Enable pagination for images to limit number of images displayed on a single "
|
772 |
"gallery page."
|
773 |
msgstr ""
|
774 |
|
775 |
# @ gallery
|
776 |
-
#: includes/class-gllr-settings.php:
|
777 |
#, fuzzy
|
778 |
msgid "Number of Images"
|
779 |
msgstr "Número de imagens por linha"
|
780 |
|
781 |
-
#: includes/class-gllr-settings.php:
|
782 |
#, php-format
|
783 |
msgid "Number of images displayed per page (default is %d)."
|
784 |
msgstr ""
|
785 |
|
786 |
# @ gallery
|
787 |
-
#: includes/class-gllr-settings.php:
|
788 |
#, fuzzy
|
789 |
msgid "Sort Images by"
|
790 |
msgstr "Ordenar imagens por"
|
791 |
|
792 |
-
#: includes/class-gllr-settings.php:
|
793 |
msgid "Manually (default)"
|
794 |
msgstr ""
|
795 |
|
796 |
# @ gallery
|
797 |
-
#: includes/class-gllr-settings.php:
|
798 |
#, fuzzy
|
799 |
msgid "Image ID"
|
800 |
msgstr "Imagem"
|
801 |
|
802 |
-
#: includes/class-gllr-settings.php:
|
803 |
msgid "Name"
|
804 |
msgstr ""
|
805 |
|
806 |
-
|
807 |
-
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
808 |
-
msgid "Random"
|
809 |
-
msgstr "Aleatório"
|
810 |
-
|
811 |
-
#: includes/class-gllr-settings.php:516
|
812 |
msgid ""
|
813 |
"Select images sorting order in your gallery. By default, you can sort images "
|
814 |
"manually in the images tab."
|
815 |
msgstr ""
|
816 |
|
817 |
# @ gallery
|
818 |
-
#: includes/class-gllr-settings.php:
|
819 |
#, fuzzy
|
820 |
msgid "Arrange Images by"
|
821 |
msgstr "Ordenar imagens por"
|
822 |
|
823 |
-
#: includes/class-gllr-settings.php:
|
824 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/class-gllr-settings.php:
|
828 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
829 |
msgstr ""
|
830 |
|
831 |
# @ gallery
|
832 |
-
#: includes/class-gllr-settings.php:
|
833 |
#, fuzzy
|
834 |
msgid "Back Link"
|
835 |
msgstr "URL do link Voltar"
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid ""
|
839 |
"Enable to show a back link in a single gallery page which navigate to a "
|
840 |
"previous page."
|
841 |
msgstr ""
|
842 |
|
843 |
# @ gallery
|
844 |
-
#: includes/class-gllr-settings.php:
|
845 |
#, fuzzy
|
846 |
msgid "Back Link URL"
|
847 |
msgstr "URL do link Voltar"
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
851 |
msgstr ""
|
852 |
|
853 |
# @ gallery
|
854 |
-
#: includes/class-gllr-settings.php:
|
855 |
#, fuzzy
|
856 |
msgid "Back Link Label"
|
857 |
msgstr "URL do link Voltar"
|
858 |
|
859 |
# @ gallery
|
860 |
-
#: includes/class-gllr-settings.php:
|
861 |
#, fuzzy
|
862 |
msgid "Back Link with Shortcode"
|
863 |
msgstr "Exibir o link Voltar no shortcode"
|
864 |
|
865 |
# @ gallery
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
#, fuzzy
|
868 |
msgid "Enable to display a back link on a page where shortcode is used."
|
869 |
msgstr "Exibir o link Voltar no shortcode"
|
870 |
|
871 |
# @ gallery
|
872 |
-
#: includes/class-gllr-settings.php:
|
873 |
#, fuzzy
|
874 |
msgid "Cover Settings"
|
875 |
msgstr "Configurações da Galeria"
|
876 |
|
877 |
# @ gallery
|
878 |
-
#: includes/class-gllr-settings.php:
|
879 |
#, fuzzy
|
880 |
msgid "Galleries Page"
|
881 |
msgstr "Galerias"
|
882 |
|
883 |
-
#: includes/class-gllr-settings.php:
|
884 |
msgid "Base page where all existing galleries will be displayed."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-gllr-settings.php:
|
888 |
msgid "Albums Displaying"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
msgid "Column"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
msgid "Rows"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:
|
900 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/class-gllr-settings.php:
|
904 |
msgid "Column Alignment"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: includes/class-gllr-settings.php:
|
908 |
msgid "Left"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: includes/class-gllr-settings.php:
|
912 |
msgid "Right"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: includes/class-gllr-settings.php:
|
916 |
msgid "Center"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/class-gllr-settings.php:
|
920 |
msgid "Select the column alignment."
|
921 |
msgstr ""
|
922 |
|
923 |
# @ gallery
|
924 |
-
#: includes/class-gllr-settings.php:
|
925 |
#, fuzzy
|
926 |
msgid "Cover Image Size"
|
927 |
msgstr "Tamanho da imagem"
|
928 |
|
929 |
-
#: includes/class-gllr-settings.php:
|
930 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: includes/class-gllr-settings.php:
|
934 |
msgid "Custom Cover Image Size"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/class-gllr-settings.php:
|
938 |
msgid "Crop Cover Images"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: includes/class-gllr-settings.php:
|
942 |
msgid ""
|
943 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
944 |
"Disable to resize images automatically using their aspect ratio."
|
945 |
msgstr ""
|
946 |
|
947 |
# @ gallery
|
948 |
-
#: includes/class-gllr-settings.php:
|
949 |
#, fuzzy
|
950 |
msgid "Cover Image Border"
|
951 |
msgstr "Imagens com borda"
|
952 |
|
953 |
-
#: includes/class-gllr-settings.php:
|
954 |
msgid ""
|
955 |
"Enable cover images border using the styles defined for Image Border Size "
|
956 |
"and Color."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid "Cover Image Border Size"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
#, php-format
|
965 |
msgid "Cover image border width (default is %s)"
|
966 |
msgstr ""
|
967 |
|
968 |
# @ gallery
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
#, fuzzy
|
971 |
msgid "Cover Image Border Color"
|
972 |
msgstr "Escolha a cor da borda"
|
973 |
|
974 |
# @ gallery
|
975 |
-
#: includes/class-gllr-settings.php:
|
976 |
#, fuzzy
|
977 |
msgid "Sort Albums by"
|
978 |
msgstr "Ordenar imagens por"
|
979 |
|
980 |
-
|
981 |
-
#: includes/class-gllr-settings.php:678
|
982 |
-
#, fuzzy
|
983 |
-
msgid "Gallery ID"
|
984 |
-
msgstr "Galeria"
|
985 |
-
|
986 |
-
#: includes/class-gllr-settings.php:681
|
987 |
-
msgid "Last modified date"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: includes/class-gllr-settings.php:682
|
991 |
-
msgid "Comment count"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: includes/class-gllr-settings.php:683
|
995 |
-
msgid "\"Order\" field on the gallery edit page"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: includes/class-gllr-settings.php:687
|
999 |
msgid "Select galleries sorting order in your galleries page."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/class-gllr-settings.php:
|
1003 |
msgid "Arrange Albums by"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
# @ gallery
|
1007 |
-
#: includes/class-gllr-settings.php:
|
1008 |
#, fuzzy
|
1009 |
msgid "Read More Link Label"
|
1010 |
msgstr "Texto do link Leia Mais"
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
msgid "Instant Lightbox"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid ""
|
1018 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1019 |
"URL instead of going to a single gallery page."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
# @ gallery
|
1023 |
-
#: includes/class-gllr-settings.php:
|
1024 |
#, fuzzy
|
1025 |
msgid "Lightbox Settings"
|
1026 |
msgstr "Fundo do Lightbox"
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgid "Enable Lightbox"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: includes/class-gllr-settings.php:
|
1037 |
msgid ""
|
1038 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1039 |
"will display the original, full size image."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
msgid "Overlay Color"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/class-gllr-settings.php:
|
1047 |
msgid "Overlay Opacity"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/class-gllr-settings.php:
|
1051 |
#, php-format
|
1052 |
msgid ""
|
1053 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -1055,132 +1112,132 @@ msgid ""
|
|
1055 |
msgstr ""
|
1056 |
|
1057 |
# @ gallery
|
1058 |
-
#: includes/class-gllr-settings.php:
|
1059 |
#, fuzzy
|
1060 |
msgid "Slideshow"
|
1061 |
msgstr "Iniciar Apresentação de Slides"
|
1062 |
|
1063 |
-
#: includes/class-gllr-settings.php:
|
1064 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
# @ gallery
|
1068 |
-
#: includes/class-gllr-settings.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "Slideshow Duration"
|
1071 |
msgstr "Intervalo de tempo entre cada Slide"
|
1072 |
|
1073 |
-
#: includes/class-gllr-settings.php:
|
1074 |
msgid "ms"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/class-gllr-settings.php:
|
1078 |
msgid "Slideshow interval duration between two images."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
# @ gallery
|
1082 |
-
#: includes/class-gllr-settings.php:
|
1083 |
#, fuzzy
|
1084 |
msgid "Lightbox Helpers"
|
1085 |
msgstr "Fundo do Lightbox"
|
1086 |
|
1087 |
-
#: includes/class-gllr-settings.php:
|
1088 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
# @ gallery
|
1092 |
-
#: includes/class-gllr-settings.php:
|
1093 |
#, fuzzy
|
1094 |
msgid "Lightbox Thumbnails"
|
1095 |
msgstr "Tamanho da imagem de capa do álbum"
|
1096 |
|
1097 |
-
#: includes/class-gllr-settings.php:
|
1098 |
msgid "Enable to use a lightbox helper navigation between images."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/class-gllr-settings.php:
|
1102 |
msgid "Lightbox Thumbnails Position"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/class-gllr-settings.php:
|
1106 |
msgid "Top"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
# @ gallery
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
#, fuzzy
|
1112 |
msgid "Lightbox Button Label"
|
1113 |
msgstr "Fundo do Lightbox"
|
1114 |
|
1115 |
# @ gallery
|
1116 |
-
#: includes/class-gllr-settings.php:
|
1117 |
#, fuzzy
|
1118 |
msgid "Read More"
|
1119 |
msgstr "Texto do link Leia Mais"
|
1120 |
|
1121 |
-
#: includes/class-gllr-settings.php:
|
1122 |
msgid "Download Button"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: includes/class-gllr-settings.php:
|
1126 |
msgid "Enable to display download button."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/class-gllr-settings.php:
|
1130 |
msgid "Single Lightbox"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/class-gllr-settings.php:
|
1134 |
msgid ""
|
1135 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1136 |
"page."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: includes/class-gllr-settings.php:
|
1140 |
msgid "Social Sharing Buttons Settings"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/class-gllr-settings.php:
|
1144 |
msgid "Social Buttons"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: includes/class-gllr-settings.php:
|
1148 |
msgid "Enable social sharing buttons in the lightbox."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/class-gllr-settings.php:
|
1152 |
msgid "Social Networks"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
# @ gallery
|
1156 |
-
#: includes/class-gllr-settings.php:
|
1157 |
#, fuzzy
|
1158 |
msgid "Counter"
|
1159 |
msgstr "Intervalo de tempo entre cada Slide"
|
1160 |
|
1161 |
-
#: includes/class-gllr-settings.php:
|
1162 |
msgid ""
|
1163 |
"Enable to show likes counter for each social button (not available for "
|
1164 |
"Google +1)."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/class-gllr-settings.php:
|
1168 |
msgid "Demo Data"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/class-gllr-settings.php:
|
1172 |
msgid ""
|
1173 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1174 |
"page with a list of all galleries."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
# @ gallery
|
1178 |
-
#: includes/class-gllr-settings.php:
|
1179 |
#, fuzzy
|
1180 |
msgid "Gallery Post Type"
|
1181 |
msgstr "Shortcode da Galeria"
|
1182 |
|
1183 |
-
#: includes/class-gllr-settings.php:
|
1184 |
msgid ""
|
1185 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1186 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1189,28 +1246,24 @@ msgid ""
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
# @ gallery
|
1192 |
-
#: includes/class-gllr-settings.php:
|
1193 |
#, fuzzy
|
1194 |
msgid "Gallery Slug"
|
1195 |
msgstr "Galeria"
|
1196 |
|
1197 |
-
#: includes/class-gllr-settings.php:
|
1198 |
msgid "Enter the unique gallery slug."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: includes/class-gllr-settings.php:
|
1202 |
msgid "Activate Now"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/class-gllr-settings.php:
|
1206 |
-
msgid "Install Now"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: includes/class-gllr-settings.php:965
|
1210 |
msgid "Enable to include galleries to your website search."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/class-gllr-settings.php:
|
1214 |
#, php-format
|
1215 |
msgid "%s is required."
|
1216 |
msgstr ""
|
@@ -1553,11 +1606,6 @@ msgstr ""
|
|
1553 |
#~ msgid "Select a background color"
|
1554 |
#~ msgstr "Selecionar uma cor de fundo"
|
1555 |
|
1556 |
-
# @ gallery
|
1557 |
-
#, fuzzy
|
1558 |
-
#~ msgid "Sort galleries by"
|
1559 |
-
#~ msgstr "Ordenar imagens por"
|
1560 |
-
|
1561 |
# @ gallery
|
1562 |
#~ msgid "Width (in px)"
|
1563 |
#~ msgstr "Largura (em px)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | Dionizio Bonfim Bach <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 2.0.6\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ gallery
|
22 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Configurações da Galeria"
|
25 |
|
26 |
# @ gallery
|
27 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
28 |
#, fuzzy
|
29 |
msgid "Global Settings"
|
30 |
msgstr "Configurações da Galeria"
|
31 |
|
32 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
33 |
msgid "Upgrade to Pro"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: gallery-plugin.php:340
|
37 |
msgid "Return to all albums"
|
38 |
msgstr ""
|
39 |
|
40 |
# @ gallery
|
41 |
+
#: gallery-plugin.php:354
|
42 |
msgid "See images »"
|
43 |
msgstr "Ver imagens »"
|
44 |
|
45 |
# @ gallery
|
46 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
47 |
msgid "Galleries"
|
48 |
msgstr "Galerias"
|
49 |
|
50 |
# @ gallery
|
51 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
52 |
msgid "Gallery"
|
53 |
msgstr "Galeria"
|
54 |
|
55 |
# @ gallery
|
56 |
+
#: gallery-plugin.php:444
|
57 |
msgid "Add New Gallery"
|
58 |
msgstr "Adicionar Nova Galeria"
|
59 |
|
60 |
# @ gallery
|
61 |
+
#: gallery-plugin.php:445
|
62 |
msgid "Edit Gallery"
|
63 |
msgstr "Editar Galeria"
|
64 |
|
65 |
# @ gallery
|
66 |
+
#: gallery-plugin.php:446
|
67 |
msgid "New Gallery"
|
68 |
msgstr "Nova Galeria"
|
69 |
|
70 |
# @ gallery
|
71 |
+
#: gallery-plugin.php:447
|
72 |
msgid "View Gallery"
|
73 |
msgstr "Ver Galeria"
|
74 |
|
75 |
# @ gallery
|
76 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
77 |
#, fuzzy
|
78 |
msgid "Search Galleries"
|
79 |
msgstr "Galerias"
|
80 |
|
81 |
# @ gallery
|
82 |
+
#: gallery-plugin.php:449
|
83 |
msgid "No Gallery found"
|
84 |
msgstr "Nenhuma Galeria foi encontrada"
|
85 |
|
86 |
# @ gallery
|
87 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
88 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
89 |
+
#: gallery-plugin.php:3332
|
90 |
#, fuzzy
|
91 |
msgid "Gallery Categories"
|
92 |
msgstr "Tamanho da imagem da galeria"
|
93 |
|
94 |
# @ gallery
|
95 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
96 |
#, fuzzy
|
97 |
msgid "Gallery Category"
|
98 |
msgstr "Tamanho da imagem da galeria"
|
99 |
|
100 |
+
#: gallery-plugin.php:473
|
101 |
msgid "Add Gallery Category"
|
102 |
msgstr ""
|
103 |
|
104 |
# @ gallery
|
105 |
+
#: gallery-plugin.php:474
|
106 |
#, fuzzy
|
107 |
msgid "Add New Gallery Category"
|
108 |
msgstr "Adicionar Nova Galeria"
|
109 |
|
110 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
111 |
msgid "Edit Gallery Category"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: gallery-plugin.php:477
|
115 |
msgid "New Gallery Category"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
119 |
msgid "View Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: gallery-plugin.php:480
|
123 |
msgid "Find Gallery Category"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: gallery-plugin.php:481
|
127 |
msgid "No Gallery Categories found"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: gallery-plugin.php:482
|
131 |
msgid "No Gallery Categories found in Trash"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: gallery-plugin.php:483
|
135 |
msgid "Parent Gallery Category"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: gallery-plugin.php:484
|
139 |
msgid "Gallery Categories list navigation"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: gallery-plugin.php:485
|
143 |
msgid "Gallery Categories list"
|
144 |
msgstr ""
|
145 |
|
146 |
# @ gallery
|
147 |
+
#: gallery-plugin.php:533
|
148 |
msgid "Gallery Shortcode"
|
149 |
msgstr "Shortcode da Galeria"
|
150 |
|
151 |
+
#: gallery-plugin.php:542
|
152 |
msgid ""
|
153 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
154 |
"widgets by using the following shortcode:"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: gallery-plugin.php:546
|
158 |
msgid ""
|
159 |
"Add a gallery cover including featured image, description, and a link to "
|
160 |
"your single gallery using the following shortcode:"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: gallery-plugin.php:659
|
164 |
msgid "Note"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: gallery-plugin.php:659
|
168 |
#, php-format
|
169 |
msgid ""
|
170 |
"When deleting a category, the galleries that belong to this category will "
|
172 |
msgstr ""
|
173 |
|
174 |
# @ gallery
|
175 |
+
#: gallery-plugin.php:670
|
176 |
+
#, fuzzy
|
177 |
+
msgid "Sort Galleries in Category by"
|
178 |
+
msgstr "Ordenar imagens por"
|
179 |
+
|
180 |
+
# @ gallery
|
181 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
182 |
+
#: includes/class-gllr-settings.php:711
|
183 |
+
#, fuzzy
|
184 |
+
msgid "Gallery ID"
|
185 |
+
msgstr "Galeria"
|
186 |
+
|
187 |
+
# @ gallery
|
188 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
189 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
190 |
+
#: includes/class-gllr-settings.php:712
|
191 |
+
msgid "Title"
|
192 |
+
msgstr "Título"
|
193 |
+
|
194 |
+
# @ gallery
|
195 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
196 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
197 |
+
msgid "Date"
|
198 |
+
msgstr "Data"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
201 |
+
#: includes/class-gllr-settings.php:714
|
202 |
+
msgid "Last modified date"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
206 |
+
#: includes/class-gllr-settings.php:715
|
207 |
+
msgid "Comment count"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
211 |
+
#: includes/class-gllr-settings.php:716
|
212 |
+
msgid "\"Order\" field on the gallery edit page"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
# @ gallery
|
216 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
217 |
+
#: includes/class-gllr-settings.php:717
|
218 |
+
msgid "Author"
|
219 |
+
msgstr "Autor"
|
220 |
+
|
221 |
+
# @ gallery
|
222 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
223 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
224 |
+
msgid "Random"
|
225 |
+
msgstr "Aleatório"
|
226 |
+
|
227 |
+
# @ bestwebsoft
|
228 |
+
# @ gallery
|
229 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
230 |
+
#, fuzzy
|
231 |
+
#| msgid "Settings"
|
232 |
+
msgid "Plugin Settings"
|
233 |
+
msgstr "Configurações"
|
234 |
+
|
235 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
236 |
+
msgid "Select galleries sorting order in your category."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
# @ gallery
|
240 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
241 |
#, fuzzy
|
242 |
msgid "Shortcode"
|
243 |
msgstr "Shortcode da Galeria"
|
244 |
|
245 |
+
#: gallery-plugin.php:749
|
246 |
msgid "All Gallery Categories"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: gallery-plugin.php:827
|
250 |
msgid "You can't delete default gallery category."
|
251 |
msgstr ""
|
252 |
|
253 |
# @ gallery
|
254 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
255 |
msgid "Sorry, nothing found."
|
256 |
msgstr "Desculpe, nada foi encontrado."
|
257 |
|
258 |
+
#: gallery-plugin.php:1717
|
259 |
msgid "Featured Image"
|
260 |
msgstr ""
|
261 |
|
262 |
# @ gallery
|
263 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
#, fuzzy
|
265 |
msgid "Images"
|
266 |
msgstr "Ver imagens »"
|
267 |
|
268 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
#, php-format
|
270 |
msgid "%s Settings"
|
271 |
msgstr ""
|
272 |
|
273 |
# @ bestwebsoft
|
274 |
# @ gallery
|
275 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
276 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
277 |
msgid "Settings"
|
278 |
msgstr "Configurações"
|
279 |
|
280 |
# @ gallery
|
281 |
+
#: gallery-plugin.php:1838
|
282 |
msgid "FAQ"
|
283 |
msgstr "FAQ"
|
284 |
|
285 |
# @ gallery
|
286 |
+
#: gallery-plugin.php:1839
|
287 |
msgid "Support"
|
288 |
msgstr "Suporte"
|
289 |
|
290 |
+
#: gallery-plugin.php:1878
|
291 |
#, fuzzy
|
292 |
msgid "Updating images..."
|
293 |
msgstr "Actualizando imagenes"
|
294 |
|
295 |
# @ gallery
|
296 |
+
#: gallery-plugin.php:1879
|
297 |
#, fuzzy
|
298 |
msgid "No images found."
|
299 |
msgstr "Nenhuma Galeria foi encontrada"
|
300 |
|
301 |
+
#: gallery-plugin.php:1880
|
302 |
msgid "All images were updated."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: gallery-plugin.php:1881
|
306 |
#, fuzzy
|
307 |
msgid "Error."
|
308 |
msgstr "Error"
|
309 |
|
310 |
+
#: gallery-plugin.php:1893
|
311 |
msgid ""
|
312 |
"You are about to remove these items from this gallery.\n"
|
313 |
" 'Cancel' to stop, 'OK' to delete."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: gallery-plugin.php:1894
|
317 |
msgid ""
|
318 |
"You are about to remove this image from the gallery.\n"
|
319 |
" 'Cancel' to stop, 'OK' to delete."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: gallery-plugin.php:1895
|
323 |
msgid ""
|
324 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
325 |
"switching?"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: gallery-plugin.php:1896
|
329 |
msgid "Insert Media"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: gallery-plugin.php:1897
|
333 |
msgid "Insert"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: gallery-plugin.php:1898
|
337 |
+
msgid "Gallery has been successfully added!"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
# @ gallery
|
341 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
342 |
#, fuzzy
|
343 |
msgid "Image size not defined"
|
344 |
msgstr "Tanaño de imagen no definida"
|
345 |
|
346 |
+
#: gallery-plugin.php:2455
|
347 |
msgid ""
|
348 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
349 |
"reload images manually."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
353 |
#, fuzzy
|
354 |
msgid "Invalid path"
|
355 |
msgstr "Ruta incorrecta."
|
356 |
|
357 |
+
#: gallery-plugin.php:2607
|
358 |
msgid "List View"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: gallery-plugin.php:2608
|
362 |
msgid "Grid View"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: gallery-plugin.php:2665
|
366 |
msgid "Filter"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: gallery-plugin.php:2669
|
370 |
msgid "Empty Trash"
|
371 |
msgstr ""
|
372 |
|
373 |
# @ gallery
|
374 |
+
#: gallery-plugin.php:2692
|
375 |
#, fuzzy
|
376 |
msgid "No images found"
|
377 |
msgstr "Nenhuma Galeria foi encontrada"
|
378 |
|
379 |
+
#: gallery-plugin.php:2745
|
380 |
msgid "Select bulk action"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: gallery-plugin.php:2747
|
384 |
msgid "Bulk Actions"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: gallery-plugin.php:2757
|
388 |
msgid "Apply"
|
389 |
msgstr ""
|
390 |
|
391 |
# @ gallery
|
392 |
+
#: gallery-plugin.php:2764
|
393 |
#, fuzzy
|
394 |
msgid "Delete from Gallery"
|
395 |
msgstr "Nova Galeria"
|
396 |
|
397 |
+
#: gallery-plugin.php:2773
|
398 |
msgid "Bulk Select"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: gallery-plugin.php:2774
|
402 |
msgid "Cancel Selection"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: gallery-plugin.php:2775
|
406 |
msgid "Delete Selected"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: gallery-plugin.php:2786
|
410 |
msgid "File"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
414 |
msgid "Dimensions"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
418 |
msgid "Alt Text"
|
419 |
msgstr ""
|
420 |
|
421 |
# @ gallery
|
422 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
423 |
msgid "URL"
|
424 |
msgstr "URL"
|
425 |
|
426 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
427 |
msgid ""
|
428 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
429 |
"to open a full size image."
|
430 |
msgstr ""
|
431 |
|
432 |
# @ gallery
|
433 |
+
#: gallery-plugin.php:2872
|
434 |
#, fuzzy
|
435 |
msgid "Remove Image from Gallery"
|
436 |
msgstr "Nova Galeria"
|
437 |
|
438 |
# @ gallery
|
439 |
+
#: gallery-plugin.php:2875
|
440 |
#, fuzzy
|
441 |
msgid "Edit Image Info"
|
442 |
msgstr "ID do anexo"
|
443 |
|
444 |
+
#: gallery-plugin.php:2876
|
445 |
msgid "Deselect"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: gallery-plugin.php:2888
|
449 |
msgid "File name"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: gallery-plugin.php:2889
|
453 |
msgid "File type"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: gallery-plugin.php:2914
|
457 |
msgid "Description"
|
458 |
msgstr ""
|
459 |
|
460 |
# @ gallery
|
461 |
+
#: gallery-plugin.php:2920
|
462 |
#, fuzzy
|
463 |
msgid "Lightbox Button URL"
|
464 |
msgstr "Fundo do Lightbox"
|
465 |
|
466 |
+
#: gallery-plugin.php:2927
|
467 |
msgid "New Tab"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: gallery-plugin.php:2929
|
471 |
msgid "Enable to open URLs above in a new tab."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: gallery-plugin.php:2934
|
475 |
msgid "Go Pro"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:2940
|
479 |
msgid "Edit more details"
|
480 |
msgstr ""
|
481 |
|
482 |
# @ gallery
|
483 |
+
#: gallery-plugin.php:2942
|
484 |
#, fuzzy
|
485 |
msgid "Remove from Gallery"
|
486 |
msgstr "Nova Galeria"
|
487 |
|
488 |
+
#: gallery-plugin.php:2978
|
489 |
#, php-format
|
490 |
msgid "Select %s"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:2991
|
494 |
#, php-format
|
495 |
msgid "Edit “%s”"
|
496 |
msgstr ""
|
497 |
|
498 |
# @ gallery
|
499 |
+
#: gallery-plugin.php:2999
|
500 |
#, fuzzy
|
501 |
msgid "Edit Attachment Info"
|
502 |
msgstr "ID do anexo"
|
503 |
|
504 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
505 |
msgid "Edit"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
509 |
msgid "Trash"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
513 |
msgid "Delete Permanently"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
517 |
#, php-format
|
518 |
msgid "View “%s”"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
522 |
msgid "View"
|
523 |
msgstr ""
|
524 |
|
525 |
# @ gallery
|
526 |
+
#: gallery-plugin.php:3048
|
527 |
#, fuzzy
|
528 |
msgid "Attach"
|
529 |
msgstr "ID do anexo"
|
530 |
|
531 |
+
#: gallery-plugin.php:3056
|
532 |
msgid "Restore"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:3086
|
536 |
msgid "A list or dropdown of Gallery categories."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:3131
|
540 |
msgid "Select Gallery Category"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: gallery-plugin.php:3189
|
544 |
#, fuzzy
|
545 |
msgid "Title:"
|
546 |
msgstr "Título"
|
547 |
|
548 |
+
#: gallery-plugin.php:3192
|
549 |
msgid "Display as dropdown"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: gallery-plugin.php:3194
|
553 |
msgid "Show gallery counts"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: gallery-plugin.php:3196
|
557 |
msgid "Show hierarchy"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: gallery-plugin.php:3312
|
561 |
msgid "Warning"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: gallery-plugin.php:3312
|
565 |
msgid "You can add only images to the gallery"
|
566 |
msgstr ""
|
567 |
|
|
|
|
|
|
|
|
|
568 |
# @ gallery
|
569 |
+
#: gallery-plugin.php:3367
|
570 |
#, fuzzy
|
571 |
msgid "no title"
|
572 |
msgstr "Título"
|
573 |
|
574 |
# @ gallery
|
575 |
+
#: gallery-plugin.php:3377
|
576 |
#, fuzzy
|
577 |
msgid ""
|
578 |
"Display an album image with the description and the link to a single gallery "
|
582 |
"para a Página da Galeria use assim"
|
583 |
|
584 |
# @ gallery
|
585 |
+
#: gallery-plugin.php:3381
|
586 |
#, fuzzy
|
587 |
msgid "Sorry, no gallery found."
|
588 |
msgstr "Desculpe, nada foi encontrado."
|
615 |
msgid "License Key"
|
616 |
msgstr ""
|
617 |
|
|
|
|
|
|
|
|
|
618 |
# @ gallery
|
619 |
+
#: includes/class-gllr-settings.php:244
|
620 |
#, fuzzy
|
621 |
msgid "Settings saved"
|
622 |
msgstr "As configurações estão salvas"
|
623 |
|
624 |
# @ gallery
|
625 |
+
#: includes/class-gllr-settings.php:256
|
626 |
#, fuzzy
|
627 |
msgid "Please, enable JavaScript in Your browser."
|
628 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
629 |
|
630 |
+
#: includes/class-gllr-settings.php:260
|
631 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
# @ gallery
|
635 |
+
#: includes/class-gllr-settings.php:261
|
636 |
#, fuzzy
|
637 |
msgid "Update Images"
|
638 |
msgstr "ordenar imagens"
|
639 |
|
640 |
# @ gallery
|
641 |
+
#: includes/class-gllr-settings.php:276
|
642 |
#, fuzzy
|
643 |
msgid "Gallery Images"
|
644 |
msgstr "Tamanho da imagem da galeria"
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:281
|
647 |
msgid "Images adding requires JavaScript."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: includes/class-gllr-settings.php:284
|
651 |
msgid "Add Media"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:293
|
655 |
msgid "The grid view for the Gallery images requires JavaScript."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: includes/class-gllr-settings.php:293
|
659 |
msgid "Switch to the list view"
|
660 |
msgstr ""
|
661 |
|
662 |
# @ gallery
|
663 |
+
#: includes/class-gllr-settings.php:320
|
664 |
+
#, fuzzy
|
665 |
+
msgid "Add Gallery to the Slider"
|
666 |
+
msgstr "Adicionar Nova Galeria"
|
667 |
+
|
668 |
+
#: includes/class-gllr-settings.php:332
|
669 |
+
msgid "Activate"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
673 |
+
msgid "Install Now"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: includes/class-gllr-settings.php:337
|
677 |
+
msgid "Add"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: includes/class-gllr-settings.php:340
|
681 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
# @ gallery
|
685 |
+
#: includes/class-gllr-settings.php:351
|
686 |
#, fuzzy
|
687 |
msgid "Single Gallery Settings"
|
688 |
msgstr "Configurações da Galeria"
|
689 |
|
690 |
+
#: includes/class-gllr-settings.php:353
|
691 |
#, php-format
|
692 |
msgid "Enable to configure single gallery settings and disable %s."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
696 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
697 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
698 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
699 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
700 |
msgid "Close"
|
701 |
msgstr ""
|
702 |
|
703 |
# @ gallery
|
704 |
+
#: includes/class-gllr-settings.php:369
|
705 |
#, fuzzy
|
706 |
msgid "Gallery Layout"
|
707 |
msgstr "Nenhuma Galeria foi encontrada"
|
708 |
|
709 |
+
#: includes/class-gllr-settings.php:374
|
710 |
msgid "Grid"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/class-gllr-settings.php:380
|
714 |
msgid "Masonry"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-gllr-settings.php:393
|
718 |
msgid "Number of Columns"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-gllr-settings.php:396
|
722 |
#, php-format
|
723 |
msgid "Number of gallery columns (default is %s)."
|
724 |
msgstr ""
|
725 |
|
726 |
# @ gallery
|
727 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
728 |
#, fuzzy
|
729 |
msgid "Image Size"
|
730 |
msgstr "Tamanho da imagem"
|
731 |
|
732 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
733 |
msgid "Custom"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/class-gllr-settings.php:408
|
737 |
msgid ""
|
738 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
739 |
msgstr ""
|
740 |
|
741 |
# @ gallery
|
742 |
+
#: includes/class-gllr-settings.php:412
|
743 |
#, fuzzy
|
744 |
msgid "Custom Image Size"
|
745 |
msgstr "Tamanho da imagem"
|
746 |
|
747 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
748 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
749 |
msgid "px"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/class-gllr-settings.php:415
|
753 |
msgid ""
|
754 |
"Adjust these values based on the number of columns in your gallery. This "
|
755 |
"won't effect the full size of your images in the lightbox."
|
756 |
msgstr ""
|
757 |
|
758 |
# @ gallery
|
759 |
+
#: includes/class-gllr-settings.php:426
|
760 |
#, fuzzy
|
761 |
msgid "Crop Images"
|
762 |
msgstr "Ordenar imagens:"
|
763 |
|
764 |
+
#: includes/class-gllr-settings.php:428
|
765 |
msgid ""
|
766 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
767 |
"to resize images automatically using their aspect ratio."
|
768 |
msgstr ""
|
769 |
|
770 |
# @ gallery
|
771 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
772 |
#, fuzzy
|
773 |
msgid "Crop Position"
|
774 |
msgstr "Posição de recorte"
|
775 |
|
776 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
777 |
msgid "Select crop position base (by default: center)."
|
778 |
msgstr ""
|
779 |
|
780 |
# @ gallery
|
781 |
+
#: includes/class-gllr-settings.php:457
|
782 |
#, fuzzy
|
783 |
msgid "Image Title"
|
784 |
msgstr "Tamanho da imagem"
|
785 |
|
786 |
+
#: includes/class-gllr-settings.php:459
|
787 |
msgid "Enable to display image title along with the gallery image."
|
788 |
msgstr ""
|
789 |
|
790 |
# @ gallery
|
791 |
+
#: includes/class-gllr-settings.php:470
|
792 |
#, fuzzy
|
793 |
msgid "Image Title Position"
|
794 |
msgstr "Tamanho da imagem"
|
795 |
|
796 |
# @ gallery
|
797 |
+
#: includes/class-gllr-settings.php:475
|
798 |
#, fuzzy
|
799 |
msgid "Under image"
|
800 |
msgstr "ordenar imagens"
|
801 |
|
802 |
+
#: includes/class-gllr-settings.php:481
|
803 |
msgid "On mouse hover"
|
804 |
msgstr ""
|
805 |
|
806 |
# @ gallery
|
807 |
+
#: includes/class-gllr-settings.php:494
|
808 |
#, fuzzy
|
809 |
msgid "Image Border"
|
810 |
msgstr "Imagens com borda"
|
811 |
|
812 |
+
#: includes/class-gllr-settings.php:496
|
813 |
msgid ""
|
814 |
"Enable images border using the styles defined for Image Border Size and "
|
815 |
"Color options."
|
816 |
msgstr ""
|
817 |
|
818 |
# @ gallery
|
819 |
+
#: includes/class-gllr-settings.php:500
|
820 |
#, fuzzy
|
821 |
msgid "Image Border Size"
|
822 |
msgstr "Tamanho da imagem"
|
823 |
|
824 |
+
#: includes/class-gllr-settings.php:503
|
825 |
#, php-format
|
826 |
msgid "Gallery image border width (default is %s)"
|
827 |
msgstr ""
|
828 |
|
829 |
# @ gallery
|
830 |
+
#: includes/class-gllr-settings.php:507
|
831 |
#, fuzzy
|
832 |
msgid "Image Border Color"
|
833 |
msgstr "Escolha a cor da borda"
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:520
|
836 |
msgid "Pagination"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/class-gllr-settings.php:523
|
840 |
msgid ""
|
841 |
"Enable pagination for images to limit number of images displayed on a single "
|
842 |
"gallery page."
|
843 |
msgstr ""
|
844 |
|
845 |
# @ gallery
|
846 |
+
#: includes/class-gllr-settings.php:527
|
847 |
#, fuzzy
|
848 |
msgid "Number of Images"
|
849 |
msgstr "Número de imagens por linha"
|
850 |
|
851 |
+
#: includes/class-gllr-settings.php:530
|
852 |
#, php-format
|
853 |
msgid "Number of images displayed per page (default is %d)."
|
854 |
msgstr ""
|
855 |
|
856 |
# @ gallery
|
857 |
+
#: includes/class-gllr-settings.php:540
|
858 |
#, fuzzy
|
859 |
msgid "Sort Images by"
|
860 |
msgstr "Ordenar imagens por"
|
861 |
|
862 |
+
#: includes/class-gllr-settings.php:543
|
863 |
msgid "Manually (default)"
|
864 |
msgstr ""
|
865 |
|
866 |
# @ gallery
|
867 |
+
#: includes/class-gllr-settings.php:544
|
868 |
#, fuzzy
|
869 |
msgid "Image ID"
|
870 |
msgstr "Imagem"
|
871 |
|
872 |
+
#: includes/class-gllr-settings.php:545
|
873 |
msgid "Name"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
|
|
877 |
msgid ""
|
878 |
"Select images sorting order in your gallery. By default, you can sort images "
|
879 |
"manually in the images tab."
|
880 |
msgstr ""
|
881 |
|
882 |
# @ gallery
|
883 |
+
#: includes/class-gllr-settings.php:553
|
884 |
#, fuzzy
|
885 |
msgid "Arrange Images by"
|
886 |
msgstr "Ordenar imagens por"
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
889 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
893 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
894 |
msgstr ""
|
895 |
|
896 |
# @ gallery
|
897 |
+
#: includes/class-gllr-settings.php:562
|
898 |
#, fuzzy
|
899 |
msgid "Back Link"
|
900 |
msgstr "URL do link Voltar"
|
901 |
|
902 |
+
#: includes/class-gllr-settings.php:564
|
903 |
msgid ""
|
904 |
"Enable to show a back link in a single gallery page which navigate to a "
|
905 |
"previous page."
|
906 |
msgstr ""
|
907 |
|
908 |
# @ gallery
|
909 |
+
#: includes/class-gllr-settings.php:568
|
910 |
#, fuzzy
|
911 |
msgid "Back Link URL"
|
912 |
msgstr "URL do link Voltar"
|
913 |
|
914 |
+
#: includes/class-gllr-settings.php:571
|
915 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
916 |
msgstr ""
|
917 |
|
918 |
# @ gallery
|
919 |
+
#: includes/class-gllr-settings.php:575
|
920 |
#, fuzzy
|
921 |
msgid "Back Link Label"
|
922 |
msgstr "URL do link Voltar"
|
923 |
|
924 |
# @ gallery
|
925 |
+
#: includes/class-gllr-settings.php:581
|
926 |
#, fuzzy
|
927 |
msgid "Back Link with Shortcode"
|
928 |
msgstr "Exibir o link Voltar no shortcode"
|
929 |
|
930 |
# @ gallery
|
931 |
+
#: includes/class-gllr-settings.php:584
|
932 |
#, fuzzy
|
933 |
msgid "Enable to display a back link on a page where shortcode is used."
|
934 |
msgstr "Exibir o link Voltar no shortcode"
|
935 |
|
936 |
# @ gallery
|
937 |
+
#: includes/class-gllr-settings.php:595
|
938 |
#, fuzzy
|
939 |
msgid "Cover Settings"
|
940 |
msgstr "Configurações da Galeria"
|
941 |
|
942 |
# @ gallery
|
943 |
+
#: includes/class-gllr-settings.php:600
|
944 |
#, fuzzy
|
945 |
msgid "Galleries Page"
|
946 |
msgstr "Galerias"
|
947 |
|
948 |
+
#: includes/class-gllr-settings.php:608
|
949 |
msgid "Base page where all existing galleries will be displayed."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/class-gllr-settings.php:612
|
953 |
msgid "Albums Displaying"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/class-gllr-settings.php:615
|
957 |
msgid "Column"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/class-gllr-settings.php:616
|
961 |
msgid "Rows"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/class-gllr-settings.php:618
|
965 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/class-gllr-settings.php:622
|
969 |
msgid "Column Alignment"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/class-gllr-settings.php:625
|
973 |
msgid "Left"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:626
|
977 |
msgid "Right"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/class-gllr-settings.php:627
|
981 |
msgid "Center"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:629
|
985 |
msgid "Select the column alignment."
|
986 |
msgstr ""
|
987 |
|
988 |
# @ gallery
|
989 |
+
#: includes/class-gllr-settings.php:633
|
990 |
#, fuzzy
|
991 |
msgid "Cover Image Size"
|
992 |
msgstr "Tamanho da imagem"
|
993 |
|
994 |
+
#: includes/class-gllr-settings.php:641
|
995 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/class-gllr-settings.php:645
|
999 |
msgid "Custom Cover Image Size"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/class-gllr-settings.php:658
|
1003 |
msgid "Crop Cover Images"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/class-gllr-settings.php:660
|
1007 |
msgid ""
|
1008 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
1009 |
"Disable to resize images automatically using their aspect ratio."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
# @ gallery
|
1013 |
+
#: includes/class-gllr-settings.php:689
|
1014 |
#, fuzzy
|
1015 |
msgid "Cover Image Border"
|
1016 |
msgstr "Imagens com borda"
|
1017 |
|
1018 |
+
#: includes/class-gllr-settings.php:691
|
1019 |
msgid ""
|
1020 |
"Enable cover images border using the styles defined for Image Border Size "
|
1021 |
"and Color."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/class-gllr-settings.php:695
|
1025 |
msgid "Cover Image Border Size"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:698
|
1029 |
#, php-format
|
1030 |
msgid "Cover image border width (default is %s)"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
# @ gallery
|
1034 |
+
#: includes/class-gllr-settings.php:702
|
1035 |
#, fuzzy
|
1036 |
msgid "Cover Image Border Color"
|
1037 |
msgstr "Escolha a cor da borda"
|
1038 |
|
1039 |
# @ gallery
|
1040 |
+
#: includes/class-gllr-settings.php:708
|
1041 |
#, fuzzy
|
1042 |
msgid "Sort Albums by"
|
1043 |
msgstr "Ordenar imagens por"
|
1044 |
|
1045 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1046 |
msgid "Select galleries sorting order in your galleries page."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/class-gllr-settings.php:724
|
1050 |
msgid "Arrange Albums by"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
# @ gallery
|
1054 |
+
#: includes/class-gllr-settings.php:733
|
1055 |
#, fuzzy
|
1056 |
msgid "Read More Link Label"
|
1057 |
msgstr "Texto do link Leia Mais"
|
1058 |
|
1059 |
+
#: includes/class-gllr-settings.php:746
|
1060 |
msgid "Instant Lightbox"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/class-gllr-settings.php:749
|
1064 |
msgid ""
|
1065 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1066 |
"URL instead of going to a single gallery page."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
# @ gallery
|
1070 |
+
#: includes/class-gllr-settings.php:763
|
1071 |
#, fuzzy
|
1072 |
msgid "Lightbox Settings"
|
1073 |
msgstr "Fundo do Lightbox"
|
1074 |
|
1075 |
+
#: includes/class-gllr-settings.php:768
|
1076 |
+
msgid "Unclickable Thumbnail Images"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/class-gllr-settings.php:771
|
1080 |
+
msgid ""
|
1081 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1082 |
+
"URLs. This option also disables Lightbox."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: includes/class-gllr-settings.php:775
|
1086 |
msgid "Enable Lightbox"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:778
|
1090 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/class-gllr-settings.php:796
|
1094 |
msgid ""
|
1095 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1096 |
"will display the original, full size image."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/class-gllr-settings.php:800
|
1100 |
msgid "Overlay Color"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/class-gllr-settings.php:806
|
1104 |
msgid "Overlay Opacity"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:809
|
1108 |
#, php-format
|
1109 |
msgid ""
|
1110 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1112 |
msgstr ""
|
1113 |
|
1114 |
# @ gallery
|
1115 |
+
#: includes/class-gllr-settings.php:819
|
1116 |
#, fuzzy
|
1117 |
msgid "Slideshow"
|
1118 |
msgstr "Iniciar Apresentação de Slides"
|
1119 |
|
1120 |
+
#: includes/class-gllr-settings.php:821
|
1121 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
# @ gallery
|
1125 |
+
#: includes/class-gllr-settings.php:825
|
1126 |
#, fuzzy
|
1127 |
msgid "Slideshow Duration"
|
1128 |
msgstr "Intervalo de tempo entre cada Slide"
|
1129 |
|
1130 |
+
#: includes/class-gllr-settings.php:827
|
1131 |
msgid "ms"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/class-gllr-settings.php:828
|
1135 |
msgid "Slideshow interval duration between two images."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
# @ gallery
|
1139 |
+
#: includes/class-gllr-settings.php:839
|
1140 |
#, fuzzy
|
1141 |
msgid "Lightbox Helpers"
|
1142 |
msgstr "Fundo do Lightbox"
|
1143 |
|
1144 |
+
#: includes/class-gllr-settings.php:841
|
1145 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
# @ gallery
|
1149 |
+
#: includes/class-gllr-settings.php:845
|
1150 |
#, fuzzy
|
1151 |
msgid "Lightbox Thumbnails"
|
1152 |
msgstr "Tamanho da imagem de capa do álbum"
|
1153 |
|
1154 |
+
#: includes/class-gllr-settings.php:847
|
1155 |
msgid "Enable to use a lightbox helper navigation between images."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/class-gllr-settings.php:851
|
1159 |
msgid "Lightbox Thumbnails Position"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/class-gllr-settings.php:854
|
1163 |
msgid "Top"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
# @ gallery
|
1167 |
+
#: includes/class-gllr-settings.php:859
|
1168 |
#, fuzzy
|
1169 |
msgid "Lightbox Button Label"
|
1170 |
msgstr "Fundo do Lightbox"
|
1171 |
|
1172 |
# @ gallery
|
1173 |
+
#: includes/class-gllr-settings.php:861
|
1174 |
#, fuzzy
|
1175 |
msgid "Read More"
|
1176 |
msgstr "Texto do link Leia Mais"
|
1177 |
|
1178 |
+
#: includes/class-gllr-settings.php:871
|
1179 |
msgid "Download Button"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/class-gllr-settings.php:873
|
1183 |
msgid "Enable to display download button."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/class-gllr-settings.php:877
|
1187 |
msgid "Single Lightbox"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/class-gllr-settings.php:879
|
1191 |
msgid ""
|
1192 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1193 |
"page."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/class-gllr-settings.php:889
|
1197 |
msgid "Social Sharing Buttons Settings"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/class-gllr-settings.php:898
|
1201 |
msgid "Social Buttons"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/class-gllr-settings.php:900
|
1205 |
msgid "Enable social sharing buttons in the lightbox."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: includes/class-gllr-settings.php:904
|
1209 |
msgid "Social Networks"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
# @ gallery
|
1213 |
+
#: includes/class-gllr-settings.php:915
|
1214 |
#, fuzzy
|
1215 |
msgid "Counter"
|
1216 |
msgstr "Intervalo de tempo entre cada Slide"
|
1217 |
|
1218 |
+
#: includes/class-gllr-settings.php:918
|
1219 |
msgid ""
|
1220 |
"Enable to show likes counter for each social button (not available for "
|
1221 |
"Google +1)."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/class-gllr-settings.php:933
|
1225 |
msgid "Demo Data"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/class-gllr-settings.php:935
|
1229 |
msgid ""
|
1230 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1231 |
"page with a list of all galleries."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
# @ gallery
|
1235 |
+
#: includes/class-gllr-settings.php:973
|
1236 |
#, fuzzy
|
1237 |
msgid "Gallery Post Type"
|
1238 |
msgstr "Shortcode da Galeria"
|
1239 |
|
1240 |
+
#: includes/class-gllr-settings.php:975
|
1241 |
msgid ""
|
1242 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1243 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1246 |
msgstr ""
|
1247 |
|
1248 |
# @ gallery
|
1249 |
+
#: includes/class-gllr-settings.php:987
|
1250 |
#, fuzzy
|
1251 |
msgid "Gallery Slug"
|
1252 |
msgstr "Galeria"
|
1253 |
|
1254 |
+
#: includes/class-gllr-settings.php:991
|
1255 |
msgid "Enter the unique gallery slug."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/class-gllr-settings.php:1007
|
1259 |
msgid "Activate Now"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1263 |
msgid "Enable to include galleries to your website search."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: includes/class-gllr-settings.php:1025
|
1267 |
#, php-format
|
1268 |
msgid "%s is required."
|
1269 |
msgstr ""
|
1606 |
#~ msgid "Select a background color"
|
1607 |
#~ msgstr "Selecionar uma cor de fundo"
|
1608 |
|
|
|
|
|
|
|
|
|
|
|
1609 |
# @ gallery
|
1610 |
#~ msgid "Width (in px)"
|
1611 |
#~ msgstr "Largura (em px)"
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -13,120 +13,120 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Настройки Галерей"
|
22 |
|
23 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Общие настройки"
|
26 |
|
27 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Обновить до Pro"
|
30 |
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Вернуться ко всем альбомам"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "See images »"
|
37 |
msgstr "Смотреть фотографии »"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереи"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Добавить новую галерею"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редактировать галерею"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Новая галерея"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Просмотреть галерею"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Искать галереи"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Ни одной галереи не найдено"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
-
#: gallery-plugin.php:
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категории галерей"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категория галерей"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Добавить категорию галерей"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Добавить новую категорию галерей"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редактировать категорию галерей"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Новая категория галерей"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Просмотреть категорию галерей"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Найти категорию галерей"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Ни одной категории галерей не найдено"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "Ни одной категории галерей в корзине не найдено"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Родительская категория галереи"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навигация списка категории галерей"
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорий галерей"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереи"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid ""
|
131 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
132 |
"widgets by using the following shortcode:"
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
"Добавляйте одну галерею с изображениями в ваши записи, страницы, "
|
135 |
"пользовательские типы записей или виджеты с помощью следующего шорткода:"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
msgid ""
|
139 |
"Add a gallery cover including featured image, description, and a link to "
|
140 |
"your single gallery using the following shortcode:"
|
@@ -142,11 +142,11 @@ msgstr ""
|
|
142 |
"Добавляйте альбом галереи, включая изображение альбома, описание и ссылку на "
|
143 |
"полную галерею с помощью следующего шорткода:"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Note"
|
147 |
msgstr "Примечание"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"When deleting a category, the galleries that belong to this category will "
|
@@ -155,119 +155,118 @@ msgstr ""
|
|
155 |
"Удаление категории не приводит к удалению галерей из этой категории. Вместо "
|
156 |
"этого галереи из удалённой категории будут перемещены в категорию %s."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Sort Galleries in Category by"
|
160 |
msgstr "Сортировать галереи в категории по"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
-
#: includes/class-gllr-settings.php:
|
164 |
msgid "Gallery ID"
|
165 |
msgstr "ID галереи"
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
-
#: gallery-plugin.php:
|
169 |
-
#: includes/class-gllr-settings.php:
|
170 |
msgid "Title"
|
171 |
msgstr "Название"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
-
#: includes/class-gllr-settings.php:
|
175 |
msgid "Date"
|
176 |
msgstr "Дата"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: includes/class-gllr-settings.php:
|
180 |
msgid "Last modified date"
|
181 |
msgstr "Дата последнего изменения"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: includes/class-gllr-settings.php:
|
185 |
msgid "Comment count"
|
186 |
msgstr "Количество комментариев"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
#: includes/class-gllr-settings.php:
|
190 |
msgid "\"Order\" field on the gallery edit page"
|
191 |
msgstr "Поле \"Порядок\" в редакторе галереи"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: includes/class-gllr-settings.php:
|
195 |
msgid "Author"
|
196 |
msgstr "Автор"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: includes/class-gllr-settings.php:
|
200 |
msgid "Random"
|
201 |
msgstr "Произвольно"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "Plugin Settings"
|
205 |
msgstr "Настройки плагина"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Select galleries sorting order in your category."
|
209 |
msgstr "Выберите порядок сортировки галерей в вашей категории."
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Все категории галерей"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Вы не можете удалить стандартную категорию галереи."
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
-
#: template/gallery-single-template.php:95
|
225 |
msgid "Sorry, nothing found."
|
226 |
msgstr "Извините, ничего не найдено."
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Featured Image"
|
230 |
msgstr "Изображение альбома"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Images"
|
234 |
msgstr "Изображения"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, php-format
|
238 |
msgid "%s Settings"
|
239 |
msgstr "Настройки %s"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
243 |
msgid "Settings"
|
244 |
msgstr "Настройки"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "FAQ"
|
248 |
msgstr "FAQ"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Support"
|
252 |
msgstr "Поддержка"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "Updating images..."
|
256 |
msgstr "Обновление изображений..."
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "No images found."
|
260 |
msgstr "Изображения не найдены."
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid "All images were updated."
|
264 |
msgstr "Все изображения обновлены."
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Error."
|
268 |
msgstr "Ошибка."
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid ""
|
272 |
"You are about to remove these items from this gallery.\n"
|
273 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -275,7 +274,7 @@ msgstr ""
|
|
275 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
276 |
" «Отмена» — оставить, «ОК» — удалить."
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid ""
|
280 |
"You are about to remove this image from the gallery.\n"
|
281 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -283,7 +282,7 @@ msgstr ""
|
|
283 |
"Вы собираетесь удалить это изображение из этой галереи.\n"
|
284 |
" «Отмена» — оставить, «ОК» — удалить."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
289 |
"switching?"
|
@@ -291,19 +290,23 @@ msgstr ""
|
|
291 |
"При переключении на другой режим все несохраненные данные будут потеряны. "
|
292 |
"Сохранить данные перед переключением?"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Insert Media"
|
296 |
msgstr "Вставить медиафайл"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Insert"
|
300 |
msgstr "Вставить"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
303 |
msgid "Image size not defined"
|
304 |
msgstr "Невозможно определить размер изображения"
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid ""
|
308 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
309 |
"reload images manually."
|
@@ -311,75 +314,75 @@ msgstr ""
|
|
311 |
"Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
|
312 |
"WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Invalid path"
|
316 |
msgstr "Путь к изображению некорректный"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "List View"
|
320 |
msgstr "В виде списка"
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Grid View"
|
324 |
msgstr "В виде сетки"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Filter"
|
328 |
msgstr "Фильтр"
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Empty Trash"
|
332 |
msgstr "Очистить корзину"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "No images found"
|
336 |
msgstr "Ни одного изображения не найдено"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Select bulk action"
|
340 |
msgstr "Выберите массовое действие"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Bulk Actions"
|
344 |
msgstr "Действия"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Apply"
|
348 |
msgstr "Применить"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Delete from Gallery"
|
352 |
msgstr "Удалить из галереи"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Bulk Select"
|
356 |
msgstr "Выбор"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "Cancel Selection"
|
360 |
msgstr "Отменить выбор"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Delete Selected"
|
364 |
msgstr "Удалить выбранное"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "File"
|
368 |
msgstr "Файл"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Dimensions"
|
372 |
msgstr "Размеры"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Alt Text"
|
376 |
msgstr "Альтернативный текст"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
msgid "URL"
|
380 |
msgstr "Ссылка"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid ""
|
384 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
385 |
"to open a full size image."
|
@@ -388,134 +391,134 @@ msgstr ""
|
|
388 |
"страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
|
389 |
"изображение."
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "Remove Image from Gallery"
|
393 |
msgstr "Удалить изображение из галереи"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
msgid "Edit Image Info"
|
397 |
msgstr "Изменить информацию изображения"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
msgid "Deselect"
|
401 |
msgstr "Отменить выбор"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "File name"
|
405 |
msgstr "Название файла"
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "File type"
|
409 |
msgstr "Тип файла"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "Description"
|
413 |
msgstr "Описание"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "Lightbox Button URL"
|
417 |
msgstr "Ссылка для кнопки в лайтбоксе"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "New Tab"
|
421 |
msgstr "Новая вкладка"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "Enable to open URLs above in a new tab."
|
425 |
msgstr "Включите, чтобы открыть указанный выше URL в новой вкладке."
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Go Pro"
|
429 |
msgstr "Обновить до Pro"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Edit more details"
|
433 |
msgstr "Изменить детали"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "Remove from Gallery"
|
437 |
msgstr "Удалить из галереи"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
#, php-format
|
441 |
msgid "Select %s"
|
442 |
msgstr "Выбрать %s"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
#, php-format
|
446 |
msgid "Edit “%s”"
|
447 |
msgstr "Изменить “%s”"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "Edit Attachment Info"
|
451 |
msgstr "Изменить информацию изображения"
|
452 |
|
453 |
-
#: gallery-plugin.php:
|
454 |
msgid "Edit"
|
455 |
msgstr "Изменить"
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "Trash"
|
459 |
msgstr "Удалить"
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "Delete Permanently"
|
463 |
msgstr "Удалить навсегда"
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
#, php-format
|
467 |
msgid "View “%s”"
|
468 |
msgstr "Просмотр “%s”"
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
msgid "View"
|
472 |
msgstr "Просмотр"
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
msgid "Attach"
|
476 |
msgstr "Прикрепить"
|
477 |
|
478 |
-
#: gallery-plugin.php:
|
479 |
msgid "Restore"
|
480 |
msgstr "Восстановить"
|
481 |
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid "A list or dropdown of Gallery categories."
|
484 |
msgstr "Список или выпадающее меню категорий галерей."
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
msgid "Select Gallery Category"
|
488 |
msgstr "Выберите категорию галерей"
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
msgid "Title:"
|
492 |
msgstr "Заголовок:"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
msgid "Display as dropdown"
|
496 |
msgstr "В виде выпадающего меню"
|
497 |
|
498 |
-
#: gallery-plugin.php:
|
499 |
msgid "Show gallery counts"
|
500 |
msgstr "Показать количество галерей"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "Show hierarchy"
|
504 |
msgstr "Показать иерархию"
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "Warning"
|
508 |
msgstr "Внимание"
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
msgid "You can add only images to the gallery"
|
512 |
msgstr "Вы можете добавить только изображения в галерею"
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
msgid "no title"
|
516 |
msgstr "без названия"
|
517 |
|
518 |
-
#: gallery-plugin.php:
|
519 |
msgid ""
|
520 |
"Display an album image with the description and the link to a single gallery "
|
521 |
"page"
|
@@ -523,7 +526,7 @@ msgstr ""
|
|
523 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
524 |
"галереи"
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid "Sorry, no gallery found."
|
528 |
msgstr "Извините, галерей не найдено."
|
529 |
|
@@ -555,107 +558,129 @@ msgstr "Импорт / Экспорт"
|
|
555 |
msgid "License Key"
|
556 |
msgstr "Лицензионный ключ"
|
557 |
|
558 |
-
#: includes/class-gllr-settings.php:
|
559 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
560 |
-
msgstr ""
|
561 |
-
"Пользовательский размер изображения был изменен. Вам необходимо обновить "
|
562 |
-
"изображения галерей."
|
563 |
-
|
564 |
-
#: includes/class-gllr-settings.php:247
|
565 |
msgid "Settings saved"
|
566 |
msgstr "Настройки сохранены"
|
567 |
|
568 |
-
#: includes/class-gllr-settings.php:
|
569 |
msgid "Please, enable JavaScript in Your browser."
|
570 |
msgstr "Пожалуйста, включите JavaScript в вашем браузере."
|
571 |
|
572 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
msgid "Update Images"
|
574 |
msgstr "Обновить изображения"
|
575 |
|
576 |
-
#: includes/class-gllr-settings.php:
|
577 |
msgid "Gallery Images"
|
578 |
msgstr "Изображения галереи"
|
579 |
|
580 |
-
#: includes/class-gllr-settings.php:
|
581 |
msgid "Images adding requires JavaScript."
|
582 |
msgstr "Добавление изображений требует наличия JavaScript."
|
583 |
|
584 |
-
#: includes/class-gllr-settings.php:
|
585 |
msgid "Add Media"
|
586 |
msgstr "Добавить медиафайл"
|
587 |
|
588 |
-
#: includes/class-gllr-settings.php:
|
589 |
msgid "The grid view for the Gallery images requires JavaScript."
|
590 |
msgstr "Просмотр галереи в виде сетки требует наличия JavaScript."
|
591 |
|
592 |
-
#: includes/class-gllr-settings.php:
|
593 |
msgid "Switch to the list view"
|
594 |
msgstr "Переключиться на список"
|
595 |
|
596 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
msgid "Single Gallery Settings"
|
598 |
msgstr "Настройки галереи"
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
#, php-format
|
602 |
msgid "Enable to configure single gallery settings and disable %s."
|
603 |
msgstr "Включите, чтобы настроить параметры этой галереи и отключить %s."
|
604 |
|
605 |
-
#: includes/class-gllr-settings.php:
|
606 |
-
#: includes/class-gllr-settings.php:
|
607 |
-
#: includes/class-gllr-settings.php:
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
-
#: includes/class-gllr-settings.php:
|
610 |
msgid "Close"
|
611 |
msgstr "Закрыть"
|
612 |
|
613 |
-
#: includes/class-gllr-settings.php:
|
614 |
msgid "Gallery Layout"
|
615 |
msgstr "Макет галереи"
|
616 |
|
617 |
-
#: includes/class-gllr-settings.php:
|
618 |
msgid "Grid"
|
619 |
msgstr "Сетка"
|
620 |
|
621 |
-
#: includes/class-gllr-settings.php:
|
622 |
msgid "Masonry"
|
623 |
msgstr "Masonry"
|
624 |
|
625 |
-
#: includes/class-gllr-settings.php:
|
626 |
msgid "Number of Columns"
|
627 |
msgstr "Количество колонок"
|
628 |
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
#, php-format
|
631 |
msgid "Number of gallery columns (default is %s)."
|
632 |
msgstr "Количество колонок галерей (по умолчанию - %s)."
|
633 |
|
634 |
-
#: includes/class-gllr-settings.php:
|
635 |
msgid "Image Size"
|
636 |
msgstr "Размер изображения"
|
637 |
|
638 |
-
#: includes/class-gllr-settings.php:
|
639 |
msgid "Custom"
|
640 |
msgstr "Пользовательский"
|
641 |
|
642 |
-
#: includes/class-gllr-settings.php:
|
643 |
msgid ""
|
644 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
645 |
msgstr ""
|
646 |
"Максимальный размер изображений галереи. \"Пользовательский\" использует "
|
647 |
"значения, указанные в поле Размеры изображения."
|
648 |
|
649 |
-
#: includes/class-gllr-settings.php:
|
650 |
msgid "Custom Image Size"
|
651 |
msgstr "Пользовательский размер изображения"
|
652 |
|
653 |
-
#: includes/class-gllr-settings.php:
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
msgid "px"
|
656 |
msgstr "пикс"
|
657 |
|
658 |
-
#: includes/class-gllr-settings.php:
|
659 |
msgid ""
|
660 |
"Adjust these values based on the number of columns in your gallery. This "
|
661 |
"won't effect the full size of your images in the lightbox."
|
@@ -663,11 +688,11 @@ msgstr ""
|
|
663 |
"Отрегулируйте эти значения на основе числа колонок в вашей галерее. Это не "
|
664 |
"влияет на размеры полного изображения в лайтбоксе."
|
665 |
|
666 |
-
#: includes/class-gllr-settings.php:
|
667 |
msgid "Crop Images"
|
668 |
msgstr "Обрезка изображений"
|
669 |
|
670 |
-
#: includes/class-gllr-settings.php:
|
671 |
msgid ""
|
672 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
673 |
"to resize images automatically using their aspect ratio."
|
@@ -676,41 +701,41 @@ msgstr ""
|
|
676 |
"пользовательского размера изображения. Отключите, чтобы изменить размер "
|
677 |
"изображения автоматически, используя их пропорции."
|
678 |
|
679 |
-
#: includes/class-gllr-settings.php:
|
680 |
msgid "Crop Position"
|
681 |
msgstr "Позиция обрезки"
|
682 |
|
683 |
-
#: includes/class-gllr-settings.php:
|
684 |
msgid "Select crop position base (by default: center)."
|
685 |
msgstr "Выберите позицию обрезки (по умолчанию: центр)."
|
686 |
|
687 |
-
#: includes/class-gllr-settings.php:
|
688 |
msgid "Image Title"
|
689 |
msgstr "Название изображения"
|
690 |
|
691 |
-
#: includes/class-gllr-settings.php:
|
692 |
msgid "Enable to display image title along with the gallery image."
|
693 |
msgstr ""
|
694 |
"Включите, чтобы отобразить название изображения вместе с изображением "
|
695 |
"галереи."
|
696 |
|
697 |
-
#: includes/class-gllr-settings.php:
|
698 |
msgid "Image Title Position"
|
699 |
msgstr "Расположение названия изображения"
|
700 |
|
701 |
-
#: includes/class-gllr-settings.php:
|
702 |
msgid "Under image"
|
703 |
msgstr "Под изображением"
|
704 |
|
705 |
-
#: includes/class-gllr-settings.php:
|
706 |
msgid "On mouse hover"
|
707 |
msgstr "По наведению мыши"
|
708 |
|
709 |
-
#: includes/class-gllr-settings.php:
|
710 |
msgid "Image Border"
|
711 |
msgstr "Рамка изображения"
|
712 |
|
713 |
-
#: includes/class-gllr-settings.php:
|
714 |
msgid ""
|
715 |
"Enable images border using the styles defined for Image Border Size and "
|
716 |
"Color options."
|
@@ -718,24 +743,24 @@ msgstr ""
|
|
718 |
"Включить рамку изображения с использованием стилей, указанных для Цвета и "
|
719 |
"Размера рамки."
|
720 |
|
721 |
-
#: includes/class-gllr-settings.php:
|
722 |
msgid "Image Border Size"
|
723 |
msgstr "Размер рамки изображения"
|
724 |
|
725 |
-
#: includes/class-gllr-settings.php:
|
726 |
#, php-format
|
727 |
msgid "Gallery image border width (default is %s)"
|
728 |
msgstr "Ширина рамки для изображений галереи (по умолчанию %s)"
|
729 |
|
730 |
-
#: includes/class-gllr-settings.php:
|
731 |
msgid "Image Border Color"
|
732 |
msgstr "Цвет рамки изображений"
|
733 |
|
734 |
-
#: includes/class-gllr-settings.php:
|
735 |
msgid "Pagination"
|
736 |
msgstr "Постраничная навигация"
|
737 |
|
738 |
-
#: includes/class-gllr-settings.php:
|
739 |
msgid ""
|
740 |
"Enable pagination for images to limit number of images displayed on a single "
|
741 |
"gallery page."
|
@@ -743,33 +768,33 @@ msgstr ""
|
|
743 |
"Включить постраничную навигацию для изображений, чтобы ограничить количество "
|
744 |
"изображений, отображаемых на одной странице галереи."
|
745 |
|
746 |
-
#: includes/class-gllr-settings.php:
|
747 |
msgid "Number of Images"
|
748 |
msgstr "Количество изображений"
|
749 |
|
750 |
-
#: includes/class-gllr-settings.php:
|
751 |
#, php-format
|
752 |
msgid "Number of images displayed per page (default is %d)."
|
753 |
msgstr ""
|
754 |
"Количество изображений, отображаемых на одной странице (по умолчанию %d)."
|
755 |
|
756 |
-
#: includes/class-gllr-settings.php:
|
757 |
msgid "Sort Images by"
|
758 |
msgstr "Cортировка изображений по"
|
759 |
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
msgid "Manually (default)"
|
762 |
msgstr "Вручную (по умолчанию)"
|
763 |
|
764 |
-
#: includes/class-gllr-settings.php:
|
765 |
msgid "Image ID"
|
766 |
msgstr "ID изображения"
|
767 |
|
768 |
-
#: includes/class-gllr-settings.php:
|
769 |
msgid "Name"
|
770 |
msgstr "Название"
|
771 |
|
772 |
-
#: includes/class-gllr-settings.php:
|
773 |
msgid ""
|
774 |
"Select images sorting order in your gallery. By default, you can sort images "
|
775 |
"manually in the images tab."
|
@@ -777,23 +802,23 @@ msgstr ""
|
|
777 |
"Выберите порядок сортировки изображений в вашей галерее. По умолчанию, это "
|
778 |
"ручная сортировка изображения на вкладке изображений."
|
779 |
|
780 |
-
#: includes/class-gllr-settings.php:
|
781 |
msgid "Arrange Images by"
|
782 |
msgstr "Сортировка изображений"
|
783 |
|
784 |
-
#: includes/class-gllr-settings.php:
|
785 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
786 |
msgstr "По возрастанию (например, 1, 2, 3; а, б, в)"
|
787 |
|
788 |
-
#: includes/class-gllr-settings.php:
|
789 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
790 |
msgstr "По убыванию (например, 3, 2, 1; в, б, а)"
|
791 |
|
792 |
-
#: includes/class-gllr-settings.php:
|
793 |
msgid "Back Link"
|
794 |
msgstr "Обратная ссылка"
|
795 |
|
796 |
-
#: includes/class-gllr-settings.php:
|
797 |
msgid ""
|
798 |
"Enable to show a back link in a single gallery page which navigate to a "
|
799 |
"previous page."
|
@@ -801,98 +826,98 @@ msgstr ""
|
|
801 |
"Включите, чтобы показать обратную ссылку на странице галереи, которая "
|
802 |
"перейдет к предыдущей странице."
|
803 |
|
804 |
-
#: includes/class-gllr-settings.php:
|
805 |
msgid "Back Link URL"
|
806 |
msgstr "URL обратной ссылки"
|
807 |
|
808 |
-
#: includes/class-gllr-settings.php:
|
809 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
810 |
msgstr ""
|
811 |
"Пользовательский URL для обратной ссылки. Оставьте пустым, чтобы "
|
812 |
"использовать страницу галерей."
|
813 |
|
814 |
-
#: includes/class-gllr-settings.php:
|
815 |
msgid "Back Link Label"
|
816 |
msgstr "Текст обратной ссылки"
|
817 |
|
818 |
-
#: includes/class-gllr-settings.php:
|
819 |
msgid "Back Link with Shortcode"
|
820 |
msgstr "Обратная ссылка шорткода"
|
821 |
|
822 |
-
#: includes/class-gllr-settings.php:
|
823 |
msgid "Enable to display a back link on a page where shortcode is used."
|
824 |
msgstr ""
|
825 |
"Включите, чтобы отображать обратную ссылку на страницу при использовании "
|
826 |
"шорткода."
|
827 |
|
828 |
-
#: includes/class-gllr-settings.php:
|
829 |
msgid "Cover Settings"
|
830 |
msgstr "Настройки альбома"
|
831 |
|
832 |
-
#: includes/class-gllr-settings.php:
|
833 |
msgid "Galleries Page"
|
834 |
msgstr "Страница галерей"
|
835 |
|
836 |
-
#: includes/class-gllr-settings.php:
|
837 |
msgid "Base page where all existing galleries will be displayed."
|
838 |
msgstr ""
|
839 |
"Базовая страница, на которой будут отображаться все существующие галереи."
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Albums Displaying"
|
843 |
msgstr "Отображение альбомов"
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Column"
|
847 |
msgstr "В колонку"
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Rows"
|
851 |
msgstr "В ряд"
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
855 |
msgstr "Выберите способ отображения галерей на Странице галерей."
|
856 |
|
857 |
-
#: includes/class-gllr-settings.php:
|
858 |
msgid "Column Alignment"
|
859 |
msgstr "Ориентация колонки"
|
860 |
|
861 |
-
#: includes/class-gllr-settings.php:
|
862 |
msgid "Left"
|
863 |
msgstr "Лево"
|
864 |
|
865 |
-
#: includes/class-gllr-settings.php:
|
866 |
msgid "Right"
|
867 |
msgstr "Право"
|
868 |
|
869 |
-
#: includes/class-gllr-settings.php:
|
870 |
msgid "Center"
|
871 |
msgstr "Центр"
|
872 |
|
873 |
-
#: includes/class-gllr-settings.php:
|
874 |
msgid "Select the column alignment."
|
875 |
msgstr "Выберите ориентацию колонки."
|
876 |
|
877 |
-
#: includes/class-gllr-settings.php:
|
878 |
msgid "Cover Image Size"
|
879 |
msgstr "Размер изображения альбома"
|
880 |
|
881 |
-
#: includes/class-gllr-settings.php:
|
882 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
883 |
msgstr ""
|
884 |
"Максимальный размер изображения альбома. Пользовательский использует "
|
885 |
"значения Размеров изображения."
|
886 |
|
887 |
-
#: includes/class-gllr-settings.php:
|
888 |
msgid "Custom Cover Image Size"
|
889 |
msgstr "Пользовательский размер изображения альбома"
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
msgid "Crop Cover Images"
|
893 |
msgstr "Обрезка изображения альбома"
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
msgid ""
|
897 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
898 |
"Disable to resize images automatically using their aspect ratio."
|
@@ -901,11 +926,11 @@ msgstr ""
|
|
901 |
"пользовательского размера изображения альбома. Отключите, чтобы изменить "
|
902 |
"размер изображения автоматически, используя их пропорции."
|
903 |
|
904 |
-
#: includes/class-gllr-settings.php:
|
905 |
msgid "Cover Image Border"
|
906 |
msgstr "Рамка для изображения альбома"
|
907 |
|
908 |
-
#: includes/class-gllr-settings.php:
|
909 |
msgid ""
|
910 |
"Enable cover images border using the styles defined for Image Border Size "
|
911 |
"and Color."
|
@@ -913,40 +938,40 @@ msgstr ""
|
|
913 |
"Включить рамку изображения альбома с использованием стилей, указанных для "
|
914 |
"Цвета и Размера рамки."
|
915 |
|
916 |
-
#: includes/class-gllr-settings.php:
|
917 |
msgid "Cover Image Border Size"
|
918 |
msgstr "Размер рамки изображения альбома"
|
919 |
|
920 |
-
#: includes/class-gllr-settings.php:
|
921 |
#, php-format
|
922 |
msgid "Cover image border width (default is %s)"
|
923 |
msgstr "Ширина рамки для изображения альбома (по умолчанию %s)"
|
924 |
|
925 |
-
#: includes/class-gllr-settings.php:
|
926 |
msgid "Cover Image Border Color"
|
927 |
msgstr "Цвет рамки для изображения альбома"
|
928 |
|
929 |
-
#: includes/class-gllr-settings.php:
|
930 |
msgid "Sort Albums by"
|
931 |
msgstr "Cортировка альбомов по"
|
932 |
|
933 |
-
#: includes/class-gllr-settings.php:
|
934 |
msgid "Select galleries sorting order in your galleries page."
|
935 |
msgstr "Выберите порядок сортировки галерей на странице галерей."
|
936 |
|
937 |
-
#: includes/class-gllr-settings.php:
|
938 |
msgid "Arrange Albums by"
|
939 |
msgstr "Сортировка альбомов по"
|
940 |
|
941 |
-
#: includes/class-gllr-settings.php:
|
942 |
msgid "Read More Link Label"
|
943 |
msgstr "Текст ссылки Узнать больше"
|
944 |
|
945 |
-
#: includes/class-gllr-settings.php:
|
946 |
msgid "Instant Lightbox"
|
947 |
msgstr "Мгновенный лайтбокс"
|
948 |
|
949 |
-
#: includes/class-gllr-settings.php:
|
950 |
msgid ""
|
951 |
"Enable to display all images in the lightbox after clicking cover image or "
|
952 |
"URL instead of going to a single gallery page."
|
@@ -954,15 +979,15 @@ msgstr ""
|
|
954 |
"Включите, чтобы отображать все изображения в лайтбоксе после клика на "
|
955 |
"изображение альбома или URL вместо перехода на отдельную страницу галереи."
|
956 |
|
957 |
-
#: includes/class-gllr-settings.php:
|
958 |
msgid "Lightbox Settings"
|
959 |
msgstr "Настройки лайтбокса"
|
960 |
|
961 |
-
#: includes/class-gllr-settings.php:
|
962 |
msgid "Unclickable Thumbnail Images"
|
963 |
msgstr "Некликабельные изображения"
|
964 |
|
965 |
-
#: includes/class-gllr-settings.php:
|
966 |
msgid ""
|
967 |
"Enable to make the images in a single gallery unclickable and hide their "
|
968 |
"URLs. This option also disables Lightbox."
|
@@ -970,15 +995,15 @@ msgstr ""
|
|
970 |
"Включите, чтобы сделать миниатюры изображений в галерее некликабельными, а "
|
971 |
"так же не отображать их ссылки. Эта опция так же отключает лайтбокс."
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
msgid "Enable Lightbox"
|
975 |
msgstr "Включить лайтбокс"
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
979 |
msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
|
980 |
|
981 |
-
#: includes/class-gllr-settings.php:
|
982 |
msgid ""
|
983 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
984 |
"will display the original, full size image."
|
@@ -986,15 +1011,15 @@ msgstr ""
|
|
986 |
"Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
|
987 |
"По умолчанию будет отображаться оригинал, полный размер."
|
988 |
|
989 |
-
#: includes/class-gllr-settings.php:
|
990 |
msgid "Overlay Color"
|
991 |
msgstr "Цвет подложки"
|
992 |
|
993 |
-
#: includes/class-gllr-settings.php:
|
994 |
msgid "Overlay Opacity"
|
995 |
msgstr "Прозрачность подложки"
|
996 |
|
997 |
-
#: includes/class-gllr-settings.php:
|
998 |
#, php-format
|
999 |
msgid ""
|
1000 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -1003,75 +1028,75 @@ msgstr ""
|
|
1003 |
"Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
|
1004 |
"прозрачность (по умолчанию %s, максимум %s)."
|
1005 |
|
1006 |
-
#: includes/class-gllr-settings.php:
|
1007 |
msgid "Slideshow"
|
1008 |
msgstr "Слайд-шоу"
|
1009 |
|
1010 |
-
#: includes/class-gllr-settings.php:
|
1011 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1012 |
msgstr ""
|
1013 |
"Включение автоматического запуска слайд-шоу при использовании лайтбокса."
|
1014 |
|
1015 |
-
#: includes/class-gllr-settings.php:
|
1016 |
msgid "Slideshow Duration"
|
1017 |
msgstr "Интервал времени"
|
1018 |
|
1019 |
-
#: includes/class-gllr-settings.php:
|
1020 |
msgid "ms"
|
1021 |
msgstr "мс"
|
1022 |
|
1023 |
-
#: includes/class-gllr-settings.php:
|
1024 |
msgid "Slideshow interval duration between two images."
|
1025 |
msgstr "Интервал переключения между двумя изображениями."
|
1026 |
|
1027 |
-
#: includes/class-gllr-settings.php:
|
1028 |
msgid "Lightbox Helpers"
|
1029 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
1030 |
|
1031 |
-
#: includes/class-gllr-settings.php:
|
1032 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1033 |
msgstr ""
|
1034 |
"Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
|
1035 |
|
1036 |
-
#: includes/class-gllr-settings.php:
|
1037 |
msgid "Lightbox Thumbnails"
|
1038 |
msgstr "Миниатюры в лайтбоксе"
|
1039 |
|
1040 |
-
#: includes/class-gllr-settings.php:
|
1041 |
msgid "Enable to use a lightbox helper navigation between images."
|
1042 |
msgstr ""
|
1043 |
"Разрешить использовать вспомогательные элементы лайтбокса для навигации "
|
1044 |
"между изображениями."
|
1045 |
|
1046 |
-
#: includes/class-gllr-settings.php:
|
1047 |
msgid "Lightbox Thumbnails Position"
|
1048 |
msgstr "Расположение миниатюр в лайтбоксе"
|
1049 |
|
1050 |
-
#: includes/class-gllr-settings.php:
|
1051 |
msgid "Top"
|
1052 |
msgstr "Верх"
|
1053 |
|
1054 |
-
#: includes/class-gllr-settings.php:
|
1055 |
msgid "Lightbox Button Label"
|
1056 |
msgstr "Текст кнопки в лайтбоксе"
|
1057 |
|
1058 |
-
#: includes/class-gllr-settings.php:
|
1059 |
msgid "Read More"
|
1060 |
msgstr "Подробнее"
|
1061 |
|
1062 |
-
#: includes/class-gllr-settings.php:
|
1063 |
msgid "Download Button"
|
1064 |
msgstr "Кнопка \"Скачать\""
|
1065 |
|
1066 |
-
#: includes/class-gllr-settings.php:
|
1067 |
msgid "Enable to display download button."
|
1068 |
msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
|
1069 |
|
1070 |
-
#: includes/class-gllr-settings.php:
|
1071 |
msgid "Single Lightbox"
|
1072 |
msgstr "Один лайтбокс"
|
1073 |
|
1074 |
-
#: includes/class-gllr-settings.php:
|
1075 |
msgid ""
|
1076 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1077 |
"page."
|
@@ -1079,27 +1104,27 @@ msgstr ""
|
|
1079 |
"Включите, чтобы использовать один лайтбокс для нескольких галерей, "
|
1080 |
"расположенных на одной странице."
|
1081 |
|
1082 |
-
#: includes/class-gllr-settings.php:
|
1083 |
msgid "Social Sharing Buttons Settings"
|
1084 |
msgstr "Настройки социальных кнопок"
|
1085 |
|
1086 |
-
#: includes/class-gllr-settings.php:
|
1087 |
msgid "Social Buttons"
|
1088 |
msgstr "Социальные кнопки"
|
1089 |
|
1090 |
-
#: includes/class-gllr-settings.php:
|
1091 |
msgid "Enable social sharing buttons in the lightbox."
|
1092 |
msgstr "Включите социальные кнопки в лайтбоксе."
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
msgid "Social Networks"
|
1096 |
msgstr "Социальные сети"
|
1097 |
|
1098 |
-
#: includes/class-gllr-settings.php:
|
1099 |
msgid "Counter"
|
1100 |
msgstr "Счетчик"
|
1101 |
|
1102 |
-
#: includes/class-gllr-settings.php:
|
1103 |
msgid ""
|
1104 |
"Enable to show likes counter for each social button (not available for "
|
1105 |
"Google +1)."
|
@@ -1107,11 +1132,11 @@ msgstr ""
|
|
1107 |
"Включите, чтобы показать счетчики для социальных кнопок (недоступно для "
|
1108 |
"Google +1)."
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
msgid "Demo Data"
|
1112 |
msgstr "Демо-данные"
|
1113 |
|
1114 |
-
#: includes/class-gllr-settings.php:
|
1115 |
msgid ""
|
1116 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1117 |
"page with a list of all galleries."
|
@@ -1119,11 +1144,11 @@ msgstr ""
|
|
1119 |
"Установите демо-данные, чтобы создать галереи с изображениями, запись с "
|
1120 |
"шорткодами и страницу со списком всех галерей."
|
1121 |
|
1122 |
-
#: includes/class-gllr-settings.php:
|
1123 |
msgid "Gallery Post Type"
|
1124 |
msgstr "Тип записи галереи"
|
1125 |
|
1126 |
-
#: includes/class-gllr-settings.php:
|
1127 |
msgid ""
|
1128 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1129 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1135,27 +1160,23 @@ msgstr ""
|
|
1135 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
1136 |
"используется тип записи \"gallery\"."
|
1137 |
|
1138 |
-
#: includes/class-gllr-settings.php:
|
1139 |
msgid "Gallery Slug"
|
1140 |
msgstr "Слаг галереи"
|
1141 |
|
1142 |
-
#: includes/class-gllr-settings.php:
|
1143 |
msgid "Enter the unique gallery slug."
|
1144 |
msgstr "Введите уникальный слаг галереи."
|
1145 |
|
1146 |
-
#: includes/class-gllr-settings.php:
|
1147 |
msgid "Activate Now"
|
1148 |
msgstr "Активировать сейчас"
|
1149 |
|
1150 |
-
#: includes/class-gllr-settings.php:
|
1151 |
-
msgid "Install Now"
|
1152 |
-
msgstr "Установить сейчас"
|
1153 |
-
|
1154 |
-
#: includes/class-gllr-settings.php:972
|
1155 |
msgid "Enable to include galleries to your website search."
|
1156 |
msgstr "Включить галерею в поиск на вашем сайте."
|
1157 |
|
1158 |
-
#: includes/class-gllr-settings.php:
|
1159 |
#, php-format
|
1160 |
msgid "%s is required."
|
1161 |
msgstr "Требуется %s."
|
@@ -1249,13 +1270,11 @@ msgstr ""
|
|
1249 |
msgid "Yes, install demo now"
|
1250 |
msgstr "Да, установить демо-данные сейчас"
|
1251 |
|
1252 |
-
|
1253 |
-
|
1254 |
-
msgstr "Скачать изображение в высоком разрешении"
|
1255 |
|
1256 |
-
|
1257 |
-
|
1258 |
-
msgstr "Изображение"
|
1259 |
|
1260 |
# это
|
1261 |
#~ msgid "Allow users to open images from the thumbnail"
|
@@ -1385,9 +1404,6 @@ msgstr "Изображение"
|
|
1385 |
#~ msgid "Learn more"
|
1386 |
#~ msgstr "Подробнее"
|
1387 |
|
1388 |
-
#~ msgid "Activate"
|
1389 |
-
#~ msgstr "Активировать"
|
1390 |
-
|
1391 |
#~ msgid "Add multiple gallery categories"
|
1392 |
#~ msgstr "Добавить несколько категорий галереи"
|
1393 |
|
@@ -1735,9 +1751,6 @@ msgstr "Изображение"
|
|
1735 |
#~ msgid "Full URL to custom page"
|
1736 |
#~ msgstr "Полная ссылка на пользовательскую страницу"
|
1737 |
|
1738 |
-
#~ msgid "Add gallery to the search"
|
1739 |
-
#~ msgstr "Добавить галерею в поиск"
|
1740 |
-
|
1741 |
#~ msgid "Using"
|
1742 |
#~ msgstr "Используя"
|
1743 |
|
@@ -1906,10 +1919,6 @@ msgstr "Изображение"
|
|
1906 |
#~ msgid "The Pro Trial license will expire on"
|
1907 |
#~ msgstr "Ваша пробная лицензия истечет"
|
1908 |
|
1909 |
-
#, fuzzy
|
1910 |
-
#~ msgid "Add New"
|
1911 |
-
#~ msgstr "Добавить новую галерею"
|
1912 |
-
|
1913 |
#, fuzzy
|
1914 |
#~ msgid "Add BWS shortcode"
|
1915 |
#~ msgstr "Шорткод"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:43+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:47+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Настройки Галерей"
|
22 |
|
23 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Общие настройки"
|
26 |
|
27 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Обновить до Pro"
|
30 |
|
31 |
+
#: gallery-plugin.php:340
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Вернуться ко всем альбомам"
|
34 |
|
35 |
+
#: gallery-plugin.php:354
|
36 |
msgid "See images »"
|
37 |
msgstr "Смотреть фотографии »"
|
38 |
|
39 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереи"
|
42 |
|
43 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:444
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Добавить новую галерею"
|
50 |
|
51 |
+
#: gallery-plugin.php:445
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редактировать галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:446
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Новая галерея"
|
58 |
|
59 |
+
#: gallery-plugin.php:447
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Просмотреть галерею"
|
62 |
|
63 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Искать галереи"
|
66 |
|
67 |
+
#: gallery-plugin.php:449
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Ни одной галереи не найдено"
|
70 |
|
71 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
72 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
73 |
+
#: gallery-plugin.php:3332
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категории галерей"
|
76 |
|
77 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категория галерей"
|
80 |
|
81 |
+
#: gallery-plugin.php:473
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Добавить категорию галерей"
|
84 |
|
85 |
+
#: gallery-plugin.php:474
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Добавить новую категорию галерей"
|
88 |
|
89 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редактировать категорию галерей"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Новая категория галерей"
|
96 |
|
97 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Просмотреть категорию галерей"
|
100 |
|
101 |
+
#: gallery-plugin.php:480
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Найти категорию галерей"
|
104 |
|
105 |
+
#: gallery-plugin.php:481
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Ни одной категории галерей не найдено"
|
108 |
|
109 |
+
#: gallery-plugin.php:482
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "Ни одной категории галерей в корзине не найдено"
|
112 |
|
113 |
+
#: gallery-plugin.php:483
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Родительская категория галереи"
|
116 |
|
117 |
+
#: gallery-plugin.php:484
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навигация списка категории галерей"
|
120 |
|
121 |
+
#: gallery-plugin.php:485
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорий галерей"
|
124 |
|
125 |
+
#: gallery-plugin.php:533
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереи"
|
128 |
|
129 |
+
#: gallery-plugin.php:542
|
130 |
msgid ""
|
131 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
132 |
"widgets by using the following shortcode:"
|
134 |
"Добавляйте одну галерею с изображениями в ваши записи, страницы, "
|
135 |
"пользовательские типы записей или виджеты с помощью следующего шорткода:"
|
136 |
|
137 |
+
#: gallery-plugin.php:546
|
138 |
msgid ""
|
139 |
"Add a gallery cover including featured image, description, and a link to "
|
140 |
"your single gallery using the following shortcode:"
|
142 |
"Добавляйте альбом галереи, включая изображение альбома, описание и ссылку на "
|
143 |
"полную галерею с помощью следующего шорткода:"
|
144 |
|
145 |
+
#: gallery-plugin.php:659
|
146 |
msgid "Note"
|
147 |
msgstr "Примечание"
|
148 |
|
149 |
+
#: gallery-plugin.php:659
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"Удаление категории не приводит к удалению галерей из этой категории. Вместо "
|
156 |
"этого галереи из удалённой категории будут перемещены в категорию %s."
|
157 |
|
158 |
+
#: gallery-plugin.php:670
|
159 |
msgid "Sort Galleries in Category by"
|
160 |
msgstr "Сортировать галереи в категории по"
|
161 |
|
162 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
163 |
+
#: includes/class-gllr-settings.php:711
|
164 |
msgid "Gallery ID"
|
165 |
msgstr "ID галереи"
|
166 |
|
167 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
168 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
169 |
+
#: includes/class-gllr-settings.php:712
|
170 |
msgid "Title"
|
171 |
msgstr "Название"
|
172 |
|
173 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
174 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
175 |
msgid "Date"
|
176 |
msgstr "Дата"
|
177 |
|
178 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
179 |
+
#: includes/class-gllr-settings.php:714
|
180 |
msgid "Last modified date"
|
181 |
msgstr "Дата последнего изменения"
|
182 |
|
183 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
184 |
+
#: includes/class-gllr-settings.php:715
|
185 |
msgid "Comment count"
|
186 |
msgstr "Количество комментариев"
|
187 |
|
188 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
189 |
+
#: includes/class-gllr-settings.php:716
|
190 |
msgid "\"Order\" field on the gallery edit page"
|
191 |
msgstr "Поле \"Порядок\" в редакторе галереи"
|
192 |
|
193 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
194 |
+
#: includes/class-gllr-settings.php:717
|
195 |
msgid "Author"
|
196 |
msgstr "Автор"
|
197 |
|
198 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
199 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
200 |
msgid "Random"
|
201 |
msgstr "Произвольно"
|
202 |
|
203 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
204 |
msgid "Plugin Settings"
|
205 |
msgstr "Настройки плагина"
|
206 |
|
207 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
208 |
msgid "Select galleries sorting order in your category."
|
209 |
msgstr "Выберите порядок сортировки галерей в вашей категории."
|
210 |
|
211 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
+
#: gallery-plugin.php:749
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Все категории галерей"
|
218 |
|
219 |
+
#: gallery-plugin.php:827
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Вы не можете удалить стандартную категорию галереи."
|
222 |
|
223 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
|
|
224 |
msgid "Sorry, nothing found."
|
225 |
msgstr "Извините, ничего не найдено."
|
226 |
|
227 |
+
#: gallery-plugin.php:1717
|
228 |
msgid "Featured Image"
|
229 |
msgstr "Изображение альбома"
|
230 |
|
231 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
232 |
msgid "Images"
|
233 |
msgstr "Изображения"
|
234 |
|
235 |
+
#: gallery-plugin.php:1810
|
236 |
#, php-format
|
237 |
msgid "%s Settings"
|
238 |
msgstr "Настройки %s"
|
239 |
|
240 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
241 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
242 |
msgid "Settings"
|
243 |
msgstr "Настройки"
|
244 |
|
245 |
+
#: gallery-plugin.php:1838
|
246 |
msgid "FAQ"
|
247 |
msgstr "FAQ"
|
248 |
|
249 |
+
#: gallery-plugin.php:1839
|
250 |
msgid "Support"
|
251 |
msgstr "Поддержка"
|
252 |
|
253 |
+
#: gallery-plugin.php:1878
|
254 |
msgid "Updating images..."
|
255 |
msgstr "Обновление изображений..."
|
256 |
|
257 |
+
#: gallery-plugin.php:1879
|
258 |
msgid "No images found."
|
259 |
msgstr "Изображения не найдены."
|
260 |
|
261 |
+
#: gallery-plugin.php:1880
|
262 |
msgid "All images were updated."
|
263 |
msgstr "Все изображения обновлены."
|
264 |
|
265 |
+
#: gallery-plugin.php:1881
|
266 |
msgid "Error."
|
267 |
msgstr "Ошибка."
|
268 |
|
269 |
+
#: gallery-plugin.php:1893
|
270 |
msgid ""
|
271 |
"You are about to remove these items from this gallery.\n"
|
272 |
" 'Cancel' to stop, 'OK' to delete."
|
274 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
275 |
" «Отмена» — оставить, «ОК» — удалить."
|
276 |
|
277 |
+
#: gallery-plugin.php:1894
|
278 |
msgid ""
|
279 |
"You are about to remove this image from the gallery.\n"
|
280 |
" 'Cancel' to stop, 'OK' to delete."
|
282 |
"Вы собираетесь удалить это изображение из этой галереи.\n"
|
283 |
" «Отмена» — оставить, «ОК» — удалить."
|
284 |
|
285 |
+
#: gallery-plugin.php:1895
|
286 |
msgid ""
|
287 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
288 |
"switching?"
|
290 |
"При переключении на другой режим все несохраненные данные будут потеряны. "
|
291 |
"Сохранить данные перед переключением?"
|
292 |
|
293 |
+
#: gallery-plugin.php:1896
|
294 |
msgid "Insert Media"
|
295 |
msgstr "Вставить медиафайл"
|
296 |
|
297 |
+
#: gallery-plugin.php:1897
|
298 |
msgid "Insert"
|
299 |
msgstr "Вставить"
|
300 |
|
301 |
+
#: gallery-plugin.php:1898
|
302 |
+
msgid "Gallery has been successfully added!"
|
303 |
+
msgstr "Галерея была успешно добавлена!"
|
304 |
+
|
305 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
306 |
msgid "Image size not defined"
|
307 |
msgstr "Невозможно определить размер изображения"
|
308 |
|
309 |
+
#: gallery-plugin.php:2455
|
310 |
msgid ""
|
311 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
312 |
"reload images manually."
|
314 |
"Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
|
315 |
"WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
|
316 |
|
317 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
318 |
msgid "Invalid path"
|
319 |
msgstr "Путь к изображению некорректный"
|
320 |
|
321 |
+
#: gallery-plugin.php:2607
|
322 |
msgid "List View"
|
323 |
msgstr "В виде списка"
|
324 |
|
325 |
+
#: gallery-plugin.php:2608
|
326 |
msgid "Grid View"
|
327 |
msgstr "В виде сетки"
|
328 |
|
329 |
+
#: gallery-plugin.php:2665
|
330 |
msgid "Filter"
|
331 |
msgstr "Фильтр"
|
332 |
|
333 |
+
#: gallery-plugin.php:2669
|
334 |
msgid "Empty Trash"
|
335 |
msgstr "Очистить корзину"
|
336 |
|
337 |
+
#: gallery-plugin.php:2692
|
338 |
msgid "No images found"
|
339 |
msgstr "Ни одного изображения не найдено"
|
340 |
|
341 |
+
#: gallery-plugin.php:2745
|
342 |
msgid "Select bulk action"
|
343 |
msgstr "Выберите массовое действие"
|
344 |
|
345 |
+
#: gallery-plugin.php:2747
|
346 |
msgid "Bulk Actions"
|
347 |
msgstr "Действия"
|
348 |
|
349 |
+
#: gallery-plugin.php:2757
|
350 |
msgid "Apply"
|
351 |
msgstr "Применить"
|
352 |
|
353 |
+
#: gallery-plugin.php:2764
|
354 |
msgid "Delete from Gallery"
|
355 |
msgstr "Удалить из галереи"
|
356 |
|
357 |
+
#: gallery-plugin.php:2773
|
358 |
msgid "Bulk Select"
|
359 |
msgstr "Выбор"
|
360 |
|
361 |
+
#: gallery-plugin.php:2774
|
362 |
msgid "Cancel Selection"
|
363 |
msgstr "Отменить выбор"
|
364 |
|
365 |
+
#: gallery-plugin.php:2775
|
366 |
msgid "Delete Selected"
|
367 |
msgstr "Удалить выбранное"
|
368 |
|
369 |
+
#: gallery-plugin.php:2786
|
370 |
msgid "File"
|
371 |
msgstr "Файл"
|
372 |
|
373 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
374 |
msgid "Dimensions"
|
375 |
msgstr "Размеры"
|
376 |
|
377 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
378 |
msgid "Alt Text"
|
379 |
msgstr "Альтернативный текст"
|
380 |
|
381 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
382 |
msgid "URL"
|
383 |
msgstr "Ссылка"
|
384 |
|
385 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
386 |
msgid ""
|
387 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
388 |
"to open a full size image."
|
391 |
"страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
|
392 |
"изображение."
|
393 |
|
394 |
+
#: gallery-plugin.php:2872
|
395 |
msgid "Remove Image from Gallery"
|
396 |
msgstr "Удалить изображение из галереи"
|
397 |
|
398 |
+
#: gallery-plugin.php:2875
|
399 |
msgid "Edit Image Info"
|
400 |
msgstr "Изменить информацию изображения"
|
401 |
|
402 |
+
#: gallery-plugin.php:2876
|
403 |
msgid "Deselect"
|
404 |
msgstr "Отменить выбор"
|
405 |
|
406 |
+
#: gallery-plugin.php:2888
|
407 |
msgid "File name"
|
408 |
msgstr "Название файла"
|
409 |
|
410 |
+
#: gallery-plugin.php:2889
|
411 |
msgid "File type"
|
412 |
msgstr "Тип файла"
|
413 |
|
414 |
+
#: gallery-plugin.php:2914
|
415 |
msgid "Description"
|
416 |
msgstr "Описание"
|
417 |
|
418 |
+
#: gallery-plugin.php:2920
|
419 |
msgid "Lightbox Button URL"
|
420 |
msgstr "Ссылка для кнопки в лайтбоксе"
|
421 |
|
422 |
+
#: gallery-plugin.php:2927
|
423 |
msgid "New Tab"
|
424 |
msgstr "Новая вкладка"
|
425 |
|
426 |
+
#: gallery-plugin.php:2929
|
427 |
msgid "Enable to open URLs above in a new tab."
|
428 |
msgstr "Включите, чтобы открыть указанный выше URL в новой вкладке."
|
429 |
|
430 |
+
#: gallery-plugin.php:2934
|
431 |
msgid "Go Pro"
|
432 |
msgstr "Обновить до Pro"
|
433 |
|
434 |
+
#: gallery-plugin.php:2940
|
435 |
msgid "Edit more details"
|
436 |
msgstr "Изменить детали"
|
437 |
|
438 |
+
#: gallery-plugin.php:2942
|
439 |
msgid "Remove from Gallery"
|
440 |
msgstr "Удалить из галереи"
|
441 |
|
442 |
+
#: gallery-plugin.php:2978
|
443 |
#, php-format
|
444 |
msgid "Select %s"
|
445 |
msgstr "Выбрать %s"
|
446 |
|
447 |
+
#: gallery-plugin.php:2991
|
448 |
#, php-format
|
449 |
msgid "Edit “%s”"
|
450 |
msgstr "Изменить “%s”"
|
451 |
|
452 |
+
#: gallery-plugin.php:2999
|
453 |
msgid "Edit Attachment Info"
|
454 |
msgstr "Изменить информацию изображения"
|
455 |
|
456 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
457 |
msgid "Edit"
|
458 |
msgstr "Изменить"
|
459 |
|
460 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
461 |
msgid "Trash"
|
462 |
msgstr "Удалить"
|
463 |
|
464 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
465 |
msgid "Delete Permanently"
|
466 |
msgstr "Удалить навсегда"
|
467 |
|
468 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
469 |
#, php-format
|
470 |
msgid "View “%s”"
|
471 |
msgstr "Просмотр “%s”"
|
472 |
|
473 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
474 |
msgid "View"
|
475 |
msgstr "Просмотр"
|
476 |
|
477 |
+
#: gallery-plugin.php:3048
|
478 |
msgid "Attach"
|
479 |
msgstr "Прикрепить"
|
480 |
|
481 |
+
#: gallery-plugin.php:3056
|
482 |
msgid "Restore"
|
483 |
msgstr "Восстановить"
|
484 |
|
485 |
+
#: gallery-plugin.php:3086
|
486 |
msgid "A list or dropdown of Gallery categories."
|
487 |
msgstr "Список или выпадающее меню категорий галерей."
|
488 |
|
489 |
+
#: gallery-plugin.php:3131
|
490 |
msgid "Select Gallery Category"
|
491 |
msgstr "Выберите категорию галерей"
|
492 |
|
493 |
+
#: gallery-plugin.php:3189
|
494 |
msgid "Title:"
|
495 |
msgstr "Заголовок:"
|
496 |
|
497 |
+
#: gallery-plugin.php:3192
|
498 |
msgid "Display as dropdown"
|
499 |
msgstr "В виде выпадающего меню"
|
500 |
|
501 |
+
#: gallery-plugin.php:3194
|
502 |
msgid "Show gallery counts"
|
503 |
msgstr "Показать количество галерей"
|
504 |
|
505 |
+
#: gallery-plugin.php:3196
|
506 |
msgid "Show hierarchy"
|
507 |
msgstr "Показать иерархию"
|
508 |
|
509 |
+
#: gallery-plugin.php:3312
|
510 |
msgid "Warning"
|
511 |
msgstr "Внимание"
|
512 |
|
513 |
+
#: gallery-plugin.php:3312
|
514 |
msgid "You can add only images to the gallery"
|
515 |
msgstr "Вы можете добавить только изображения в галерею"
|
516 |
|
517 |
+
#: gallery-plugin.php:3367
|
518 |
msgid "no title"
|
519 |
msgstr "без названия"
|
520 |
|
521 |
+
#: gallery-plugin.php:3377
|
522 |
msgid ""
|
523 |
"Display an album image with the description and the link to a single gallery "
|
524 |
"page"
|
526 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
527 |
"галереи"
|
528 |
|
529 |
+
#: gallery-plugin.php:3381
|
530 |
msgid "Sorry, no gallery found."
|
531 |
msgstr "Извините, галерей не найдено."
|
532 |
|
558 |
msgid "License Key"
|
559 |
msgstr "Лицензионный ключ"
|
560 |
|
561 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
msgid "Settings saved"
|
563 |
msgstr "Настройки сохранены"
|
564 |
|
565 |
+
#: includes/class-gllr-settings.php:256
|
566 |
msgid "Please, enable JavaScript in Your browser."
|
567 |
msgstr "Пожалуйста, включите JavaScript в вашем браузере."
|
568 |
|
569 |
+
#: includes/class-gllr-settings.php:260
|
570 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
571 |
+
msgstr ""
|
572 |
+
"Пользовательский размер изображения был изменен. Вам необходимо обновить "
|
573 |
+
"изображения галерей."
|
574 |
+
|
575 |
+
#: includes/class-gllr-settings.php:261
|
576 |
msgid "Update Images"
|
577 |
msgstr "Обновить изображения"
|
578 |
|
579 |
+
#: includes/class-gllr-settings.php:276
|
580 |
msgid "Gallery Images"
|
581 |
msgstr "Изображения галереи"
|
582 |
|
583 |
+
#: includes/class-gllr-settings.php:281
|
584 |
msgid "Images adding requires JavaScript."
|
585 |
msgstr "Добавление изображений требует наличия JavaScript."
|
586 |
|
587 |
+
#: includes/class-gllr-settings.php:284
|
588 |
msgid "Add Media"
|
589 |
msgstr "Добавить медиафайл"
|
590 |
|
591 |
+
#: includes/class-gllr-settings.php:293
|
592 |
msgid "The grid view for the Gallery images requires JavaScript."
|
593 |
msgstr "Просмотр галереи в виде сетки требует наличия JavaScript."
|
594 |
|
595 |
+
#: includes/class-gllr-settings.php:293
|
596 |
msgid "Switch to the list view"
|
597 |
msgstr "Переключиться на список"
|
598 |
|
599 |
+
#: includes/class-gllr-settings.php:320
|
600 |
+
msgid "Add Gallery to the Slider"
|
601 |
+
msgstr "Добавить галерею в слайдер"
|
602 |
+
|
603 |
+
#: includes/class-gllr-settings.php:332
|
604 |
+
msgid "Activate"
|
605 |
+
msgstr "Активировать"
|
606 |
+
|
607 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
608 |
+
msgid "Install Now"
|
609 |
+
msgstr "Установить сейчас"
|
610 |
+
|
611 |
+
#: includes/class-gllr-settings.php:337
|
612 |
+
msgid "Add"
|
613 |
+
msgstr "Добавить"
|
614 |
+
|
615 |
+
#: includes/class-gllr-settings.php:340
|
616 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
617 |
+
msgstr ""
|
618 |
+
"Нажмите, чтобы добавить текущую галерею в слайдер. Для этой опции необходимо "
|
619 |
+
"использование плагина Slider."
|
620 |
+
|
621 |
+
#: includes/class-gllr-settings.php:351
|
622 |
msgid "Single Gallery Settings"
|
623 |
msgstr "Настройки галереи"
|
624 |
|
625 |
+
#: includes/class-gllr-settings.php:353
|
626 |
#, php-format
|
627 |
msgid "Enable to configure single gallery settings and disable %s."
|
628 |
msgstr "Включите, чтобы настроить параметры этой галереи и отключить %s."
|
629 |
|
630 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
631 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
632 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
633 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
634 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
635 |
msgid "Close"
|
636 |
msgstr "Закрыть"
|
637 |
|
638 |
+
#: includes/class-gllr-settings.php:369
|
639 |
msgid "Gallery Layout"
|
640 |
msgstr "Макет галереи"
|
641 |
|
642 |
+
#: includes/class-gllr-settings.php:374
|
643 |
msgid "Grid"
|
644 |
msgstr "Сетка"
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:380
|
647 |
msgid "Masonry"
|
648 |
msgstr "Masonry"
|
649 |
|
650 |
+
#: includes/class-gllr-settings.php:393
|
651 |
msgid "Number of Columns"
|
652 |
msgstr "Количество колонок"
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:396
|
655 |
#, php-format
|
656 |
msgid "Number of gallery columns (default is %s)."
|
657 |
msgstr "Количество колонок галерей (по умолчанию - %s)."
|
658 |
|
659 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
660 |
msgid "Image Size"
|
661 |
msgstr "Размер изображения"
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
664 |
msgid "Custom"
|
665 |
msgstr "Пользовательский"
|
666 |
|
667 |
+
#: includes/class-gllr-settings.php:408
|
668 |
msgid ""
|
669 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
670 |
msgstr ""
|
671 |
"Максимальный размер изображений галереи. \"Пользовательский\" использует "
|
672 |
"значения, указанные в поле Размеры изображения."
|
673 |
|
674 |
+
#: includes/class-gllr-settings.php:412
|
675 |
msgid "Custom Image Size"
|
676 |
msgstr "Пользовательский размер изображения"
|
677 |
|
678 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
679 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
680 |
msgid "px"
|
681 |
msgstr "пикс"
|
682 |
|
683 |
+
#: includes/class-gllr-settings.php:415
|
684 |
msgid ""
|
685 |
"Adjust these values based on the number of columns in your gallery. This "
|
686 |
"won't effect the full size of your images in the lightbox."
|
688 |
"Отрегулируйте эти значения на основе числа колонок в вашей галерее. Это не "
|
689 |
"влияет на размеры полного изображения в лайтбоксе."
|
690 |
|
691 |
+
#: includes/class-gllr-settings.php:426
|
692 |
msgid "Crop Images"
|
693 |
msgstr "Обрезка изображений"
|
694 |
|
695 |
+
#: includes/class-gllr-settings.php:428
|
696 |
msgid ""
|
697 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
698 |
"to resize images automatically using their aspect ratio."
|
701 |
"пользовательского размера изображения. Отключите, чтобы изменить размер "
|
702 |
"изображения автоматически, используя их пропорции."
|
703 |
|
704 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
705 |
msgid "Crop Position"
|
706 |
msgstr "Позиция обрезки"
|
707 |
|
708 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
709 |
msgid "Select crop position base (by default: center)."
|
710 |
msgstr "Выберите позицию обрезки (по умолчанию: центр)."
|
711 |
|
712 |
+
#: includes/class-gllr-settings.php:457
|
713 |
msgid "Image Title"
|
714 |
msgstr "Название изображения"
|
715 |
|
716 |
+
#: includes/class-gllr-settings.php:459
|
717 |
msgid "Enable to display image title along with the gallery image."
|
718 |
msgstr ""
|
719 |
"Включите, чтобы отобразить название изображения вместе с изображением "
|
720 |
"галереи."
|
721 |
|
722 |
+
#: includes/class-gllr-settings.php:470
|
723 |
msgid "Image Title Position"
|
724 |
msgstr "Расположение названия изображения"
|
725 |
|
726 |
+
#: includes/class-gllr-settings.php:475
|
727 |
msgid "Under image"
|
728 |
msgstr "Под изображением"
|
729 |
|
730 |
+
#: includes/class-gllr-settings.php:481
|
731 |
msgid "On mouse hover"
|
732 |
msgstr "По наведению мыши"
|
733 |
|
734 |
+
#: includes/class-gllr-settings.php:494
|
735 |
msgid "Image Border"
|
736 |
msgstr "Рамка изображения"
|
737 |
|
738 |
+
#: includes/class-gllr-settings.php:496
|
739 |
msgid ""
|
740 |
"Enable images border using the styles defined for Image Border Size and "
|
741 |
"Color options."
|
743 |
"Включить рамку изображения с использованием стилей, указанных для Цвета и "
|
744 |
"Размера рамки."
|
745 |
|
746 |
+
#: includes/class-gllr-settings.php:500
|
747 |
msgid "Image Border Size"
|
748 |
msgstr "Размер рамки изображения"
|
749 |
|
750 |
+
#: includes/class-gllr-settings.php:503
|
751 |
#, php-format
|
752 |
msgid "Gallery image border width (default is %s)"
|
753 |
msgstr "Ширина рамки для изображений галереи (по умолчанию %s)"
|
754 |
|
755 |
+
#: includes/class-gllr-settings.php:507
|
756 |
msgid "Image Border Color"
|
757 |
msgstr "Цвет рамки изображений"
|
758 |
|
759 |
+
#: includes/class-gllr-settings.php:520
|
760 |
msgid "Pagination"
|
761 |
msgstr "Постраничная навигация"
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:523
|
764 |
msgid ""
|
765 |
"Enable pagination for images to limit number of images displayed on a single "
|
766 |
"gallery page."
|
768 |
"Включить постраничную навигацию для изображений, чтобы ограничить количество "
|
769 |
"изображений, отображаемых на одной странице галереи."
|
770 |
|
771 |
+
#: includes/class-gllr-settings.php:527
|
772 |
msgid "Number of Images"
|
773 |
msgstr "Количество изображений"
|
774 |
|
775 |
+
#: includes/class-gllr-settings.php:530
|
776 |
#, php-format
|
777 |
msgid "Number of images displayed per page (default is %d)."
|
778 |
msgstr ""
|
779 |
"Количество изображений, отображаемых на одной странице (по умолчанию %d)."
|
780 |
|
781 |
+
#: includes/class-gllr-settings.php:540
|
782 |
msgid "Sort Images by"
|
783 |
msgstr "Cортировка изображений по"
|
784 |
|
785 |
+
#: includes/class-gllr-settings.php:543
|
786 |
msgid "Manually (default)"
|
787 |
msgstr "Вручную (по умолчанию)"
|
788 |
|
789 |
+
#: includes/class-gllr-settings.php:544
|
790 |
msgid "Image ID"
|
791 |
msgstr "ID изображения"
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:545
|
794 |
msgid "Name"
|
795 |
msgstr "Название"
|
796 |
|
797 |
+
#: includes/class-gllr-settings.php:549
|
798 |
msgid ""
|
799 |
"Select images sorting order in your gallery. By default, you can sort images "
|
800 |
"manually in the images tab."
|
802 |
"Выберите порядок сортировки изображений в вашей галерее. По умолчанию, это "
|
803 |
"ручная сортировка изображения на вкладке изображений."
|
804 |
|
805 |
+
#: includes/class-gllr-settings.php:553
|
806 |
msgid "Arrange Images by"
|
807 |
msgstr "Сортировка изображений"
|
808 |
|
809 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
810 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
811 |
msgstr "По возрастанию (например, 1, 2, 3; а, б, в)"
|
812 |
|
813 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
814 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
815 |
msgstr "По убыванию (например, 3, 2, 1; в, б, а)"
|
816 |
|
817 |
+
#: includes/class-gllr-settings.php:562
|
818 |
msgid "Back Link"
|
819 |
msgstr "Обратная ссылка"
|
820 |
|
821 |
+
#: includes/class-gllr-settings.php:564
|
822 |
msgid ""
|
823 |
"Enable to show a back link in a single gallery page which navigate to a "
|
824 |
"previous page."
|
826 |
"Включите, чтобы показать обратную ссылку на странице галереи, которая "
|
827 |
"перейдет к предыдущей странице."
|
828 |
|
829 |
+
#: includes/class-gllr-settings.php:568
|
830 |
msgid "Back Link URL"
|
831 |
msgstr "URL обратной ссылки"
|
832 |
|
833 |
+
#: includes/class-gllr-settings.php:571
|
834 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
835 |
msgstr ""
|
836 |
"Пользовательский URL для обратной ссылки. Оставьте пустым, чтобы "
|
837 |
"использовать страницу галерей."
|
838 |
|
839 |
+
#: includes/class-gllr-settings.php:575
|
840 |
msgid "Back Link Label"
|
841 |
msgstr "Текст обратной ссылки"
|
842 |
|
843 |
+
#: includes/class-gllr-settings.php:581
|
844 |
msgid "Back Link with Shortcode"
|
845 |
msgstr "Обратная ссылка шорткода"
|
846 |
|
847 |
+
#: includes/class-gllr-settings.php:584
|
848 |
msgid "Enable to display a back link on a page where shortcode is used."
|
849 |
msgstr ""
|
850 |
"Включите, чтобы отображать обратную ссылку на страницу при использовании "
|
851 |
"шорткода."
|
852 |
|
853 |
+
#: includes/class-gllr-settings.php:595
|
854 |
msgid "Cover Settings"
|
855 |
msgstr "Настройки альбома"
|
856 |
|
857 |
+
#: includes/class-gllr-settings.php:600
|
858 |
msgid "Galleries Page"
|
859 |
msgstr "Страница галерей"
|
860 |
|
861 |
+
#: includes/class-gllr-settings.php:608
|
862 |
msgid "Base page where all existing galleries will be displayed."
|
863 |
msgstr ""
|
864 |
"Базовая страница, на которой будут отображаться все существующие галереи."
|
865 |
|
866 |
+
#: includes/class-gllr-settings.php:612
|
867 |
msgid "Albums Displaying"
|
868 |
msgstr "Отображение альбомов"
|
869 |
|
870 |
+
#: includes/class-gllr-settings.php:615
|
871 |
msgid "Column"
|
872 |
msgstr "В колонку"
|
873 |
|
874 |
+
#: includes/class-gllr-settings.php:616
|
875 |
msgid "Rows"
|
876 |
msgstr "В ряд"
|
877 |
|
878 |
+
#: includes/class-gllr-settings.php:618
|
879 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
880 |
msgstr "Выберите способ отображения галерей на Странице галерей."
|
881 |
|
882 |
+
#: includes/class-gllr-settings.php:622
|
883 |
msgid "Column Alignment"
|
884 |
msgstr "Ориентация колонки"
|
885 |
|
886 |
+
#: includes/class-gllr-settings.php:625
|
887 |
msgid "Left"
|
888 |
msgstr "Лево"
|
889 |
|
890 |
+
#: includes/class-gllr-settings.php:626
|
891 |
msgid "Right"
|
892 |
msgstr "Право"
|
893 |
|
894 |
+
#: includes/class-gllr-settings.php:627
|
895 |
msgid "Center"
|
896 |
msgstr "Центр"
|
897 |
|
898 |
+
#: includes/class-gllr-settings.php:629
|
899 |
msgid "Select the column alignment."
|
900 |
msgstr "Выберите ориентацию колонки."
|
901 |
|
902 |
+
#: includes/class-gllr-settings.php:633
|
903 |
msgid "Cover Image Size"
|
904 |
msgstr "Размер изображения альбома"
|
905 |
|
906 |
+
#: includes/class-gllr-settings.php:641
|
907 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
908 |
msgstr ""
|
909 |
"Максимальный размер изображения альбома. Пользовательский использует "
|
910 |
"значения Размеров изображения."
|
911 |
|
912 |
+
#: includes/class-gllr-settings.php:645
|
913 |
msgid "Custom Cover Image Size"
|
914 |
msgstr "Пользовательский размер изображения альбома"
|
915 |
|
916 |
+
#: includes/class-gllr-settings.php:658
|
917 |
msgid "Crop Cover Images"
|
918 |
msgstr "Обрезка изображения альбома"
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:660
|
921 |
msgid ""
|
922 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
923 |
"Disable to resize images automatically using their aspect ratio."
|
926 |
"пользовательского размера изображения альбома. Отключите, чтобы изменить "
|
927 |
"размер изображения автоматически, используя их пропорции."
|
928 |
|
929 |
+
#: includes/class-gllr-settings.php:689
|
930 |
msgid "Cover Image Border"
|
931 |
msgstr "Рамка для изображения альбома"
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:691
|
934 |
msgid ""
|
935 |
"Enable cover images border using the styles defined for Image Border Size "
|
936 |
"and Color."
|
938 |
"Включить рамку изображения альбома с использованием стилей, указанных для "
|
939 |
"Цвета и Размера рамки."
|
940 |
|
941 |
+
#: includes/class-gllr-settings.php:695
|
942 |
msgid "Cover Image Border Size"
|
943 |
msgstr "Размер рамки изображения альбома"
|
944 |
|
945 |
+
#: includes/class-gllr-settings.php:698
|
946 |
#, php-format
|
947 |
msgid "Cover image border width (default is %s)"
|
948 |
msgstr "Ширина рамки для изображения альбома (по умолчанию %s)"
|
949 |
|
950 |
+
#: includes/class-gllr-settings.php:702
|
951 |
msgid "Cover Image Border Color"
|
952 |
msgstr "Цвет рамки для изображения альбома"
|
953 |
|
954 |
+
#: includes/class-gllr-settings.php:708
|
955 |
msgid "Sort Albums by"
|
956 |
msgstr "Cортировка альбомов по"
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:720
|
959 |
msgid "Select galleries sorting order in your galleries page."
|
960 |
msgstr "Выберите порядок сортировки галерей на странице галерей."
|
961 |
|
962 |
+
#: includes/class-gllr-settings.php:724
|
963 |
msgid "Arrange Albums by"
|
964 |
msgstr "Сортировка альбомов по"
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:733
|
967 |
msgid "Read More Link Label"
|
968 |
msgstr "Текст ссылки Узнать больше"
|
969 |
|
970 |
+
#: includes/class-gllr-settings.php:746
|
971 |
msgid "Instant Lightbox"
|
972 |
msgstr "Мгновенный лайтбокс"
|
973 |
|
974 |
+
#: includes/class-gllr-settings.php:749
|
975 |
msgid ""
|
976 |
"Enable to display all images in the lightbox after clicking cover image or "
|
977 |
"URL instead of going to a single gallery page."
|
979 |
"Включите, чтобы отображать все изображения в лайтбоксе после клика на "
|
980 |
"изображение альбома или URL вместо перехода на отдельную страницу галереи."
|
981 |
|
982 |
+
#: includes/class-gllr-settings.php:763
|
983 |
msgid "Lightbox Settings"
|
984 |
msgstr "Настройки лайтбокса"
|
985 |
|
986 |
+
#: includes/class-gllr-settings.php:768
|
987 |
msgid "Unclickable Thumbnail Images"
|
988 |
msgstr "Некликабельные изображения"
|
989 |
|
990 |
+
#: includes/class-gllr-settings.php:771
|
991 |
msgid ""
|
992 |
"Enable to make the images in a single gallery unclickable and hide their "
|
993 |
"URLs. This option also disables Lightbox."
|
995 |
"Включите, чтобы сделать миниатюры изображений в галерее некликабельными, а "
|
996 |
"так же не отображать их ссылки. Эта опция так же отключает лайтбокс."
|
997 |
|
998 |
+
#: includes/class-gllr-settings.php:775
|
999 |
msgid "Enable Lightbox"
|
1000 |
msgstr "Включить лайтбокс"
|
1001 |
|
1002 |
+
#: includes/class-gllr-settings.php:778
|
1003 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1004 |
msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
|
1005 |
|
1006 |
+
#: includes/class-gllr-settings.php:796
|
1007 |
msgid ""
|
1008 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1009 |
"will display the original, full size image."
|
1011 |
"Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
|
1012 |
"По умолчанию будет отображаться оригинал, полный размер."
|
1013 |
|
1014 |
+
#: includes/class-gllr-settings.php:800
|
1015 |
msgid "Overlay Color"
|
1016 |
msgstr "Цвет подложки"
|
1017 |
|
1018 |
+
#: includes/class-gllr-settings.php:806
|
1019 |
msgid "Overlay Opacity"
|
1020 |
msgstr "Прозрачность подложки"
|
1021 |
|
1022 |
+
#: includes/class-gllr-settings.php:809
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1028 |
"Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
|
1029 |
"прозрачность (по умолчанию %s, максимум %s)."
|
1030 |
|
1031 |
+
#: includes/class-gllr-settings.php:819
|
1032 |
msgid "Slideshow"
|
1033 |
msgstr "Слайд-шоу"
|
1034 |
|
1035 |
+
#: includes/class-gllr-settings.php:821
|
1036 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1037 |
msgstr ""
|
1038 |
"Включение автоматического запуска слайд-шоу при использовании лайтбокса."
|
1039 |
|
1040 |
+
#: includes/class-gllr-settings.php:825
|
1041 |
msgid "Slideshow Duration"
|
1042 |
msgstr "Интервал времени"
|
1043 |
|
1044 |
+
#: includes/class-gllr-settings.php:827
|
1045 |
msgid "ms"
|
1046 |
msgstr "мс"
|
1047 |
|
1048 |
+
#: includes/class-gllr-settings.php:828
|
1049 |
msgid "Slideshow interval duration between two images."
|
1050 |
msgstr "Интервал переключения между двумя изображениями."
|
1051 |
|
1052 |
+
#: includes/class-gllr-settings.php:839
|
1053 |
msgid "Lightbox Helpers"
|
1054 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
1055 |
|
1056 |
+
#: includes/class-gllr-settings.php:841
|
1057 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1058 |
msgstr ""
|
1059 |
"Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
|
1060 |
|
1061 |
+
#: includes/class-gllr-settings.php:845
|
1062 |
msgid "Lightbox Thumbnails"
|
1063 |
msgstr "Миниатюры в лайтбоксе"
|
1064 |
|
1065 |
+
#: includes/class-gllr-settings.php:847
|
1066 |
msgid "Enable to use a lightbox helper navigation between images."
|
1067 |
msgstr ""
|
1068 |
"Разрешить использовать вспомогательные элементы лайтбокса для навигации "
|
1069 |
"между изображениями."
|
1070 |
|
1071 |
+
#: includes/class-gllr-settings.php:851
|
1072 |
msgid "Lightbox Thumbnails Position"
|
1073 |
msgstr "Расположение миниатюр в лайтбоксе"
|
1074 |
|
1075 |
+
#: includes/class-gllr-settings.php:854
|
1076 |
msgid "Top"
|
1077 |
msgstr "Верх"
|
1078 |
|
1079 |
+
#: includes/class-gllr-settings.php:859
|
1080 |
msgid "Lightbox Button Label"
|
1081 |
msgstr "Текст кнопки в лайтбоксе"
|
1082 |
|
1083 |
+
#: includes/class-gllr-settings.php:861
|
1084 |
msgid "Read More"
|
1085 |
msgstr "Подробнее"
|
1086 |
|
1087 |
+
#: includes/class-gllr-settings.php:871
|
1088 |
msgid "Download Button"
|
1089 |
msgstr "Кнопка \"Скачать\""
|
1090 |
|
1091 |
+
#: includes/class-gllr-settings.php:873
|
1092 |
msgid "Enable to display download button."
|
1093 |
msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
|
1094 |
|
1095 |
+
#: includes/class-gllr-settings.php:877
|
1096 |
msgid "Single Lightbox"
|
1097 |
msgstr "Один лайтбокс"
|
1098 |
|
1099 |
+
#: includes/class-gllr-settings.php:879
|
1100 |
msgid ""
|
1101 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1102 |
"page."
|
1104 |
"Включите, чтобы использовать один лайтбокс для нескольких галерей, "
|
1105 |
"расположенных на одной странице."
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:889
|
1108 |
msgid "Social Sharing Buttons Settings"
|
1109 |
msgstr "Настройки социальных кнопок"
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:898
|
1112 |
msgid "Social Buttons"
|
1113 |
msgstr "Социальные кнопки"
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:900
|
1116 |
msgid "Enable social sharing buttons in the lightbox."
|
1117 |
msgstr "Включите социальные кнопки в лайтбоксе."
|
1118 |
|
1119 |
+
#: includes/class-gllr-settings.php:904
|
1120 |
msgid "Social Networks"
|
1121 |
msgstr "Социальные сети"
|
1122 |
|
1123 |
+
#: includes/class-gllr-settings.php:915
|
1124 |
msgid "Counter"
|
1125 |
msgstr "Счетчик"
|
1126 |
|
1127 |
+
#: includes/class-gllr-settings.php:918
|
1128 |
msgid ""
|
1129 |
"Enable to show likes counter for each social button (not available for "
|
1130 |
"Google +1)."
|
1132 |
"Включите, чтобы показать счетчики для социальных кнопок (недоступно для "
|
1133 |
"Google +1)."
|
1134 |
|
1135 |
+
#: includes/class-gllr-settings.php:933
|
1136 |
msgid "Demo Data"
|
1137 |
msgstr "Демо-данные"
|
1138 |
|
1139 |
+
#: includes/class-gllr-settings.php:935
|
1140 |
msgid ""
|
1141 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1142 |
"page with a list of all galleries."
|
1144 |
"Установите демо-данные, чтобы создать галереи с изображениями, запись с "
|
1145 |
"шорткодами и страницу со списком всех галерей."
|
1146 |
|
1147 |
+
#: includes/class-gllr-settings.php:973
|
1148 |
msgid "Gallery Post Type"
|
1149 |
msgstr "Тип записи галереи"
|
1150 |
|
1151 |
+
#: includes/class-gllr-settings.php:975
|
1152 |
msgid ""
|
1153 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1154 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1160 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
1161 |
"используется тип записи \"gallery\"."
|
1162 |
|
1163 |
+
#: includes/class-gllr-settings.php:987
|
1164 |
msgid "Gallery Slug"
|
1165 |
msgstr "Слаг галереи"
|
1166 |
|
1167 |
+
#: includes/class-gllr-settings.php:991
|
1168 |
msgid "Enter the unique gallery slug."
|
1169 |
msgstr "Введите уникальный слаг галереи."
|
1170 |
|
1171 |
+
#: includes/class-gllr-settings.php:1007
|
1172 |
msgid "Activate Now"
|
1173 |
msgstr "Активировать сейчас"
|
1174 |
|
1175 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1176 |
msgid "Enable to include galleries to your website search."
|
1177 |
msgstr "Включить галерею в поиск на вашем сайте."
|
1178 |
|
1179 |
+
#: includes/class-gllr-settings.php:1025
|
1180 |
#, php-format
|
1181 |
msgid "%s is required."
|
1182 |
msgstr "Требуется %s."
|
1270 |
msgid "Yes, install demo now"
|
1271 |
msgstr "Да, установить демо-данные сейчас"
|
1272 |
|
1273 |
+
#~ msgid "Download high resolution image"
|
1274 |
+
#~ msgstr "Скачать изображение в высоком разрешении"
|
|
|
1275 |
|
1276 |
+
#~ msgid "Image"
|
1277 |
+
#~ msgstr "Изображение"
|
|
|
1278 |
|
1279 |
# это
|
1280 |
#~ msgid "Allow users to open images from the thumbnail"
|
1404 |
#~ msgid "Learn more"
|
1405 |
#~ msgstr "Подробнее"
|
1406 |
|
|
|
|
|
|
|
1407 |
#~ msgid "Add multiple gallery categories"
|
1408 |
#~ msgstr "Добавить несколько категорий галереи"
|
1409 |
|
1751 |
#~ msgid "Full URL to custom page"
|
1752 |
#~ msgstr "Полная ссылка на пользовательскую страницу"
|
1753 |
|
|
|
|
|
|
|
1754 |
#~ msgid "Using"
|
1755 |
#~ msgstr "Используя"
|
1756 |
|
1919 |
#~ msgid "The Pro Trial license will expire on"
|
1920 |
#~ msgstr "Ваша пробная лицензия истечет"
|
1921 |
|
|
|
|
|
|
|
|
|
1922 |
#, fuzzy
|
1923 |
#~ msgid "Add BWS shortcode"
|
1924 |
#~ msgstr "Шорткод"
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
@@ -13,477 +13,520 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Nastavenie galérie"
|
22 |
|
23 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
24 |
#, fuzzy
|
25 |
msgid "Global Settings"
|
26 |
msgstr "Nastavenie galérie"
|
27 |
|
28 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
29 |
msgid "Upgrade to Pro"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
msgid "Return to all albums"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: gallery-plugin.php:
|
37 |
msgid "See images »"
|
38 |
msgstr "Vidieť fotky »"
|
39 |
|
40 |
-
#: gallery-plugin.php:
|
41 |
msgid "Galleries"
|
42 |
msgstr "Galérie"
|
43 |
|
44 |
-
#: gallery-plugin.php:
|
45 |
msgid "Gallery"
|
46 |
msgstr "Galéria"
|
47 |
|
48 |
-
#: gallery-plugin.php:
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "Pridať novú galériu"
|
51 |
|
52 |
-
#: gallery-plugin.php:
|
53 |
msgid "Edit Gallery"
|
54 |
msgstr "Upraviť galériu"
|
55 |
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "New Gallery"
|
58 |
msgstr "Nová galéria"
|
59 |
|
60 |
-
#: gallery-plugin.php:
|
61 |
msgid "View Gallery"
|
62 |
msgstr "Zobraziť galériu"
|
63 |
|
64 |
-
#: gallery-plugin.php:
|
65 |
#, fuzzy
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Galérie"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Galéria nebola nájdená"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
#, fuzzy
|
77 |
msgid "Gallery Categories"
|
78 |
msgstr "Veľkosť obrázka galérie"
|
79 |
|
80 |
-
#: gallery-plugin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Category"
|
83 |
msgstr "Veľkosť obrázka galérie"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Add Gallery Category"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Add New Gallery Category"
|
92 |
msgstr "Pridať novú galériu"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Edit Gallery Category"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "New Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid "View Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "Find Gallery Category"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "No Gallery Categories found"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "No Gallery Categories found in Trash"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Parent Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Gallery Categories list navigation"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Gallery Categories list"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Gallery Shortcode"
|
132 |
msgstr "Krátky kód galérie"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid ""
|
136 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
137 |
"widgets by using the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid ""
|
142 |
"Add a gallery cover including featured image, description, and a link to "
|
143 |
"your single gallery using the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
#, fuzzy
|
159 |
msgid "Shortcode"
|
160 |
msgstr "Krátky kód galérie"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "All Gallery Categories"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "You can't delete default gallery category."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Sorry, nothing found."
|
172 |
msgstr "Prepáčte, nič som nenašiel."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Featured Image"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
180 |
-
msgid "Title"
|
181 |
-
msgstr "Nadpis"
|
182 |
-
|
183 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
184 |
#, fuzzy
|
185 |
msgid "Images"
|
186 |
msgstr "Vidieť fotky »"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
msgid "Author"
|
190 |
-
msgstr "Autor"
|
191 |
-
|
192 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
193 |
-
#: includes/class-gllr-settings.php:680
|
194 |
-
msgid "Date"
|
195 |
-
msgstr "Dátum"
|
196 |
-
|
197 |
-
#: gallery-plugin.php:1688
|
198 |
#, php-format
|
199 |
msgid "%s Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
204 |
msgid "Settings"
|
205 |
msgstr "Nastavenia"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "FAQ"
|
209 |
msgstr "FAQ"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "Support"
|
213 |
msgstr "Podpora"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "Updating images..."
|
217 |
msgstr "Nahrávanie obrázkov..."
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "No images found."
|
222 |
msgstr "Obrázok nebol nájdený"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
#, fuzzy
|
226 |
msgid "All images were updated."
|
227 |
msgstr "Všetky obrázky boli nahraté"
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Error."
|
231 |
msgstr "Chyba"
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid ""
|
235 |
"You are about to remove these items from this gallery.\n"
|
236 |
" 'Cancel' to stop, 'OK' to delete."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid ""
|
241 |
"You are about to remove this image from the gallery.\n"
|
242 |
" 'Cancel' to stop, 'OK' to delete."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid ""
|
247 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
248 |
"switching?"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Insert Media"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Insert"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
260 |
msgid "Image size not defined"
|
261 |
msgstr "Veľkosť obrázka nebola definovaná"
|
262 |
|
263 |
-
#: gallery-plugin.php:
|
264 |
#, fuzzy
|
265 |
msgid ""
|
266 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
267 |
"reload images manually."
|
268 |
msgstr "Môžete nahrať iba PNG, JPEG, GIF, WPMP alebo XBM súbory."
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Invalid path"
|
272 |
msgstr "Neplatná cesta"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "List View"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Grid View"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Filter"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Empty Trash"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "No images found"
|
293 |
msgstr "Obrázok nebol nájdený"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
msgid "Select bulk action"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Bulk Actions"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Apply"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
#, fuzzy
|
309 |
msgid "Delete from Gallery"
|
310 |
msgstr "Nová galéria"
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Bulk Select"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Cancel Selection"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Delete Selected"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "File"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Dimensions"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
#, fuzzy
|
334 |
msgid "Alt Text"
|
335 |
msgstr "Popisný text"
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "URL"
|
339 |
msgstr "Adresa URL"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid ""
|
343 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
344 |
"to open a full size image."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
#, fuzzy
|
349 |
msgid "Remove Image from Gallery"
|
350 |
msgstr "Nová galéria"
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
#, fuzzy
|
354 |
msgid "Edit Image Info"
|
355 |
msgstr "ID pripojenia"
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid "Deselect"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "File name"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "File type"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
msgid "Description"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
#, fuzzy
|
375 |
msgid "Lightbox Button URL"
|
376 |
msgstr "pozadie Lightboxu"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
msgid "New Tab"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid "Enable to open URLs above in a new tab."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
msgid "Go Pro"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
msgid "Edit more details"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
#, fuzzy
|
396 |
msgid "Remove from Gallery"
|
397 |
msgstr "Nová galéria"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
#, php-format
|
401 |
msgid "Select %s"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
#, php-format
|
406 |
msgid "Edit “%s”"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
#, fuzzy
|
411 |
msgid "Edit Attachment Info"
|
412 |
msgstr "ID pripojenia"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "Edit"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Trash"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Delete Permanently"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
#, php-format
|
428 |
msgid "View “%s”"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "View"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
#, fuzzy
|
437 |
msgid "Attach"
|
438 |
msgstr "ID pripojenia"
|
439 |
|
440 |
-
#: gallery-plugin.php:
|
441 |
msgid "Restore"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "A list or dropdown of Gallery categories."
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "Select Gallery Category"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
#, fuzzy
|
454 |
msgid "Title:"
|
455 |
msgstr "Nadpis"
|
456 |
|
457 |
-
#: gallery-plugin.php:
|
458 |
msgid "Display as dropdown"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "Show gallery counts"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
msgid "Show hierarchy"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "Warning"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "You can add only images to the gallery"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
-
msgid "or"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: gallery-plugin.php:3181
|
482 |
#, fuzzy
|
483 |
msgid "no title"
|
484 |
msgstr "Nadpis"
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
#, fuzzy
|
488 |
msgid ""
|
489 |
"Display an album image with the description and the link to a single gallery "
|
@@ -492,7 +535,7 @@ msgstr ""
|
|
492 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
493 |
"galérie"
|
494 |
|
495 |
-
#: gallery-plugin.php:
|
496 |
#, fuzzy
|
497 |
msgid "Sorry, no gallery found."
|
498 |
msgstr "Prepáčte, nič som nenašiel."
|
@@ -526,584 +569,597 @@ msgstr ""
|
|
526 |
msgid "License Key"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/class-gllr-settings.php:
|
530 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: includes/class-gllr-settings.php:247
|
534 |
#, fuzzy
|
535 |
msgid "Settings saved"
|
536 |
msgstr "Nastavenia boli uložené."
|
537 |
|
538 |
-
#: includes/class-gllr-settings.php:
|
539 |
#, fuzzy
|
540 |
msgid "Please, enable JavaScript in Your browser."
|
541 |
msgstr "Povoľte prosím JavaScript na používanie nahrávania súborov."
|
542 |
|
543 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
544 |
#, fuzzy
|
545 |
msgid "Update Images"
|
546 |
msgstr "Nahrávanie obrázkov..."
|
547 |
|
548 |
-
#: includes/class-gllr-settings.php:
|
549 |
#, fuzzy
|
550 |
msgid "Gallery Images"
|
551 |
msgstr "Veľkosť obrázka galérie"
|
552 |
|
553 |
-
#: includes/class-gllr-settings.php:
|
554 |
msgid "Images adding requires JavaScript."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/class-gllr-settings.php:
|
558 |
msgid "Add Media"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-gllr-settings.php:
|
562 |
msgid "The grid view for the Gallery images requires JavaScript."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-gllr-settings.php:
|
566 |
msgid "Switch to the list view"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
#, fuzzy
|
571 |
msgid "Single Gallery Settings"
|
572 |
msgstr "Nastavenie galérie"
|
573 |
|
574 |
-
#: includes/class-gllr-settings.php:
|
575 |
#, php-format
|
576 |
msgid "Enable to configure single gallery settings and disable %s."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/class-gllr-settings.php:
|
580 |
-
#: includes/class-gllr-settings.php:
|
581 |
-
#: includes/class-gllr-settings.php:
|
582 |
-
#: includes/class-gllr-settings.php:
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
msgid "Close"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
#, fuzzy
|
589 |
msgid "Gallery Layout"
|
590 |
msgstr "Galéria nebola nájdená"
|
591 |
|
592 |
-
#: includes/class-gllr-settings.php:
|
593 |
msgid "Grid"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/class-gllr-settings.php:
|
597 |
msgid "Masonry"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
msgid "Number of Columns"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
#, php-format
|
606 |
msgid "Number of gallery columns (default is %s)."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/class-gllr-settings.php:
|
610 |
#, fuzzy
|
611 |
msgid "Image Size"
|
612 |
msgstr "Veľkosť obrázku"
|
613 |
|
614 |
-
#: includes/class-gllr-settings.php:
|
615 |
msgid "Custom"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: includes/class-gllr-settings.php:
|
619 |
msgid ""
|
620 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: includes/class-gllr-settings.php:
|
624 |
#, fuzzy
|
625 |
msgid "Custom Image Size"
|
626 |
msgstr "Veľkosť obrázku"
|
627 |
|
628 |
-
#: includes/class-gllr-settings.php:
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
msgid "px"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/class-gllr-settings.php:
|
634 |
msgid ""
|
635 |
"Adjust these values based on the number of columns in your gallery. This "
|
636 |
"won't effect the full size of your images in the lightbox."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/class-gllr-settings.php:
|
640 |
#, fuzzy
|
641 |
msgid "Crop Images"
|
642 |
msgstr "Zoradenie obrázkov"
|
643 |
|
644 |
-
#: includes/class-gllr-settings.php:
|
645 |
msgid ""
|
646 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
647 |
"to resize images automatically using their aspect ratio."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: includes/class-gllr-settings.php:
|
651 |
#, fuzzy
|
652 |
msgid "Crop Position"
|
653 |
msgstr "Orezať"
|
654 |
|
655 |
-
#: includes/class-gllr-settings.php:
|
656 |
msgid "Select crop position base (by default: center)."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/class-gllr-settings.php:
|
660 |
#, fuzzy
|
661 |
msgid "Image Title"
|
662 |
msgstr "Veľkosť obrázku"
|
663 |
|
664 |
-
#: includes/class-gllr-settings.php:
|
665 |
msgid "Enable to display image title along with the gallery image."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: includes/class-gllr-settings.php:
|
669 |
#, fuzzy
|
670 |
msgid "Image Title Position"
|
671 |
msgstr "Veľkosť obrázka nebola definovaná"
|
672 |
|
673 |
-
#: includes/class-gllr-settings.php:
|
674 |
#, fuzzy
|
675 |
msgid "Under image"
|
676 |
msgstr "Nahrať obrázky"
|
677 |
|
678 |
-
#: includes/class-gllr-settings.php:
|
679 |
msgid "On mouse hover"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
#, fuzzy
|
684 |
msgid "Image Border"
|
685 |
msgstr "Obrázky s rámčekom"
|
686 |
|
687 |
-
#: includes/class-gllr-settings.php:
|
688 |
msgid ""
|
689 |
"Enable images border using the styles defined for Image Border Size and "
|
690 |
"Color options."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/class-gllr-settings.php:
|
694 |
#, fuzzy
|
695 |
msgid "Image Border Size"
|
696 |
msgstr "Veľkosť obrázku"
|
697 |
|
698 |
-
#: includes/class-gllr-settings.php:
|
699 |
#, php-format
|
700 |
msgid "Gallery image border width (default is %s)"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/class-gllr-settings.php:
|
704 |
#, fuzzy
|
705 |
msgid "Image Border Color"
|
706 |
msgstr "Vyberte farbu rámčeka"
|
707 |
|
708 |
-
#: includes/class-gllr-settings.php:
|
709 |
msgid "Pagination"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/class-gllr-settings.php:
|
713 |
msgid ""
|
714 |
"Enable pagination for images to limit number of images displayed on a single "
|
715 |
"gallery page."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: includes/class-gllr-settings.php:
|
719 |
#, fuzzy
|
720 |
msgid "Number of Images"
|
721 |
msgstr "Počet obrázkov v rade"
|
722 |
|
723 |
-
#: includes/class-gllr-settings.php:
|
724 |
#, php-format
|
725 |
msgid "Number of images displayed per page (default is %d)."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
#, fuzzy
|
730 |
msgid "Sort Images by"
|
731 |
msgstr "Zoradiť podľa"
|
732 |
|
733 |
-
#: includes/class-gllr-settings.php:
|
734 |
msgid "Manually (default)"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/class-gllr-settings.php:
|
738 |
#, fuzzy
|
739 |
msgid "Image ID"
|
740 |
msgstr "Obrázok"
|
741 |
|
742 |
-
#: includes/class-gllr-settings.php:
|
743 |
msgid "Name"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: includes/class-gllr-settings.php:
|
747 |
-
msgid "Random"
|
748 |
-
msgstr "Náhodne"
|
749 |
-
|
750 |
-
#: includes/class-gllr-settings.php:516
|
751 |
msgid ""
|
752 |
"Select images sorting order in your gallery. By default, you can sort images "
|
753 |
"manually in the images tab."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: includes/class-gllr-settings.php:
|
757 |
#, fuzzy
|
758 |
msgid "Arrange Images by"
|
759 |
msgstr "Zoradiť podľa"
|
760 |
|
761 |
-
#: includes/class-gllr-settings.php:
|
762 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-gllr-settings.php:
|
770 |
#, fuzzy
|
771 |
msgid "Back Link"
|
772 |
msgstr "URL spätného odkazu"
|
773 |
|
774 |
-
#: includes/class-gllr-settings.php:
|
775 |
msgid ""
|
776 |
"Enable to show a back link in a single gallery page which navigate to a "
|
777 |
"previous page."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/class-gllr-settings.php:
|
781 |
#, fuzzy
|
782 |
msgid "Back Link URL"
|
783 |
msgstr "URL spätného odkazu"
|
784 |
|
785 |
-
#: includes/class-gllr-settings.php:
|
786 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/class-gllr-settings.php:
|
790 |
#, fuzzy
|
791 |
msgid "Back Link Label"
|
792 |
msgstr "URL spätného odkazu"
|
793 |
|
794 |
-
#: includes/class-gllr-settings.php:
|
795 |
#, fuzzy
|
796 |
msgid "Back Link with Shortcode"
|
797 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
798 |
|
799 |
-
#: includes/class-gllr-settings.php:
|
800 |
#, fuzzy
|
801 |
msgid "Enable to display a back link on a page where shortcode is used."
|
802 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
803 |
|
804 |
-
#: includes/class-gllr-settings.php:
|
805 |
#, fuzzy
|
806 |
msgid "Cover Settings"
|
807 |
msgstr "Nastavenie galérie"
|
808 |
|
809 |
-
#: includes/class-gllr-settings.php:
|
810 |
#, fuzzy
|
811 |
msgid "Galleries Page"
|
812 |
msgstr "Galérie"
|
813 |
|
814 |
-
#: includes/class-gllr-settings.php:
|
815 |
#, fuzzy
|
816 |
msgid "Base page where all existing galleries will be displayed."
|
817 |
msgstr ""
|
818 |
"Ak aktualizujete na Pro verziu, všetky vaše nastavanie a galérie budú "
|
819 |
"uložené."
|
820 |
|
821 |
-
#: includes/class-gllr-settings.php:
|
822 |
msgid "Albums Displaying"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/class-gllr-settings.php:
|
826 |
msgid "Column"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/class-gllr-settings.php:
|
830 |
msgid "Rows"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid "Column Alignment"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Left"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Right"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Center"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
msgid "Select the column alignment."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/class-gllr-settings.php:
|
858 |
#, fuzzy
|
859 |
msgid "Cover Image Size"
|
860 |
msgstr "Veľkosť obrázku"
|
861 |
|
862 |
-
#: includes/class-gllr-settings.php:
|
863 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
msgid "Custom Cover Image Size"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/class-gllr-settings.php:
|
871 |
msgid "Crop Cover Images"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: includes/class-gllr-settings.php:
|
875 |
msgid ""
|
876 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
877 |
"Disable to resize images automatically using their aspect ratio."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class-gllr-settings.php:
|
881 |
#, fuzzy
|
882 |
msgid "Cover Image Border"
|
883 |
msgstr "Obrázky s rámčekom"
|
884 |
|
885 |
-
#: includes/class-gllr-settings.php:
|
886 |
msgid ""
|
887 |
"Enable cover images border using the styles defined for Image Border Size "
|
888 |
"and Color."
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
msgid "Cover Image Border Size"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
#, php-format
|
897 |
msgid "Cover image border width (default is %s)"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/class-gllr-settings.php:
|
901 |
#, fuzzy
|
902 |
msgid "Cover Image Border Color"
|
903 |
msgstr "Vyberte farbu rámčeka"
|
904 |
|
905 |
-
#: includes/class-gllr-settings.php:
|
906 |
#, fuzzy
|
907 |
msgid "Sort Albums by"
|
908 |
msgstr "Zoradiť podľa"
|
909 |
|
910 |
-
#: includes/class-gllr-settings.php:
|
911 |
-
#, fuzzy
|
912 |
-
msgid "Gallery ID"
|
913 |
-
msgstr "Galéria"
|
914 |
-
|
915 |
-
#: includes/class-gllr-settings.php:681
|
916 |
-
msgid "Last modified date"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: includes/class-gllr-settings.php:682
|
920 |
-
msgid "Comment count"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: includes/class-gllr-settings.php:683
|
924 |
-
msgid "\"Order\" field on the gallery edit page"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: includes/class-gllr-settings.php:687
|
928 |
msgid "Select galleries sorting order in your galleries page."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: includes/class-gllr-settings.php:
|
932 |
msgid "Arrange Albums by"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: includes/class-gllr-settings.php:
|
936 |
#, fuzzy
|
937 |
msgid "Read More Link Label"
|
938 |
msgstr "Text odkazu pre čítaj dalej"
|
939 |
|
940 |
-
#: includes/class-gllr-settings.php:
|
941 |
msgid "Instant Lightbox"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/class-gllr-settings.php:
|
945 |
msgid ""
|
946 |
"Enable to display all images in the lightbox after clicking cover image or "
|
947 |
"URL instead of going to a single gallery page."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/class-gllr-settings.php:
|
951 |
#, fuzzy
|
952 |
msgid "Lightbox Settings"
|
953 |
msgstr "pozadie Lightboxu"
|
954 |
|
955 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
msgid "Enable Lightbox"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
msgid ""
|
965 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
966 |
"will display the original, full size image."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
msgid "Overlay Color"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
msgid "Overlay Opacity"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
#, php-format
|
979 |
msgid ""
|
980 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
981 |
"is %s)."
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: includes/class-gllr-settings.php:
|
985 |
#, fuzzy
|
986 |
msgid "Slideshow"
|
987 |
msgstr "Spustiť Slideshow"
|
988 |
|
989 |
-
#: includes/class-gllr-settings.php:
|
990 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/class-gllr-settings.php:
|
994 |
#, fuzzy
|
995 |
msgid "Slideshow Duration"
|
996 |
msgstr "Trvanie slideshow"
|
997 |
|
998 |
-
#: includes/class-gllr-settings.php:
|
999 |
msgid "ms"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/class-gllr-settings.php:
|
1003 |
msgid "Slideshow interval duration between two images."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/class-gllr-settings.php:
|
1007 |
#, fuzzy
|
1008 |
msgid "Lightbox Helpers"
|
1009 |
msgstr "pozadie Lightboxu"
|
1010 |
|
1011 |
-
#: includes/class-gllr-settings.php:
|
1012 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/class-gllr-settings.php:
|
1016 |
#, fuzzy
|
1017 |
msgid "Lightbox Thumbnails"
|
1018 |
msgstr "Veľkosť obrázku pre obal albumu"
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
msgid "Enable to use a lightbox helper navigation between images."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
msgid "Lightbox Thumbnails Position"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
1029 |
#, fuzzy
|
1030 |
msgid "Top"
|
1031 |
msgstr "hore"
|
1032 |
|
1033 |
-
#: includes/class-gllr-settings.php:
|
1034 |
#, fuzzy
|
1035 |
msgid "Lightbox Button Label"
|
1036 |
msgstr "pozadie Lightboxu"
|
1037 |
|
1038 |
-
#: includes/class-gllr-settings.php:
|
1039 |
#, fuzzy
|
1040 |
msgid "Read More"
|
1041 |
msgstr "Viac"
|
1042 |
|
1043 |
-
#: includes/class-gllr-settings.php:
|
1044 |
#, fuzzy
|
1045 |
msgid "Download Button"
|
1046 |
msgstr "Sťiahnuť vlastné hľadanie"
|
1047 |
|
1048 |
-
#: includes/class-gllr-settings.php:
|
1049 |
msgid "Enable to display download button."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
msgid "Single Lightbox"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/class-gllr-settings.php:
|
1057 |
#, fuzzy
|
1058 |
msgid ""
|
1059 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1060 |
"page."
|
1061 |
msgstr "Použiť jeden lightbox pre viac galérií na jednej strane"
|
1062 |
|
1063 |
-
#: includes/class-gllr-settings.php:
|
1064 |
msgid "Social Sharing Buttons Settings"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/class-gllr-settings.php:
|
1068 |
msgid "Social Buttons"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/class-gllr-settings.php:
|
1072 |
msgid "Enable social sharing buttons in the lightbox."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Social Networks"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
#, fuzzy
|
1081 |
msgid "Counter"
|
1082 |
msgstr "Trvanie slideshow"
|
1083 |
|
1084 |
-
#: includes/class-gllr-settings.php:
|
1085 |
msgid ""
|
1086 |
"Enable to show likes counter for each social button (not available for "
|
1087 |
"Google +1)."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/class-gllr-settings.php:
|
1091 |
#, fuzzy
|
1092 |
msgid "Demo Data"
|
1093 |
msgstr "Inštalovať %s"
|
1094 |
|
1095 |
-
#: includes/class-gllr-settings.php:
|
1096 |
msgid ""
|
1097 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1098 |
"page with a list of all galleries."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/class-gllr-settings.php:
|
1102 |
#, fuzzy
|
1103 |
msgid "Gallery Post Type"
|
1104 |
msgstr "Krátky kód galérie"
|
1105 |
|
1106 |
-
#: includes/class-gllr-settings.php:
|
1107 |
msgid ""
|
1108 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1109 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1111,30 +1167,25 @@ msgid ""
|
|
1111 |
"used."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/class-gllr-settings.php:
|
1115 |
#, fuzzy
|
1116 |
msgid "Gallery Slug"
|
1117 |
msgstr "Galéria"
|
1118 |
|
1119 |
-
#: includes/class-gllr-settings.php:
|
1120 |
msgid "Enter the unique gallery slug."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/class-gllr-settings.php:
|
1124 |
#, fuzzy
|
1125 |
msgid "Activate Now"
|
1126 |
msgstr "Plugin aktivovaný"
|
1127 |
|
1128 |
-
#: includes/class-gllr-settings.php:
|
1129 |
-
#, fuzzy
|
1130 |
-
msgid "Install Now"
|
1131 |
-
msgstr "Inštalovať %s"
|
1132 |
-
|
1133 |
-
#: includes/class-gllr-settings.php:965
|
1134 |
msgid "Enable to include galleries to your website search."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/class-gllr-settings.php:
|
1138 |
#, php-format
|
1139 |
msgid "%s is required."
|
1140 |
msgstr ""
|
@@ -1273,10 +1324,6 @@ msgstr "Inštalovať %s"
|
|
1273 |
#~ msgid "Learn more"
|
1274 |
#~ msgstr "Viac"
|
1275 |
|
1276 |
-
#, fuzzy
|
1277 |
-
#~ msgid "Activate"
|
1278 |
-
#~ msgstr "Plugin aktivovaný"
|
1279 |
-
|
1280 |
#, fuzzy
|
1281 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1282 |
#~ msgstr "Zobraziť Like tlačítko v Lightbox"
|
@@ -1406,9 +1453,6 @@ msgstr "Inštalovať %s"
|
|
1406 |
#~ msgid "(Full URL to custom page)"
|
1407 |
#~ msgstr "(Celé URL na stránku)"
|
1408 |
|
1409 |
-
#~ msgid "Add gallery to the search"
|
1410 |
-
#~ msgstr "Pridať galériu do hľadania"
|
1411 |
-
|
1412 |
#, fuzzy
|
1413 |
#~ msgid "Single gallery view"
|
1414 |
#~ msgstr "Skratka pre položku galérie"
|
@@ -1468,10 +1512,6 @@ msgstr "Inštalovať %s"
|
|
1468 |
#~ msgid "Select a background color"
|
1469 |
#~ msgstr "Vyberte farbu pozadia"
|
1470 |
|
1471 |
-
#, fuzzy
|
1472 |
-
#~ msgid "Sort galleries by"
|
1473 |
-
#~ msgstr "Zoradiť podľa"
|
1474 |
-
|
1475 |
#~ msgid "Width (in px)"
|
1476 |
#~ msgstr "Šírka (v px)"
|
1477 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Michal Králik <ja@michalkralik.sk>\n"
|
9 |
"Language: sk_SK\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Nastavenie galérie"
|
22 |
|
23 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
24 |
#, fuzzy
|
25 |
msgid "Global Settings"
|
26 |
msgstr "Nastavenie galérie"
|
27 |
|
28 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
29 |
msgid "Upgrade to Pro"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:340
|
33 |
msgid "Return to all albums"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: gallery-plugin.php:354
|
37 |
msgid "See images »"
|
38 |
msgstr "Vidieť fotky »"
|
39 |
|
40 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
41 |
msgid "Galleries"
|
42 |
msgstr "Galérie"
|
43 |
|
44 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
45 |
msgid "Gallery"
|
46 |
msgstr "Galéria"
|
47 |
|
48 |
+
#: gallery-plugin.php:444
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "Pridať novú galériu"
|
51 |
|
52 |
+
#: gallery-plugin.php:445
|
53 |
msgid "Edit Gallery"
|
54 |
msgstr "Upraviť galériu"
|
55 |
|
56 |
+
#: gallery-plugin.php:446
|
57 |
msgid "New Gallery"
|
58 |
msgstr "Nová galéria"
|
59 |
|
60 |
+
#: gallery-plugin.php:447
|
61 |
msgid "View Gallery"
|
62 |
msgstr "Zobraziť galériu"
|
63 |
|
64 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
65 |
#, fuzzy
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Galérie"
|
68 |
|
69 |
+
#: gallery-plugin.php:449
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "Galéria nebola nájdená"
|
72 |
|
73 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
74 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
75 |
+
#: gallery-plugin.php:3332
|
76 |
#, fuzzy
|
77 |
msgid "Gallery Categories"
|
78 |
msgstr "Veľkosť obrázka galérie"
|
79 |
|
80 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Category"
|
83 |
msgstr "Veľkosť obrázka galérie"
|
84 |
|
85 |
+
#: gallery-plugin.php:473
|
86 |
msgid "Add Gallery Category"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:474
|
90 |
#, fuzzy
|
91 |
msgid "Add New Gallery Category"
|
92 |
msgstr "Pridať novú galériu"
|
93 |
|
94 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
95 |
msgid "Edit Gallery Category"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: gallery-plugin.php:477
|
99 |
msgid "New Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
103 |
msgid "View Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:480
|
107 |
msgid "Find Gallery Category"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:481
|
111 |
msgid "No Gallery Categories found"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: gallery-plugin.php:482
|
115 |
msgid "No Gallery Categories found in Trash"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: gallery-plugin.php:483
|
119 |
msgid "Parent Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: gallery-plugin.php:484
|
123 |
msgid "Gallery Categories list navigation"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: gallery-plugin.php:485
|
127 |
msgid "Gallery Categories list"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: gallery-plugin.php:533
|
131 |
msgid "Gallery Shortcode"
|
132 |
msgstr "Krátky kód galérie"
|
133 |
|
134 |
+
#: gallery-plugin.php:542
|
135 |
msgid ""
|
136 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
137 |
"widgets by using the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: gallery-plugin.php:546
|
141 |
msgid ""
|
142 |
"Add a gallery cover including featured image, description, and a link to "
|
143 |
"your single gallery using the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: gallery-plugin.php:659
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: gallery-plugin.php:659
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: gallery-plugin.php:670
|
158 |
+
#, fuzzy
|
159 |
+
msgid "Sort Galleries in Category by"
|
160 |
+
msgstr "Zoradiť podľa"
|
161 |
+
|
162 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
163 |
+
#: includes/class-gllr-settings.php:711
|
164 |
+
#, fuzzy
|
165 |
+
msgid "Gallery ID"
|
166 |
+
msgstr "Galéria"
|
167 |
+
|
168 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
169 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
170 |
+
#: includes/class-gllr-settings.php:712
|
171 |
+
msgid "Title"
|
172 |
+
msgstr "Nadpis"
|
173 |
+
|
174 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
175 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
176 |
+
msgid "Date"
|
177 |
+
msgstr "Dátum"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
180 |
+
#: includes/class-gllr-settings.php:714
|
181 |
+
msgid "Last modified date"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
185 |
+
#: includes/class-gllr-settings.php:715
|
186 |
+
msgid "Comment count"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
190 |
+
#: includes/class-gllr-settings.php:716
|
191 |
+
msgid "\"Order\" field on the gallery edit page"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
195 |
+
#: includes/class-gllr-settings.php:717
|
196 |
+
msgid "Author"
|
197 |
+
msgstr "Autor"
|
198 |
+
|
199 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
200 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
201 |
+
msgid "Random"
|
202 |
+
msgstr "Náhodne"
|
203 |
+
|
204 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
205 |
+
#, fuzzy
|
206 |
+
#| msgid "Settings"
|
207 |
+
msgid "Plugin Settings"
|
208 |
+
msgstr "Nastavenia"
|
209 |
+
|
210 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
211 |
+
msgid "Select galleries sorting order in your category."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
215 |
#, fuzzy
|
216 |
msgid "Shortcode"
|
217 |
msgstr "Krátky kód galérie"
|
218 |
|
219 |
+
#: gallery-plugin.php:749
|
220 |
msgid "All Gallery Categories"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:827
|
224 |
msgid "You can't delete default gallery category."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
228 |
msgid "Sorry, nothing found."
|
229 |
msgstr "Prepáčte, nič som nenašiel."
|
230 |
|
231 |
+
#: gallery-plugin.php:1717
|
232 |
msgid "Featured Image"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "Images"
|
238 |
msgstr "Vidieť fotky »"
|
239 |
|
240 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
#, php-format
|
242 |
msgid "%s Settings"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
246 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
247 |
msgid "Settings"
|
248 |
msgstr "Nastavenia"
|
249 |
|
250 |
+
#: gallery-plugin.php:1838
|
251 |
msgid "FAQ"
|
252 |
msgstr "FAQ"
|
253 |
|
254 |
+
#: gallery-plugin.php:1839
|
255 |
msgid "Support"
|
256 |
msgstr "Podpora"
|
257 |
|
258 |
+
#: gallery-plugin.php:1878
|
259 |
msgid "Updating images..."
|
260 |
msgstr "Nahrávanie obrázkov..."
|
261 |
|
262 |
+
#: gallery-plugin.php:1879
|
263 |
#, fuzzy
|
264 |
msgid "No images found."
|
265 |
msgstr "Obrázok nebol nájdený"
|
266 |
|
267 |
+
#: gallery-plugin.php:1880
|
268 |
#, fuzzy
|
269 |
msgid "All images were updated."
|
270 |
msgstr "Všetky obrázky boli nahraté"
|
271 |
|
272 |
+
#: gallery-plugin.php:1881
|
273 |
msgid "Error."
|
274 |
msgstr "Chyba"
|
275 |
|
276 |
+
#: gallery-plugin.php:1893
|
277 |
msgid ""
|
278 |
"You are about to remove these items from this gallery.\n"
|
279 |
" 'Cancel' to stop, 'OK' to delete."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1894
|
283 |
msgid ""
|
284 |
"You are about to remove this image from the gallery.\n"
|
285 |
" 'Cancel' to stop, 'OK' to delete."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: gallery-plugin.php:1895
|
289 |
msgid ""
|
290 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
291 |
"switching?"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: gallery-plugin.php:1896
|
295 |
msgid "Insert Media"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1897
|
299 |
msgid "Insert"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: gallery-plugin.php:1898
|
303 |
+
msgid "Gallery has been successfully added!"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
307 |
msgid "Image size not defined"
|
308 |
msgstr "Veľkosť obrázka nebola definovaná"
|
309 |
|
310 |
+
#: gallery-plugin.php:2455
|
311 |
#, fuzzy
|
312 |
msgid ""
|
313 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
314 |
"reload images manually."
|
315 |
msgstr "Môžete nahrať iba PNG, JPEG, GIF, WPMP alebo XBM súbory."
|
316 |
|
317 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
318 |
msgid "Invalid path"
|
319 |
msgstr "Neplatná cesta"
|
320 |
|
321 |
+
#: gallery-plugin.php:2607
|
322 |
msgid "List View"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: gallery-plugin.php:2608
|
326 |
msgid "Grid View"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: gallery-plugin.php:2665
|
330 |
msgid "Filter"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: gallery-plugin.php:2669
|
334 |
msgid "Empty Trash"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: gallery-plugin.php:2692
|
338 |
#, fuzzy
|
339 |
msgid "No images found"
|
340 |
msgstr "Obrázok nebol nájdený"
|
341 |
|
342 |
+
#: gallery-plugin.php:2745
|
343 |
msgid "Select bulk action"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: gallery-plugin.php:2747
|
347 |
msgid "Bulk Actions"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: gallery-plugin.php:2757
|
351 |
msgid "Apply"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:2764
|
355 |
#, fuzzy
|
356 |
msgid "Delete from Gallery"
|
357 |
msgstr "Nová galéria"
|
358 |
|
359 |
+
#: gallery-plugin.php:2773
|
360 |
msgid "Bulk Select"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: gallery-plugin.php:2774
|
364 |
msgid "Cancel Selection"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: gallery-plugin.php:2775
|
368 |
msgid "Delete Selected"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: gallery-plugin.php:2786
|
372 |
msgid "File"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
376 |
msgid "Dimensions"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
380 |
#, fuzzy
|
381 |
msgid "Alt Text"
|
382 |
msgstr "Popisný text"
|
383 |
|
384 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
385 |
msgid "URL"
|
386 |
msgstr "Adresa URL"
|
387 |
|
388 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
389 |
msgid ""
|
390 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
391 |
"to open a full size image."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: gallery-plugin.php:2872
|
395 |
#, fuzzy
|
396 |
msgid "Remove Image from Gallery"
|
397 |
msgstr "Nová galéria"
|
398 |
|
399 |
+
#: gallery-plugin.php:2875
|
400 |
#, fuzzy
|
401 |
msgid "Edit Image Info"
|
402 |
msgstr "ID pripojenia"
|
403 |
|
404 |
+
#: gallery-plugin.php:2876
|
405 |
msgid "Deselect"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: gallery-plugin.php:2888
|
409 |
msgid "File name"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: gallery-plugin.php:2889
|
413 |
msgid "File type"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: gallery-plugin.php:2914
|
417 |
msgid "Description"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: gallery-plugin.php:2920
|
421 |
#, fuzzy
|
422 |
msgid "Lightbox Button URL"
|
423 |
msgstr "pozadie Lightboxu"
|
424 |
|
425 |
+
#: gallery-plugin.php:2927
|
426 |
msgid "New Tab"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: gallery-plugin.php:2929
|
430 |
msgid "Enable to open URLs above in a new tab."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: gallery-plugin.php:2934
|
434 |
msgid "Go Pro"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: gallery-plugin.php:2940
|
438 |
msgid "Edit more details"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: gallery-plugin.php:2942
|
442 |
#, fuzzy
|
443 |
msgid "Remove from Gallery"
|
444 |
msgstr "Nová galéria"
|
445 |
|
446 |
+
#: gallery-plugin.php:2978
|
447 |
#, php-format
|
448 |
msgid "Select %s"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: gallery-plugin.php:2991
|
452 |
#, php-format
|
453 |
msgid "Edit “%s”"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: gallery-plugin.php:2999
|
457 |
#, fuzzy
|
458 |
msgid "Edit Attachment Info"
|
459 |
msgstr "ID pripojenia"
|
460 |
|
461 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
462 |
msgid "Edit"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
466 |
msgid "Trash"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
470 |
msgid "Delete Permanently"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
474 |
#, php-format
|
475 |
msgid "View “%s”"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
479 |
msgid "View"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:3048
|
483 |
#, fuzzy
|
484 |
msgid "Attach"
|
485 |
msgstr "ID pripojenia"
|
486 |
|
487 |
+
#: gallery-plugin.php:3056
|
488 |
msgid "Restore"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: gallery-plugin.php:3086
|
492 |
msgid "A list or dropdown of Gallery categories."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:3131
|
496 |
msgid "Select Gallery Category"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:3189
|
500 |
#, fuzzy
|
501 |
msgid "Title:"
|
502 |
msgstr "Nadpis"
|
503 |
|
504 |
+
#: gallery-plugin.php:3192
|
505 |
msgid "Display as dropdown"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: gallery-plugin.php:3194
|
509 |
msgid "Show gallery counts"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: gallery-plugin.php:3196
|
513 |
msgid "Show hierarchy"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: gallery-plugin.php:3312
|
517 |
msgid "Warning"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: gallery-plugin.php:3312
|
521 |
msgid "You can add only images to the gallery"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
525 |
#, fuzzy
|
526 |
msgid "no title"
|
527 |
msgstr "Nadpis"
|
528 |
|
529 |
+
#: gallery-plugin.php:3377
|
530 |
#, fuzzy
|
531 |
msgid ""
|
532 |
"Display an album image with the description and the link to a single gallery "
|
535 |
"Ak chcete zobraziť krátky popis obsahujúci náhľad a odkaz na vlastnú stŕnaku "
|
536 |
"galérie"
|
537 |
|
538 |
+
#: gallery-plugin.php:3381
|
539 |
#, fuzzy
|
540 |
msgid "Sorry, no gallery found."
|
541 |
msgstr "Prepáčte, nič som nenašiel."
|
569 |
msgid "License Key"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
573 |
#, fuzzy
|
574 |
msgid "Settings saved"
|
575 |
msgstr "Nastavenia boli uložené."
|
576 |
|
577 |
+
#: includes/class-gllr-settings.php:256
|
578 |
#, fuzzy
|
579 |
msgid "Please, enable JavaScript in Your browser."
|
580 |
msgstr "Povoľte prosím JavaScript na používanie nahrávania súborov."
|
581 |
|
582 |
+
#: includes/class-gllr-settings.php:260
|
583 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: includes/class-gllr-settings.php:261
|
587 |
#, fuzzy
|
588 |
msgid "Update Images"
|
589 |
msgstr "Nahrávanie obrázkov..."
|
590 |
|
591 |
+
#: includes/class-gllr-settings.php:276
|
592 |
#, fuzzy
|
593 |
msgid "Gallery Images"
|
594 |
msgstr "Veľkosť obrázka galérie"
|
595 |
|
596 |
+
#: includes/class-gllr-settings.php:281
|
597 |
msgid "Images adding requires JavaScript."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/class-gllr-settings.php:284
|
601 |
msgid "Add Media"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/class-gllr-settings.php:293
|
605 |
msgid "The grid view for the Gallery images requires JavaScript."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/class-gllr-settings.php:293
|
609 |
msgid "Switch to the list view"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/class-gllr-settings.php:320
|
613 |
+
#, fuzzy
|
614 |
+
#| msgid "Add gallery to the search"
|
615 |
+
msgid "Add Gallery to the Slider"
|
616 |
+
msgstr "Pridať galériu do hľadania"
|
617 |
+
|
618 |
+
#: includes/class-gllr-settings.php:332
|
619 |
+
#, fuzzy
|
620 |
+
msgid "Activate"
|
621 |
+
msgstr "Plugin aktivovaný"
|
622 |
+
|
623 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
624 |
+
#, fuzzy
|
625 |
+
msgid "Install Now"
|
626 |
+
msgstr "Inštalovať %s"
|
627 |
+
|
628 |
+
#: includes/class-gllr-settings.php:337
|
629 |
+
msgid "Add"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/class-gllr-settings.php:340
|
633 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/class-gllr-settings.php:351
|
637 |
#, fuzzy
|
638 |
msgid "Single Gallery Settings"
|
639 |
msgstr "Nastavenie galérie"
|
640 |
|
641 |
+
#: includes/class-gllr-settings.php:353
|
642 |
#, php-format
|
643 |
msgid "Enable to configure single gallery settings and disable %s."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
647 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
648 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
649 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
650 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
651 |
msgid "Close"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:369
|
655 |
#, fuzzy
|
656 |
msgid "Gallery Layout"
|
657 |
msgstr "Galéria nebola nájdená"
|
658 |
|
659 |
+
#: includes/class-gllr-settings.php:374
|
660 |
msgid "Grid"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:380
|
664 |
msgid "Masonry"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/class-gllr-settings.php:393
|
668 |
msgid "Number of Columns"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: includes/class-gllr-settings.php:396
|
672 |
#, php-format
|
673 |
msgid "Number of gallery columns (default is %s)."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
677 |
#, fuzzy
|
678 |
msgid "Image Size"
|
679 |
msgstr "Veľkosť obrázku"
|
680 |
|
681 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
682 |
msgid "Custom"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: includes/class-gllr-settings.php:408
|
686 |
msgid ""
|
687 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: includes/class-gllr-settings.php:412
|
691 |
#, fuzzy
|
692 |
msgid "Custom Image Size"
|
693 |
msgstr "Veľkosť obrázku"
|
694 |
|
695 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
696 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
697 |
msgid "px"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/class-gllr-settings.php:415
|
701 |
msgid ""
|
702 |
"Adjust these values based on the number of columns in your gallery. This "
|
703 |
"won't effect the full size of your images in the lightbox."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/class-gllr-settings.php:426
|
707 |
#, fuzzy
|
708 |
msgid "Crop Images"
|
709 |
msgstr "Zoradenie obrázkov"
|
710 |
|
711 |
+
#: includes/class-gllr-settings.php:428
|
712 |
msgid ""
|
713 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
714 |
"to resize images automatically using their aspect ratio."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
718 |
#, fuzzy
|
719 |
msgid "Crop Position"
|
720 |
msgstr "Orezať"
|
721 |
|
722 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
723 |
msgid "Select crop position base (by default: center)."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/class-gllr-settings.php:457
|
727 |
#, fuzzy
|
728 |
msgid "Image Title"
|
729 |
msgstr "Veľkosť obrázku"
|
730 |
|
731 |
+
#: includes/class-gllr-settings.php:459
|
732 |
msgid "Enable to display image title along with the gallery image."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/class-gllr-settings.php:470
|
736 |
#, fuzzy
|
737 |
msgid "Image Title Position"
|
738 |
msgstr "Veľkosť obrázka nebola definovaná"
|
739 |
|
740 |
+
#: includes/class-gllr-settings.php:475
|
741 |
#, fuzzy
|
742 |
msgid "Under image"
|
743 |
msgstr "Nahrať obrázky"
|
744 |
|
745 |
+
#: includes/class-gllr-settings.php:481
|
746 |
msgid "On mouse hover"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/class-gllr-settings.php:494
|
750 |
#, fuzzy
|
751 |
msgid "Image Border"
|
752 |
msgstr "Obrázky s rámčekom"
|
753 |
|
754 |
+
#: includes/class-gllr-settings.php:496
|
755 |
msgid ""
|
756 |
"Enable images border using the styles defined for Image Border Size and "
|
757 |
"Color options."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/class-gllr-settings.php:500
|
761 |
#, fuzzy
|
762 |
msgid "Image Border Size"
|
763 |
msgstr "Veľkosť obrázku"
|
764 |
|
765 |
+
#: includes/class-gllr-settings.php:503
|
766 |
#, php-format
|
767 |
msgid "Gallery image border width (default is %s)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/class-gllr-settings.php:507
|
771 |
#, fuzzy
|
772 |
msgid "Image Border Color"
|
773 |
msgstr "Vyberte farbu rámčeka"
|
774 |
|
775 |
+
#: includes/class-gllr-settings.php:520
|
776 |
msgid "Pagination"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/class-gllr-settings.php:523
|
780 |
msgid ""
|
781 |
"Enable pagination for images to limit number of images displayed on a single "
|
782 |
"gallery page."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/class-gllr-settings.php:527
|
786 |
#, fuzzy
|
787 |
msgid "Number of Images"
|
788 |
msgstr "Počet obrázkov v rade"
|
789 |
|
790 |
+
#: includes/class-gllr-settings.php:530
|
791 |
#, php-format
|
792 |
msgid "Number of images displayed per page (default is %d)."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/class-gllr-settings.php:540
|
796 |
#, fuzzy
|
797 |
msgid "Sort Images by"
|
798 |
msgstr "Zoradiť podľa"
|
799 |
|
800 |
+
#: includes/class-gllr-settings.php:543
|
801 |
msgid "Manually (default)"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/class-gllr-settings.php:544
|
805 |
#, fuzzy
|
806 |
msgid "Image ID"
|
807 |
msgstr "Obrázok"
|
808 |
|
809 |
+
#: includes/class-gllr-settings.php:545
|
810 |
msgid "Name"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
814 |
msgid ""
|
815 |
"Select images sorting order in your gallery. By default, you can sort images "
|
816 |
"manually in the images tab."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/class-gllr-settings.php:553
|
820 |
#, fuzzy
|
821 |
msgid "Arrange Images by"
|
822 |
msgstr "Zoradiť podľa"
|
823 |
|
824 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
825 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
829 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/class-gllr-settings.php:562
|
833 |
#, fuzzy
|
834 |
msgid "Back Link"
|
835 |
msgstr "URL spätného odkazu"
|
836 |
|
837 |
+
#: includes/class-gllr-settings.php:564
|
838 |
msgid ""
|
839 |
"Enable to show a back link in a single gallery page which navigate to a "
|
840 |
"previous page."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/class-gllr-settings.php:568
|
844 |
#, fuzzy
|
845 |
msgid "Back Link URL"
|
846 |
msgstr "URL spätného odkazu"
|
847 |
|
848 |
+
#: includes/class-gllr-settings.php:571
|
849 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:575
|
853 |
#, fuzzy
|
854 |
msgid "Back Link Label"
|
855 |
msgstr "URL spätného odkazu"
|
856 |
|
857 |
+
#: includes/class-gllr-settings.php:581
|
858 |
#, fuzzy
|
859 |
msgid "Back Link with Shortcode"
|
860 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
861 |
|
862 |
+
#: includes/class-gllr-settings.php:584
|
863 |
#, fuzzy
|
864 |
msgid "Enable to display a back link on a page where shortcode is used."
|
865 |
msgstr "Zobraziť spatný odkaz v krátkom kóde"
|
866 |
|
867 |
+
#: includes/class-gllr-settings.php:595
|
868 |
#, fuzzy
|
869 |
msgid "Cover Settings"
|
870 |
msgstr "Nastavenie galérie"
|
871 |
|
872 |
+
#: includes/class-gllr-settings.php:600
|
873 |
#, fuzzy
|
874 |
msgid "Galleries Page"
|
875 |
msgstr "Galérie"
|
876 |
|
877 |
+
#: includes/class-gllr-settings.php:608
|
878 |
#, fuzzy
|
879 |
msgid "Base page where all existing galleries will be displayed."
|
880 |
msgstr ""
|
881 |
"Ak aktualizujete na Pro verziu, všetky vaše nastavanie a galérie budú "
|
882 |
"uložené."
|
883 |
|
884 |
+
#: includes/class-gllr-settings.php:612
|
885 |
msgid "Albums Displaying"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:615
|
889 |
msgid "Column"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: includes/class-gllr-settings.php:616
|
893 |
msgid "Rows"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/class-gllr-settings.php:618
|
897 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: includes/class-gllr-settings.php:622
|
901 |
msgid "Column Alignment"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/class-gllr-settings.php:625
|
905 |
msgid "Left"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/class-gllr-settings.php:626
|
909 |
msgid "Right"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: includes/class-gllr-settings.php:627
|
913 |
msgid "Center"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: includes/class-gllr-settings.php:629
|
917 |
msgid "Select the column alignment."
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:633
|
921 |
#, fuzzy
|
922 |
msgid "Cover Image Size"
|
923 |
msgstr "Veľkosť obrázku"
|
924 |
|
925 |
+
#: includes/class-gllr-settings.php:641
|
926 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/class-gllr-settings.php:645
|
930 |
msgid "Custom Cover Image Size"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/class-gllr-settings.php:658
|
934 |
msgid "Crop Cover Images"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-gllr-settings.php:660
|
938 |
msgid ""
|
939 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
940 |
"Disable to resize images automatically using their aspect ratio."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: includes/class-gllr-settings.php:689
|
944 |
#, fuzzy
|
945 |
msgid "Cover Image Border"
|
946 |
msgstr "Obrázky s rámčekom"
|
947 |
|
948 |
+
#: includes/class-gllr-settings.php:691
|
949 |
msgid ""
|
950 |
"Enable cover images border using the styles defined for Image Border Size "
|
951 |
"and Color."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: includes/class-gllr-settings.php:695
|
955 |
msgid "Cover Image Border Size"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:698
|
959 |
#, php-format
|
960 |
msgid "Cover image border width (default is %s)"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/class-gllr-settings.php:702
|
964 |
#, fuzzy
|
965 |
msgid "Cover Image Border Color"
|
966 |
msgstr "Vyberte farbu rámčeka"
|
967 |
|
968 |
+
#: includes/class-gllr-settings.php:708
|
969 |
#, fuzzy
|
970 |
msgid "Sort Albums by"
|
971 |
msgstr "Zoradiť podľa"
|
972 |
|
973 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
974 |
msgid "Select galleries sorting order in your galleries page."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: includes/class-gllr-settings.php:724
|
978 |
msgid "Arrange Albums by"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/class-gllr-settings.php:733
|
982 |
#, fuzzy
|
983 |
msgid "Read More Link Label"
|
984 |
msgstr "Text odkazu pre čítaj dalej"
|
985 |
|
986 |
+
#: includes/class-gllr-settings.php:746
|
987 |
msgid "Instant Lightbox"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/class-gllr-settings.php:749
|
991 |
msgid ""
|
992 |
"Enable to display all images in the lightbox after clicking cover image or "
|
993 |
"URL instead of going to a single gallery page."
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/class-gllr-settings.php:763
|
997 |
#, fuzzy
|
998 |
msgid "Lightbox Settings"
|
999 |
msgstr "pozadie Lightboxu"
|
1000 |
|
1001 |
+
#: includes/class-gllr-settings.php:768
|
1002 |
+
msgid "Unclickable Thumbnail Images"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: includes/class-gllr-settings.php:771
|
1006 |
+
msgid ""
|
1007 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1008 |
+
"URLs. This option also disables Lightbox."
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: includes/class-gllr-settings.php:775
|
1012 |
msgid "Enable Lightbox"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/class-gllr-settings.php:778
|
1016 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/class-gllr-settings.php:796
|
1020 |
msgid ""
|
1021 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1022 |
"will display the original, full size image."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/class-gllr-settings.php:800
|
1026 |
msgid "Overlay Color"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/class-gllr-settings.php:806
|
1030 |
msgid "Overlay Opacity"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/class-gllr-settings.php:809
|
1034 |
#, php-format
|
1035 |
msgid ""
|
1036 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1037 |
"is %s)."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: includes/class-gllr-settings.php:819
|
1041 |
#, fuzzy
|
1042 |
msgid "Slideshow"
|
1043 |
msgstr "Spustiť Slideshow"
|
1044 |
|
1045 |
+
#: includes/class-gllr-settings.php:821
|
1046 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/class-gllr-settings.php:825
|
1050 |
#, fuzzy
|
1051 |
msgid "Slideshow Duration"
|
1052 |
msgstr "Trvanie slideshow"
|
1053 |
|
1054 |
+
#: includes/class-gllr-settings.php:827
|
1055 |
msgid "ms"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/class-gllr-settings.php:828
|
1059 |
msgid "Slideshow interval duration between two images."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/class-gllr-settings.php:839
|
1063 |
#, fuzzy
|
1064 |
msgid "Lightbox Helpers"
|
1065 |
msgstr "pozadie Lightboxu"
|
1066 |
|
1067 |
+
#: includes/class-gllr-settings.php:841
|
1068 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/class-gllr-settings.php:845
|
1072 |
#, fuzzy
|
1073 |
msgid "Lightbox Thumbnails"
|
1074 |
msgstr "Veľkosť obrázku pre obal albumu"
|
1075 |
|
1076 |
+
#: includes/class-gllr-settings.php:847
|
1077 |
msgid "Enable to use a lightbox helper navigation between images."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/class-gllr-settings.php:851
|
1081 |
msgid "Lightbox Thumbnails Position"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/class-gllr-settings.php:854
|
1085 |
#, fuzzy
|
1086 |
msgid "Top"
|
1087 |
msgstr "hore"
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:859
|
1090 |
#, fuzzy
|
1091 |
msgid "Lightbox Button Label"
|
1092 |
msgstr "pozadie Lightboxu"
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:861
|
1095 |
#, fuzzy
|
1096 |
msgid "Read More"
|
1097 |
msgstr "Viac"
|
1098 |
|
1099 |
+
#: includes/class-gllr-settings.php:871
|
1100 |
#, fuzzy
|
1101 |
msgid "Download Button"
|
1102 |
msgstr "Sťiahnuť vlastné hľadanie"
|
1103 |
|
1104 |
+
#: includes/class-gllr-settings.php:873
|
1105 |
msgid "Enable to display download button."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/class-gllr-settings.php:877
|
1109 |
msgid "Single Lightbox"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/class-gllr-settings.php:879
|
1113 |
#, fuzzy
|
1114 |
msgid ""
|
1115 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1116 |
"page."
|
1117 |
msgstr "Použiť jeden lightbox pre viac galérií na jednej strane"
|
1118 |
|
1119 |
+
#: includes/class-gllr-settings.php:889
|
1120 |
msgid "Social Sharing Buttons Settings"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: includes/class-gllr-settings.php:898
|
1124 |
msgid "Social Buttons"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/class-gllr-settings.php:900
|
1128 |
msgid "Enable social sharing buttons in the lightbox."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/class-gllr-settings.php:904
|
1132 |
msgid "Social Networks"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/class-gllr-settings.php:915
|
1136 |
#, fuzzy
|
1137 |
msgid "Counter"
|
1138 |
msgstr "Trvanie slideshow"
|
1139 |
|
1140 |
+
#: includes/class-gllr-settings.php:918
|
1141 |
msgid ""
|
1142 |
"Enable to show likes counter for each social button (not available for "
|
1143 |
"Google +1)."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/class-gllr-settings.php:933
|
1147 |
#, fuzzy
|
1148 |
msgid "Demo Data"
|
1149 |
msgstr "Inštalovať %s"
|
1150 |
|
1151 |
+
#: includes/class-gllr-settings.php:935
|
1152 |
msgid ""
|
1153 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1154 |
"page with a list of all galleries."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/class-gllr-settings.php:973
|
1158 |
#, fuzzy
|
1159 |
msgid "Gallery Post Type"
|
1160 |
msgstr "Krátky kód galérie"
|
1161 |
|
1162 |
+
#: includes/class-gllr-settings.php:975
|
1163 |
msgid ""
|
1164 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1165 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1167 |
"used."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/class-gllr-settings.php:987
|
1171 |
#, fuzzy
|
1172 |
msgid "Gallery Slug"
|
1173 |
msgstr "Galéria"
|
1174 |
|
1175 |
+
#: includes/class-gllr-settings.php:991
|
1176 |
msgid "Enter the unique gallery slug."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/class-gllr-settings.php:1007
|
1180 |
#, fuzzy
|
1181 |
msgid "Activate Now"
|
1182 |
msgstr "Plugin aktivovaný"
|
1183 |
|
1184 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgid "Enable to include galleries to your website search."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/class-gllr-settings.php:1025
|
1189 |
#, php-format
|
1190 |
msgid "%s is required."
|
1191 |
msgstr ""
|
1324 |
#~ msgid "Learn more"
|
1325 |
#~ msgstr "Viac"
|
1326 |
|
|
|
|
|
|
|
|
|
1327 |
#, fuzzy
|
1328 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1329 |
#~ msgstr "Zobraziť Like tlačítko v Lightbox"
|
1453 |
#~ msgid "(Full URL to custom page)"
|
1454 |
#~ msgstr "(Celé URL na stránku)"
|
1455 |
|
|
|
|
|
|
|
1456 |
#, fuzzy
|
1457 |
#~ msgid "Single gallery view"
|
1458 |
#~ msgstr "Skratka pre položku galérie"
|
1512 |
#~ msgid "Select a background color"
|
1513 |
#~ msgstr "Vyberte farbu pozadia"
|
1514 |
|
|
|
|
|
|
|
|
|
1515 |
#~ msgid "Width (in px)"
|
1516 |
#~ msgstr "Šírka (v px)"
|
1517 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
@@ -14,254 +14,301 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Nastavitve galerije"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Nastavitve galerije"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "See images »"
|
39 |
msgstr "Poglej slike »"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerije"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerija"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Dodaj novo Galerijo"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Uredi Galerijo"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nova Galerija"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Pregled Galerije"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galerije"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Galerija ni bila najdena"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Velikost slike v galeriji"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Velikost slike v galeriji"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Dodaj novo Galerijo"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Kratka koda do galerije"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#, fuzzy
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Kratka koda do galerije"
|
162 |
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "All Gallery Categories"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "You can't delete default gallery category."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Sorry, nothing found."
|
173 |
msgstr "Žal ni zadetkov"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Featured Image"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
181 |
-
msgid "Title"
|
182 |
-
msgstr "Naslov"
|
183 |
-
|
184 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
185 |
#, fuzzy
|
186 |
msgid "Images"
|
187 |
msgstr "Poglej slike »"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
msgid "Author"
|
191 |
-
msgstr "Avtor"
|
192 |
-
|
193 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
194 |
-
#: includes/class-gllr-settings.php:680
|
195 |
-
msgid "Date"
|
196 |
-
msgstr "Datum"
|
197 |
-
|
198 |
-
#: gallery-plugin.php:1688
|
199 |
#, php-format
|
200 |
msgid "%s Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "FAQ"
|
210 |
msgstr "FAQ"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "Support"
|
214 |
msgstr "Podpora"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Updating images..."
|
218 |
msgstr "Posodabljam slike..."
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "No images found."
|
223 |
msgstr "Slike niso bile najdene"
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
#, fuzzy
|
227 |
msgid "All images were updated."
|
228 |
msgstr "Vse slike so posodobljene"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "Error."
|
232 |
msgstr "Napaka."
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid ""
|
236 |
"You are about to remove these items from this gallery.\n"
|
237 |
" 'Cancel' to stop, 'OK' to delete."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid ""
|
242 |
"You are about to remove this image from the gallery.\n"
|
243 |
" 'Cancel' to stop, 'OK' to delete."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid ""
|
248 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
249 |
"switching?"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Insert Media"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Insert"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
261 |
msgid "Image size not defined"
|
262 |
msgstr "Velikost slike ni podana"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid ""
|
267 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
@@ -270,224 +317,220 @@ msgstr ""
|
|
270 |
"Posodobiti je možno le PNG, JPEG, GIF, WPMP ali XBM tipe datotek. Za vse "
|
271 |
"ostale prosimo, da posodobiš slike ročno."
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Invalid path"
|
275 |
msgstr "Napačna pot"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "List View"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Grid View"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid "Filter"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Empty Trash"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
#, fuzzy
|
295 |
msgid "No images found"
|
296 |
msgstr "Slike niso bile najdene"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Select bulk action"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "Bulk Actions"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Apply"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: gallery-plugin.php:
|
311 |
#, fuzzy
|
312 |
msgid "Delete from Gallery"
|
313 |
msgstr "Nova Galerija"
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "Bulk Select"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Cancel Selection"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
msgid "Delete Selected"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: gallery-plugin.php:
|
328 |
msgid "File"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
msgid "Dimensions"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
#, fuzzy
|
337 |
msgid "Alt Text"
|
338 |
msgstr "Alt oznaka"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "URL"
|
342 |
msgstr "URL"
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid ""
|
346 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
347 |
"to open a full size image."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
#, fuzzy
|
352 |
msgid "Remove Image from Gallery"
|
353 |
msgstr "Nova Galerija"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
#, fuzzy
|
357 |
msgid "Edit Image Info"
|
358 |
msgstr "ID priloge"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Deselect"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "File name"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "File type"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Description"
|
374 |
msgstr "Opis"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "Lightbox Button URL"
|
379 |
msgstr "Lightbox povezava"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "New Tab"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Enable to open URLs above in a new tab."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
#, fuzzy
|
391 |
msgid "Go Pro"
|
392 |
msgstr "Pojdi na PRO"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Edit more details"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, fuzzy
|
400 |
msgid "Remove from Gallery"
|
401 |
msgstr "Nova Galerija"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, php-format
|
405 |
msgid "Select %s"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
#, php-format
|
410 |
msgid "Edit “%s”"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
#, fuzzy
|
415 |
msgid "Edit Attachment Info"
|
416 |
msgstr "ID priloge"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Edit"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Trash"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Delete Permanently"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
#, php-format
|
432 |
msgid "View “%s”"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "View"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
#, fuzzy
|
441 |
msgid "Attach"
|
442 |
msgstr "ID priloge"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
msgid "Restore"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "A list or dropdown of Gallery categories."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "Select Gallery Category"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
#, fuzzy
|
458 |
msgid "Title:"
|
459 |
msgstr "Naslov"
|
460 |
|
461 |
-
#: gallery-plugin.php:
|
462 |
msgid "Display as dropdown"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: gallery-plugin.php:
|
466 |
msgid "Show gallery counts"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "Show hierarchy"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "Warning"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "You can add only images to the gallery"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
-
msgid "or"
|
483 |
-
msgstr "ali"
|
484 |
-
|
485 |
-
#: gallery-plugin.php:3181
|
486 |
#, fuzzy
|
487 |
msgid "no title"
|
488 |
msgstr "Naslov"
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
#, fuzzy
|
492 |
msgid ""
|
493 |
"Display an album image with the description and the link to a single gallery "
|
@@ -496,7 +539,7 @@ msgstr ""
|
|
496 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
497 |
"galerije kopiraj spodnjo povezavo."
|
498 |
|
499 |
-
#: gallery-plugin.php:
|
500 |
#, fuzzy
|
501 |
msgid "Sorry, no gallery found."
|
502 |
msgstr "Žal ni zadetkov"
|
@@ -530,584 +573,596 @@ msgstr ""
|
|
530 |
msgid "License Key"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/class-gllr-settings.php:
|
534 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: includes/class-gllr-settings.php:247
|
538 |
#, fuzzy
|
539 |
msgid "Settings saved"
|
540 |
msgstr "Nastavitve so shranjene"
|
541 |
|
542 |
-
#: includes/class-gllr-settings.php:
|
543 |
#, fuzzy
|
544 |
msgid "Please, enable JavaScript in Your browser."
|
545 |
msgstr "Prosimo vklopite Javascript za uporabo nalagalnika datotek."
|
546 |
|
547 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
548 |
#, fuzzy
|
549 |
msgid "Update Images"
|
550 |
msgstr "Posodabljam slike..."
|
551 |
|
552 |
-
#: includes/class-gllr-settings.php:
|
553 |
#, fuzzy
|
554 |
msgid "Gallery Images"
|
555 |
msgstr "Velikost slike v galeriji"
|
556 |
|
557 |
-
#: includes/class-gllr-settings.php:
|
558 |
msgid "Images adding requires JavaScript."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-gllr-settings.php:
|
562 |
msgid "Add Media"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-gllr-settings.php:
|
566 |
msgid "The grid view for the Gallery images requires JavaScript."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-gllr-settings.php:
|
570 |
msgid "Switch to the list view"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
#, fuzzy
|
575 |
msgid "Single Gallery Settings"
|
576 |
msgstr "Nastavitve galerije"
|
577 |
|
578 |
-
#: includes/class-gllr-settings.php:
|
579 |
#, php-format
|
580 |
msgid "Enable to configure single gallery settings and disable %s."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
-
#: includes/class-gllr-settings.php:
|
585 |
-
#: includes/class-gllr-settings.php:
|
586 |
-
#: includes/class-gllr-settings.php:
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
msgid "Close"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
#, fuzzy
|
593 |
msgid "Gallery Layout"
|
594 |
msgstr "Galerija ni bila najdena"
|
595 |
|
596 |
-
#: includes/class-gllr-settings.php:
|
597 |
msgid "Grid"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/class-gllr-settings.php:
|
601 |
msgid "Masonry"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
msgid "Number of Columns"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
#, php-format
|
610 |
msgid "Number of gallery columns (default is %s)."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/class-gllr-settings.php:
|
614 |
#, fuzzy
|
615 |
msgid "Image Size"
|
616 |
msgstr "Velikost slike"
|
617 |
|
618 |
-
#: includes/class-gllr-settings.php:
|
619 |
msgid "Custom"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: includes/class-gllr-settings.php:
|
623 |
msgid ""
|
624 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/class-gllr-settings.php:
|
628 |
#, fuzzy
|
629 |
msgid "Custom Image Size"
|
630 |
msgstr "Velikost slike"
|
631 |
|
632 |
-
#: includes/class-gllr-settings.php:
|
633 |
-
#: includes/class-gllr-settings.php:
|
634 |
msgid "px"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: includes/class-gllr-settings.php:
|
638 |
msgid ""
|
639 |
"Adjust these values based on the number of columns in your gallery. This "
|
640 |
"won't effect the full size of your images in the lightbox."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
#, fuzzy
|
645 |
msgid "Crop Images"
|
646 |
msgstr "Preuredi slike"
|
647 |
|
648 |
-
#: includes/class-gllr-settings.php:
|
649 |
msgid ""
|
650 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
651 |
"to resize images automatically using their aspect ratio."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
#, fuzzy
|
656 |
msgid "Crop Position"
|
657 |
msgstr "Pozicija za obrez"
|
658 |
|
659 |
-
#: includes/class-gllr-settings.php:
|
660 |
msgid "Select crop position base (by default: center)."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/class-gllr-settings.php:
|
664 |
#, fuzzy
|
665 |
msgid "Image Title"
|
666 |
msgstr "Velikost slike"
|
667 |
|
668 |
-
#: includes/class-gllr-settings.php:
|
669 |
msgid "Enable to display image title along with the gallery image."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
#, fuzzy
|
674 |
msgid "Image Title Position"
|
675 |
msgstr "Velikost slike ni podana"
|
676 |
|
677 |
-
#: includes/class-gllr-settings.php:
|
678 |
#, fuzzy
|
679 |
msgid "Under image"
|
680 |
msgstr "Posodobi slike"
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
msgid "On mouse hover"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
#, fuzzy
|
688 |
msgid "Image Border"
|
689 |
msgstr "Slike z okvirjem"
|
690 |
|
691 |
-
#: includes/class-gllr-settings.php:
|
692 |
msgid ""
|
693 |
"Enable images border using the styles defined for Image Border Size and "
|
694 |
"Color options."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/class-gllr-settings.php:
|
698 |
#, fuzzy
|
699 |
msgid "Image Border Size"
|
700 |
msgstr "Velikost slike"
|
701 |
|
702 |
-
#: includes/class-gllr-settings.php:
|
703 |
#, php-format
|
704 |
msgid "Gallery image border width (default is %s)"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/class-gllr-settings.php:
|
708 |
#, fuzzy
|
709 |
msgid "Image Border Color"
|
710 |
msgstr "Izberi barvo okvirja"
|
711 |
|
712 |
-
#: includes/class-gllr-settings.php:
|
713 |
msgid "Pagination"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/class-gllr-settings.php:
|
717 |
msgid ""
|
718 |
"Enable pagination for images to limit number of images displayed on a single "
|
719 |
"gallery page."
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/class-gllr-settings.php:
|
723 |
#, fuzzy
|
724 |
msgid "Number of Images"
|
725 |
msgstr "Število slik v vrsti"
|
726 |
|
727 |
-
#: includes/class-gllr-settings.php:
|
728 |
#, php-format
|
729 |
msgid "Number of images displayed per page (default is %d)."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
#, fuzzy
|
734 |
msgid "Sort Images by"
|
735 |
msgstr "Uredi slike po"
|
736 |
|
737 |
-
#: includes/class-gllr-settings.php:
|
738 |
msgid "Manually (default)"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/class-gllr-settings.php:
|
742 |
#, fuzzy
|
743 |
msgid "Image ID"
|
744 |
msgstr "Slika"
|
745 |
|
746 |
-
#: includes/class-gllr-settings.php:
|
747 |
msgid "Name"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/class-gllr-settings.php:
|
751 |
-
msgid "Random"
|
752 |
-
msgstr "Naključno"
|
753 |
-
|
754 |
-
#: includes/class-gllr-settings.php:516
|
755 |
msgid ""
|
756 |
"Select images sorting order in your gallery. By default, you can sort images "
|
757 |
"manually in the images tab."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
#, fuzzy
|
762 |
msgid "Arrange Images by"
|
763 |
msgstr "Uredi slike po"
|
764 |
|
765 |
-
#: includes/class-gllr-settings.php:
|
766 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-gllr-settings.php:
|
770 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/class-gllr-settings.php:
|
774 |
#, fuzzy
|
775 |
msgid "Back Link"
|
776 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
msgid ""
|
780 |
"Enable to show a back link in a single gallery page which navigate to a "
|
781 |
"previous page."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: includes/class-gllr-settings.php:
|
785 |
#, fuzzy
|
786 |
msgid "Back Link URL"
|
787 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
788 |
|
789 |
-
#: includes/class-gllr-settings.php:
|
790 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
#, fuzzy
|
795 |
msgid "Back Link Label"
|
796 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
#, fuzzy
|
800 |
msgid "Back Link with Shortcode"
|
801 |
msgstr "Prikaži povratni link v kratki kodi"
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
#, fuzzy
|
805 |
msgid "Enable to display a back link on a page where shortcode is used."
|
806 |
msgstr "Prikaži povratni link v kratki kodi"
|
807 |
|
808 |
-
#: includes/class-gllr-settings.php:
|
809 |
#, fuzzy
|
810 |
msgid "Cover Settings"
|
811 |
msgstr "Nastavitve galerije"
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
#, fuzzy
|
815 |
msgid "Galleries Page"
|
816 |
msgstr "Galerije"
|
817 |
|
818 |
-
#: includes/class-gllr-settings.php:
|
819 |
#, fuzzy
|
820 |
msgid "Base page where all existing galleries will be displayed."
|
821 |
msgstr ""
|
822 |
"V primeru posodobitve na PRO verzijo se bodo vse nastavitve in galerije "
|
823 |
"ohranile."
|
824 |
|
825 |
-
#: includes/class-gllr-settings.php:
|
826 |
msgid "Albums Displaying"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/class-gllr-settings.php:
|
830 |
msgid "Column"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
msgid "Rows"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Column Alignment"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Left"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Right"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
msgid "Center"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/class-gllr-settings.php:
|
858 |
msgid "Select the column alignment."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/class-gllr-settings.php:
|
862 |
#, fuzzy
|
863 |
msgid "Cover Image Size"
|
864 |
msgstr "Velikost slike"
|
865 |
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/class-gllr-settings.php:
|
871 |
msgid "Custom Cover Image Size"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: includes/class-gllr-settings.php:
|
875 |
msgid "Crop Cover Images"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/class-gllr-settings.php:
|
879 |
msgid ""
|
880 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
881 |
"Disable to resize images automatically using their aspect ratio."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
#, fuzzy
|
886 |
msgid "Cover Image Border"
|
887 |
msgstr "Slike z okvirjem"
|
888 |
|
889 |
-
#: includes/class-gllr-settings.php:
|
890 |
msgid ""
|
891 |
"Enable cover images border using the styles defined for Image Border Size "
|
892 |
"and Color."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: includes/class-gllr-settings.php:
|
896 |
msgid "Cover Image Border Size"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:
|
900 |
#, php-format
|
901 |
msgid "Cover image border width (default is %s)"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/class-gllr-settings.php:
|
905 |
#, fuzzy
|
906 |
msgid "Cover Image Border Color"
|
907 |
msgstr "Izberi barvo okvirja"
|
908 |
|
909 |
-
#: includes/class-gllr-settings.php:
|
910 |
#, fuzzy
|
911 |
msgid "Sort Albums by"
|
912 |
msgstr "Uredi slike po"
|
913 |
|
914 |
-
#: includes/class-gllr-settings.php:
|
915 |
-
#, fuzzy
|
916 |
-
msgid "Gallery ID"
|
917 |
-
msgstr "Galerija"
|
918 |
-
|
919 |
-
#: includes/class-gllr-settings.php:681
|
920 |
-
msgid "Last modified date"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: includes/class-gllr-settings.php:682
|
924 |
-
msgid "Comment count"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: includes/class-gllr-settings.php:683
|
928 |
-
msgid "\"Order\" field on the gallery edit page"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: includes/class-gllr-settings.php:687
|
932 |
msgid "Select galleries sorting order in your galleries page."
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: includes/class-gllr-settings.php:
|
936 |
msgid "Arrange Albums by"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
940 |
#, fuzzy
|
941 |
msgid "Read More Link Label"
|
942 |
msgstr "Tekst v \"Read More\" gumbu"
|
943 |
|
944 |
-
#: includes/class-gllr-settings.php:
|
945 |
msgid "Instant Lightbox"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/class-gllr-settings.php:
|
949 |
msgid ""
|
950 |
"Enable to display all images in the lightbox after clicking cover image or "
|
951 |
"URL instead of going to a single gallery page."
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/class-gllr-settings.php:
|
955 |
#, fuzzy
|
956 |
msgid "Lightbox Settings"
|
957 |
msgstr "Lightbox povezava"
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
960 |
msgid "Enable Lightbox"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: includes/class-gllr-settings.php:
|
968 |
msgid ""
|
969 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
970 |
"will display the original, full size image."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
msgid "Overlay Color"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/class-gllr-settings.php:
|
978 |
msgid "Overlay Opacity"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/class-gllr-settings.php:
|
982 |
#, php-format
|
983 |
msgid ""
|
984 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
985 |
"is %s)."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/class-gllr-settings.php:
|
989 |
#, fuzzy
|
990 |
msgid "Slideshow"
|
991 |
msgstr "Začni projekcijo"
|
992 |
|
993 |
-
#: includes/class-gllr-settings.php:
|
994 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/class-gllr-settings.php:
|
998 |
#, fuzzy
|
999 |
msgid "Slideshow Duration"
|
1000 |
msgstr "Interval projekcije slik"
|
1001 |
|
1002 |
-
#: includes/class-gllr-settings.php:
|
1003 |
msgid "ms"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/class-gllr-settings.php:
|
1007 |
msgid "Slideshow interval duration between two images."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/class-gllr-settings.php:
|
1011 |
#, fuzzy
|
1012 |
msgid "Lightbox Helpers"
|
1013 |
msgstr "Lightbox pomočnik"
|
1014 |
|
1015 |
-
#: includes/class-gllr-settings.php:
|
1016 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: includes/class-gllr-settings.php:
|
1020 |
#, fuzzy
|
1021 |
msgid "Lightbox Thumbnails"
|
1022 |
msgstr "Velikost slike albuma"
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
msgid "Enable to use a lightbox helper navigation between images."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
1029 |
msgid "Lightbox Thumbnails Position"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Top"
|
1035 |
msgstr "vrh"
|
1036 |
|
1037 |
-
#: includes/class-gllr-settings.php:
|
1038 |
#, fuzzy
|
1039 |
msgid "Lightbox Button Label"
|
1040 |
msgstr "Lightbox povezava"
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Read More"
|
1045 |
msgstr "Preberi več"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
#, fuzzy
|
1049 |
msgid "Download Button"
|
1050 |
msgstr "Prensei \"Custom Search\""
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
msgid "Enable to display download button."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/class-gllr-settings.php:
|
1057 |
msgid "Single Lightbox"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/class-gllr-settings.php:
|
1061 |
#, fuzzy
|
1062 |
msgid ""
|
1063 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1064 |
"page."
|
1065 |
msgstr "Uporabi lightbox enkratno za vse galerije na strani"
|
1066 |
|
1067 |
-
#: includes/class-gllr-settings.php:
|
1068 |
msgid "Social Sharing Buttons Settings"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/class-gllr-settings.php:
|
1072 |
msgid "Social Buttons"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-gllr-settings.php:
|
1076 |
msgid "Enable social sharing buttons in the lightbox."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/class-gllr-settings.php:
|
1080 |
msgid "Social Networks"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/class-gllr-settings.php:
|
1084 |
#, fuzzy
|
1085 |
msgid "Counter"
|
1086 |
msgstr "Interval projekcije slik"
|
1087 |
|
1088 |
-
#: includes/class-gllr-settings.php:
|
1089 |
msgid ""
|
1090 |
"Enable to show likes counter for each social button (not available for "
|
1091 |
"Google +1)."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
#, fuzzy
|
1096 |
msgid "Demo Data"
|
1097 |
msgstr "Instalacija %s"
|
1098 |
|
1099 |
-
#: includes/class-gllr-settings.php:
|
1100 |
msgid ""
|
1101 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1102 |
"page with a list of all galleries."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/class-gllr-settings.php:
|
1106 |
#, fuzzy
|
1107 |
msgid "Gallery Post Type"
|
1108 |
msgstr "Kratka koda do galerije"
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
msgid ""
|
1112 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1113 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1115,30 +1170,25 @@ msgid ""
|
|
1115 |
"used."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
#, fuzzy
|
1120 |
msgid "Gallery Slug"
|
1121 |
msgstr "Galerija"
|
1122 |
|
1123 |
-
#: includes/class-gllr-settings.php:
|
1124 |
msgid "Enter the unique gallery slug."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/class-gllr-settings.php:
|
1128 |
#, fuzzy
|
1129 |
msgid "Activate Now"
|
1130 |
msgstr "Aktivirani moduli"
|
1131 |
|
1132 |
-
#: includes/class-gllr-settings.php:
|
1133 |
-
#, fuzzy
|
1134 |
-
msgid "Install Now"
|
1135 |
-
msgstr "Instalacija %s"
|
1136 |
-
|
1137 |
-
#: includes/class-gllr-settings.php:965
|
1138 |
msgid "Enable to include galleries to your website search."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/class-gllr-settings.php:
|
1142 |
#, php-format
|
1143 |
msgid "%s is required."
|
1144 |
msgstr ""
|
@@ -1233,6 +1283,9 @@ msgstr ""
|
|
1233 |
msgid "Yes, install demo now"
|
1234 |
msgstr "Instalacija %s"
|
1235 |
|
|
|
|
|
|
|
1236 |
#, fuzzy
|
1237 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1238 |
#~ msgstr "Razporejanje glede na razporeditev v predstavnostni knjižici"
|
@@ -1283,9 +1336,6 @@ msgstr "Instalacija %s"
|
|
1283 |
#~ msgid "Learn more"
|
1284 |
#~ msgstr "Preberi več"
|
1285 |
|
1286 |
-
#~ msgid "Activate"
|
1287 |
-
#~ msgstr "Aktivirani moduli"
|
1288 |
-
|
1289 |
#, fuzzy
|
1290 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1291 |
#~ msgstr "Prikaži gumb \"Like\" tudi v lightbox-u"
|
@@ -1424,9 +1474,6 @@ msgstr "Instalacija %s"
|
|
1424 |
#~ msgid "(Full URL to custom page)"
|
1425 |
#~ msgstr "(Polni URL za uporabo na strani)"
|
1426 |
|
1427 |
-
#~ msgid "Add gallery to the search"
|
1428 |
-
#~ msgstr "Dodaj galerijo k iskalniku"
|
1429 |
-
|
1430 |
#~ msgid "Using"
|
1431 |
#~ msgstr "Se uporablja"
|
1432 |
|
@@ -1504,10 +1551,6 @@ msgstr "Instalacija %s"
|
|
1504 |
#~ msgid "Select a background color"
|
1505 |
#~ msgstr "Izberi barvo ozadja"
|
1506 |
|
1507 |
-
#, fuzzy
|
1508 |
-
#~ msgid "Sort galleries by"
|
1509 |
-
#~ msgstr "Uredi slike po"
|
1510 |
-
|
1511 |
#~ msgid "Width (in px)"
|
1512 |
#~ msgstr "Širina (v pikslih)"
|
1513 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Tilen <tilen@divided.si>\n"
|
9 |
"Language: sl_SI\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
17 |
+
"X-Generator: Poedit 2.0.6\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Nastavitve galerije"
|
23 |
|
24 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Nastavitve galerije"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:340
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: gallery-plugin.php:354
|
38 |
msgid "See images »"
|
39 |
msgstr "Poglej slike »"
|
40 |
|
41 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galerije"
|
44 |
|
45 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galerija"
|
48 |
|
49 |
+
#: gallery-plugin.php:444
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Dodaj novo Galerijo"
|
52 |
|
53 |
+
#: gallery-plugin.php:445
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Uredi Galerijo"
|
56 |
|
57 |
+
#: gallery-plugin.php:446
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Nova Galerija"
|
60 |
|
61 |
+
#: gallery-plugin.php:447
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Pregled Galerije"
|
64 |
|
65 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galerije"
|
69 |
|
70 |
+
#: gallery-plugin.php:449
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Galerija ni bila najdena"
|
73 |
|
74 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
75 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
76 |
+
#: gallery-plugin.php:3332
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Velikost slike v galeriji"
|
80 |
|
81 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Velikost slike v galeriji"
|
85 |
|
86 |
+
#: gallery-plugin.php:473
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:474
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Dodaj novo Galerijo"
|
94 |
|
95 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: gallery-plugin.php:480
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: gallery-plugin.php:481
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: gallery-plugin.php:482
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: gallery-plugin.php:483
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: gallery-plugin.php:484
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: gallery-plugin.php:485
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: gallery-plugin.php:533
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Kratka koda do galerije"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: gallery-plugin.php:546
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: gallery-plugin.php:659
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: gallery-plugin.php:659
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: gallery-plugin.php:670
|
159 |
+
#, fuzzy
|
160 |
+
msgid "Sort Galleries in Category by"
|
161 |
+
msgstr "Uredi slike po"
|
162 |
+
|
163 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
164 |
+
#: includes/class-gllr-settings.php:711
|
165 |
+
#, fuzzy
|
166 |
+
msgid "Gallery ID"
|
167 |
+
msgstr "Galerija"
|
168 |
+
|
169 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
170 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
171 |
+
#: includes/class-gllr-settings.php:712
|
172 |
+
msgid "Title"
|
173 |
+
msgstr "Naslov"
|
174 |
+
|
175 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
176 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
177 |
+
msgid "Date"
|
178 |
+
msgstr "Datum"
|
179 |
+
|
180 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
181 |
+
#: includes/class-gllr-settings.php:714
|
182 |
+
msgid "Last modified date"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
186 |
+
#: includes/class-gllr-settings.php:715
|
187 |
+
msgid "Comment count"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
191 |
+
#: includes/class-gllr-settings.php:716
|
192 |
+
msgid "\"Order\" field on the gallery edit page"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
196 |
+
#: includes/class-gllr-settings.php:717
|
197 |
+
msgid "Author"
|
198 |
+
msgstr "Avtor"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
201 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
202 |
+
msgid "Random"
|
203 |
+
msgstr "Naključno"
|
204 |
+
|
205 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
206 |
+
#, fuzzy
|
207 |
+
#| msgid "Settings"
|
208 |
+
msgid "Plugin Settings"
|
209 |
+
msgstr "Nastavitve"
|
210 |
+
|
211 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
212 |
+
msgid "Select galleries sorting order in your category."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
216 |
#, fuzzy
|
217 |
msgid "Shortcode"
|
218 |
msgstr "Kratka koda do galerije"
|
219 |
|
220 |
+
#: gallery-plugin.php:749
|
221 |
msgid "All Gallery Categories"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:827
|
225 |
msgid "You can't delete default gallery category."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
229 |
msgid "Sorry, nothing found."
|
230 |
msgstr "Žal ni zadetkov"
|
231 |
|
232 |
+
#: gallery-plugin.php:1717
|
233 |
msgid "Featured Image"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "Images"
|
239 |
msgstr "Poglej slike »"
|
240 |
|
241 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
#, php-format
|
243 |
msgid "%s Settings"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
247 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
248 |
msgid "Settings"
|
249 |
msgstr "Nastavitve"
|
250 |
|
251 |
+
#: gallery-plugin.php:1838
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:1839
|
256 |
msgid "Support"
|
257 |
msgstr "Podpora"
|
258 |
|
259 |
+
#: gallery-plugin.php:1878
|
260 |
msgid "Updating images..."
|
261 |
msgstr "Posodabljam slike..."
|
262 |
|
263 |
+
#: gallery-plugin.php:1879
|
264 |
#, fuzzy
|
265 |
msgid "No images found."
|
266 |
msgstr "Slike niso bile najdene"
|
267 |
|
268 |
+
#: gallery-plugin.php:1880
|
269 |
#, fuzzy
|
270 |
msgid "All images were updated."
|
271 |
msgstr "Vse slike so posodobljene"
|
272 |
|
273 |
+
#: gallery-plugin.php:1881
|
274 |
msgid "Error."
|
275 |
msgstr "Napaka."
|
276 |
|
277 |
+
#: gallery-plugin.php:1893
|
278 |
msgid ""
|
279 |
"You are about to remove these items from this gallery.\n"
|
280 |
" 'Cancel' to stop, 'OK' to delete."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: gallery-plugin.php:1894
|
284 |
msgid ""
|
285 |
"You are about to remove this image from the gallery.\n"
|
286 |
" 'Cancel' to stop, 'OK' to delete."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: gallery-plugin.php:1895
|
290 |
msgid ""
|
291 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
292 |
"switching?"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: gallery-plugin.php:1896
|
296 |
msgid "Insert Media"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: gallery-plugin.php:1897
|
300 |
msgid "Insert"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: gallery-plugin.php:1898
|
304 |
+
msgid "Gallery has been successfully added!"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
308 |
msgid "Image size not defined"
|
309 |
msgstr "Velikost slike ni podana"
|
310 |
|
311 |
+
#: gallery-plugin.php:2455
|
312 |
#, fuzzy
|
313 |
msgid ""
|
314 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
317 |
"Posodobiti je možno le PNG, JPEG, GIF, WPMP ali XBM tipe datotek. Za vse "
|
318 |
"ostale prosimo, da posodobiš slike ročno."
|
319 |
|
320 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
321 |
msgid "Invalid path"
|
322 |
msgstr "Napačna pot"
|
323 |
|
324 |
+
#: gallery-plugin.php:2607
|
325 |
msgid "List View"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: gallery-plugin.php:2608
|
329 |
msgid "Grid View"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: gallery-plugin.php:2665
|
333 |
msgid "Filter"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: gallery-plugin.php:2669
|
337 |
msgid "Empty Trash"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: gallery-plugin.php:2692
|
341 |
#, fuzzy
|
342 |
msgid "No images found"
|
343 |
msgstr "Slike niso bile najdene"
|
344 |
|
345 |
+
#: gallery-plugin.php:2745
|
346 |
msgid "Select bulk action"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: gallery-plugin.php:2747
|
350 |
msgid "Bulk Actions"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: gallery-plugin.php:2757
|
354 |
msgid "Apply"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: gallery-plugin.php:2764
|
358 |
#, fuzzy
|
359 |
msgid "Delete from Gallery"
|
360 |
msgstr "Nova Galerija"
|
361 |
|
362 |
+
#: gallery-plugin.php:2773
|
363 |
msgid "Bulk Select"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: gallery-plugin.php:2774
|
367 |
msgid "Cancel Selection"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: gallery-plugin.php:2775
|
371 |
msgid "Delete Selected"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: gallery-plugin.php:2786
|
375 |
msgid "File"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
379 |
msgid "Dimensions"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
383 |
#, fuzzy
|
384 |
msgid "Alt Text"
|
385 |
msgstr "Alt oznaka"
|
386 |
|
387 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
388 |
msgid "URL"
|
389 |
msgstr "URL"
|
390 |
|
391 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
392 |
msgid ""
|
393 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
394 |
"to open a full size image."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: gallery-plugin.php:2872
|
398 |
#, fuzzy
|
399 |
msgid "Remove Image from Gallery"
|
400 |
msgstr "Nova Galerija"
|
401 |
|
402 |
+
#: gallery-plugin.php:2875
|
403 |
#, fuzzy
|
404 |
msgid "Edit Image Info"
|
405 |
msgstr "ID priloge"
|
406 |
|
407 |
+
#: gallery-plugin.php:2876
|
408 |
msgid "Deselect"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: gallery-plugin.php:2888
|
412 |
msgid "File name"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: gallery-plugin.php:2889
|
416 |
msgid "File type"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: gallery-plugin.php:2914
|
420 |
msgid "Description"
|
421 |
msgstr "Opis"
|
422 |
|
423 |
+
#: gallery-plugin.php:2920
|
424 |
#, fuzzy
|
425 |
msgid "Lightbox Button URL"
|
426 |
msgstr "Lightbox povezava"
|
427 |
|
428 |
+
#: gallery-plugin.php:2927
|
429 |
msgid "New Tab"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: gallery-plugin.php:2929
|
433 |
msgid "Enable to open URLs above in a new tab."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: gallery-plugin.php:2934
|
437 |
#, fuzzy
|
438 |
msgid "Go Pro"
|
439 |
msgstr "Pojdi na PRO"
|
440 |
|
441 |
+
#: gallery-plugin.php:2940
|
442 |
msgid "Edit more details"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: gallery-plugin.php:2942
|
446 |
#, fuzzy
|
447 |
msgid "Remove from Gallery"
|
448 |
msgstr "Nova Galerija"
|
449 |
|
450 |
+
#: gallery-plugin.php:2978
|
451 |
#, php-format
|
452 |
msgid "Select %s"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:2991
|
456 |
#, php-format
|
457 |
msgid "Edit “%s”"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:2999
|
461 |
#, fuzzy
|
462 |
msgid "Edit Attachment Info"
|
463 |
msgstr "ID priloge"
|
464 |
|
465 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
466 |
msgid "Edit"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
470 |
msgid "Trash"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
474 |
msgid "Delete Permanently"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
478 |
#, php-format
|
479 |
msgid "View “%s”"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
483 |
msgid "View"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:3048
|
487 |
#, fuzzy
|
488 |
msgid "Attach"
|
489 |
msgstr "ID priloge"
|
490 |
|
491 |
+
#: gallery-plugin.php:3056
|
492 |
msgid "Restore"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:3086
|
496 |
msgid "A list or dropdown of Gallery categories."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:3131
|
500 |
msgid "Select Gallery Category"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:3189
|
504 |
#, fuzzy
|
505 |
msgid "Title:"
|
506 |
msgstr "Naslov"
|
507 |
|
508 |
+
#: gallery-plugin.php:3192
|
509 |
msgid "Display as dropdown"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: gallery-plugin.php:3194
|
513 |
msgid "Show gallery counts"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: gallery-plugin.php:3196
|
517 |
msgid "Show hierarchy"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: gallery-plugin.php:3312
|
521 |
msgid "Warning"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: gallery-plugin.php:3312
|
525 |
msgid "You can add only images to the gallery"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
529 |
#, fuzzy
|
530 |
msgid "no title"
|
531 |
msgstr "Naslov"
|
532 |
|
533 |
+
#: gallery-plugin.php:3377
|
534 |
#, fuzzy
|
535 |
msgid ""
|
536 |
"Display an album image with the description and the link to a single gallery "
|
539 |
"Če želiš prikazati kratek opis s predogledno sliko in povezavo do posamezne "
|
540 |
"galerije kopiraj spodnjo povezavo."
|
541 |
|
542 |
+
#: gallery-plugin.php:3381
|
543 |
#, fuzzy
|
544 |
msgid "Sorry, no gallery found."
|
545 |
msgstr "Žal ni zadetkov"
|
573 |
msgid "License Key"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
577 |
#, fuzzy
|
578 |
msgid "Settings saved"
|
579 |
msgstr "Nastavitve so shranjene"
|
580 |
|
581 |
+
#: includes/class-gllr-settings.php:256
|
582 |
#, fuzzy
|
583 |
msgid "Please, enable JavaScript in Your browser."
|
584 |
msgstr "Prosimo vklopite Javascript za uporabo nalagalnika datotek."
|
585 |
|
586 |
+
#: includes/class-gllr-settings.php:260
|
587 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: includes/class-gllr-settings.php:261
|
591 |
#, fuzzy
|
592 |
msgid "Update Images"
|
593 |
msgstr "Posodabljam slike..."
|
594 |
|
595 |
+
#: includes/class-gllr-settings.php:276
|
596 |
#, fuzzy
|
597 |
msgid "Gallery Images"
|
598 |
msgstr "Velikost slike v galeriji"
|
599 |
|
600 |
+
#: includes/class-gllr-settings.php:281
|
601 |
msgid "Images adding requires JavaScript."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/class-gllr-settings.php:284
|
605 |
msgid "Add Media"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/class-gllr-settings.php:293
|
609 |
msgid "The grid view for the Gallery images requires JavaScript."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/class-gllr-settings.php:293
|
613 |
msgid "Switch to the list view"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/class-gllr-settings.php:320
|
617 |
+
#, fuzzy
|
618 |
+
#| msgid "Add gallery to the search"
|
619 |
+
msgid "Add Gallery to the Slider"
|
620 |
+
msgstr "Dodaj galerijo k iskalniku"
|
621 |
+
|
622 |
+
#: includes/class-gllr-settings.php:332
|
623 |
+
msgid "Activate"
|
624 |
+
msgstr "Aktivirani moduli"
|
625 |
+
|
626 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
627 |
+
#, fuzzy
|
628 |
+
msgid "Install Now"
|
629 |
+
msgstr "Instalacija %s"
|
630 |
+
|
631 |
+
#: includes/class-gllr-settings.php:337
|
632 |
+
msgid "Add"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/class-gllr-settings.php:340
|
636 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: includes/class-gllr-settings.php:351
|
640 |
#, fuzzy
|
641 |
msgid "Single Gallery Settings"
|
642 |
msgstr "Nastavitve galerije"
|
643 |
|
644 |
+
#: includes/class-gllr-settings.php:353
|
645 |
#, php-format
|
646 |
msgid "Enable to configure single gallery settings and disable %s."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
650 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
651 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
652 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
653 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
654 |
msgid "Close"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/class-gllr-settings.php:369
|
658 |
#, fuzzy
|
659 |
msgid "Gallery Layout"
|
660 |
msgstr "Galerija ni bila najdena"
|
661 |
|
662 |
+
#: includes/class-gllr-settings.php:374
|
663 |
msgid "Grid"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/class-gllr-settings.php:380
|
667 |
msgid "Masonry"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/class-gllr-settings.php:393
|
671 |
msgid "Number of Columns"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/class-gllr-settings.php:396
|
675 |
#, php-format
|
676 |
msgid "Number of gallery columns (default is %s)."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
680 |
#, fuzzy
|
681 |
msgid "Image Size"
|
682 |
msgstr "Velikost slike"
|
683 |
|
684 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
685 |
msgid "Custom"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/class-gllr-settings.php:408
|
689 |
msgid ""
|
690 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/class-gllr-settings.php:412
|
694 |
#, fuzzy
|
695 |
msgid "Custom Image Size"
|
696 |
msgstr "Velikost slike"
|
697 |
|
698 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
699 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
700 |
msgid "px"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/class-gllr-settings.php:415
|
704 |
msgid ""
|
705 |
"Adjust these values based on the number of columns in your gallery. This "
|
706 |
"won't effect the full size of your images in the lightbox."
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/class-gllr-settings.php:426
|
710 |
#, fuzzy
|
711 |
msgid "Crop Images"
|
712 |
msgstr "Preuredi slike"
|
713 |
|
714 |
+
#: includes/class-gllr-settings.php:428
|
715 |
msgid ""
|
716 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
717 |
"to resize images automatically using their aspect ratio."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
721 |
#, fuzzy
|
722 |
msgid "Crop Position"
|
723 |
msgstr "Pozicija za obrez"
|
724 |
|
725 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
726 |
msgid "Select crop position base (by default: center)."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-gllr-settings.php:457
|
730 |
#, fuzzy
|
731 |
msgid "Image Title"
|
732 |
msgstr "Velikost slike"
|
733 |
|
734 |
+
#: includes/class-gllr-settings.php:459
|
735 |
msgid "Enable to display image title along with the gallery image."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/class-gllr-settings.php:470
|
739 |
#, fuzzy
|
740 |
msgid "Image Title Position"
|
741 |
msgstr "Velikost slike ni podana"
|
742 |
|
743 |
+
#: includes/class-gllr-settings.php:475
|
744 |
#, fuzzy
|
745 |
msgid "Under image"
|
746 |
msgstr "Posodobi slike"
|
747 |
|
748 |
+
#: includes/class-gllr-settings.php:481
|
749 |
msgid "On mouse hover"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/class-gllr-settings.php:494
|
753 |
#, fuzzy
|
754 |
msgid "Image Border"
|
755 |
msgstr "Slike z okvirjem"
|
756 |
|
757 |
+
#: includes/class-gllr-settings.php:496
|
758 |
msgid ""
|
759 |
"Enable images border using the styles defined for Image Border Size and "
|
760 |
"Color options."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:500
|
764 |
#, fuzzy
|
765 |
msgid "Image Border Size"
|
766 |
msgstr "Velikost slike"
|
767 |
|
768 |
+
#: includes/class-gllr-settings.php:503
|
769 |
#, php-format
|
770 |
msgid "Gallery image border width (default is %s)"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/class-gllr-settings.php:507
|
774 |
#, fuzzy
|
775 |
msgid "Image Border Color"
|
776 |
msgstr "Izberi barvo okvirja"
|
777 |
|
778 |
+
#: includes/class-gllr-settings.php:520
|
779 |
msgid "Pagination"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: includes/class-gllr-settings.php:523
|
783 |
msgid ""
|
784 |
"Enable pagination for images to limit number of images displayed on a single "
|
785 |
"gallery page."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/class-gllr-settings.php:527
|
789 |
#, fuzzy
|
790 |
msgid "Number of Images"
|
791 |
msgstr "Število slik v vrsti"
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:530
|
794 |
#, php-format
|
795 |
msgid "Number of images displayed per page (default is %d)."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: includes/class-gllr-settings.php:540
|
799 |
#, fuzzy
|
800 |
msgid "Sort Images by"
|
801 |
msgstr "Uredi slike po"
|
802 |
|
803 |
+
#: includes/class-gllr-settings.php:543
|
804 |
msgid "Manually (default)"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: includes/class-gllr-settings.php:544
|
808 |
#, fuzzy
|
809 |
msgid "Image ID"
|
810 |
msgstr "Slika"
|
811 |
|
812 |
+
#: includes/class-gllr-settings.php:545
|
813 |
msgid "Name"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
817 |
msgid ""
|
818 |
"Select images sorting order in your gallery. By default, you can sort images "
|
819 |
"manually in the images tab."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/class-gllr-settings.php:553
|
823 |
#, fuzzy
|
824 |
msgid "Arrange Images by"
|
825 |
msgstr "Uredi slike po"
|
826 |
|
827 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
828 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
832 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:562
|
836 |
#, fuzzy
|
837 |
msgid "Back Link"
|
838 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
839 |
|
840 |
+
#: includes/class-gllr-settings.php:564
|
841 |
msgid ""
|
842 |
"Enable to show a back link in a single gallery page which navigate to a "
|
843 |
"previous page."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/class-gllr-settings.php:568
|
847 |
#, fuzzy
|
848 |
msgid "Back Link URL"
|
849 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
850 |
|
851 |
+
#: includes/class-gllr-settings.php:571
|
852 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/class-gllr-settings.php:575
|
856 |
#, fuzzy
|
857 |
msgid "Back Link Label"
|
858 |
msgstr "Povezava, na kateri se nahajajo galerije"
|
859 |
|
860 |
+
#: includes/class-gllr-settings.php:581
|
861 |
#, fuzzy
|
862 |
msgid "Back Link with Shortcode"
|
863 |
msgstr "Prikaži povratni link v kratki kodi"
|
864 |
|
865 |
+
#: includes/class-gllr-settings.php:584
|
866 |
#, fuzzy
|
867 |
msgid "Enable to display a back link on a page where shortcode is used."
|
868 |
msgstr "Prikaži povratni link v kratki kodi"
|
869 |
|
870 |
+
#: includes/class-gllr-settings.php:595
|
871 |
#, fuzzy
|
872 |
msgid "Cover Settings"
|
873 |
msgstr "Nastavitve galerije"
|
874 |
|
875 |
+
#: includes/class-gllr-settings.php:600
|
876 |
#, fuzzy
|
877 |
msgid "Galleries Page"
|
878 |
msgstr "Galerije"
|
879 |
|
880 |
+
#: includes/class-gllr-settings.php:608
|
881 |
#, fuzzy
|
882 |
msgid "Base page where all existing galleries will be displayed."
|
883 |
msgstr ""
|
884 |
"V primeru posodobitve na PRO verzijo se bodo vse nastavitve in galerije "
|
885 |
"ohranile."
|
886 |
|
887 |
+
#: includes/class-gllr-settings.php:612
|
888 |
msgid "Albums Displaying"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-gllr-settings.php:615
|
892 |
msgid "Column"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-gllr-settings.php:616
|
896 |
msgid "Rows"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: includes/class-gllr-settings.php:618
|
900 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/class-gllr-settings.php:622
|
904 |
msgid "Column Alignment"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/class-gllr-settings.php:625
|
908 |
msgid "Left"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/class-gllr-settings.php:626
|
912 |
msgid "Right"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/class-gllr-settings.php:627
|
916 |
msgid "Center"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-gllr-settings.php:629
|
920 |
msgid "Select the column alignment."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-gllr-settings.php:633
|
924 |
#, fuzzy
|
925 |
msgid "Cover Image Size"
|
926 |
msgstr "Velikost slike"
|
927 |
|
928 |
+
#: includes/class-gllr-settings.php:641
|
929 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/class-gllr-settings.php:645
|
933 |
msgid "Custom Cover Image Size"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/class-gllr-settings.php:658
|
937 |
msgid "Crop Cover Images"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/class-gllr-settings.php:660
|
941 |
msgid ""
|
942 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
943 |
"Disable to resize images automatically using their aspect ratio."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:689
|
947 |
#, fuzzy
|
948 |
msgid "Cover Image Border"
|
949 |
msgstr "Slike z okvirjem"
|
950 |
|
951 |
+
#: includes/class-gllr-settings.php:691
|
952 |
msgid ""
|
953 |
"Enable cover images border using the styles defined for Image Border Size "
|
954 |
"and Color."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: includes/class-gllr-settings.php:695
|
958 |
msgid "Cover Image Border Size"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/class-gllr-settings.php:698
|
962 |
#, php-format
|
963 |
msgid "Cover image border width (default is %s)"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:702
|
967 |
#, fuzzy
|
968 |
msgid "Cover Image Border Color"
|
969 |
msgstr "Izberi barvo okvirja"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:708
|
972 |
#, fuzzy
|
973 |
msgid "Sort Albums by"
|
974 |
msgstr "Uredi slike po"
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
msgid "Select galleries sorting order in your galleries page."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/class-gllr-settings.php:724
|
981 |
msgid "Arrange Albums by"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:733
|
985 |
#, fuzzy
|
986 |
msgid "Read More Link Label"
|
987 |
msgstr "Tekst v \"Read More\" gumbu"
|
988 |
|
989 |
+
#: includes/class-gllr-settings.php:746
|
990 |
msgid "Instant Lightbox"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/class-gllr-settings.php:749
|
994 |
msgid ""
|
995 |
"Enable to display all images in the lightbox after clicking cover image or "
|
996 |
"URL instead of going to a single gallery page."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:763
|
1000 |
#, fuzzy
|
1001 |
msgid "Lightbox Settings"
|
1002 |
msgstr "Lightbox povezava"
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:768
|
1005 |
+
msgid "Unclickable Thumbnail Images"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/class-gllr-settings.php:771
|
1009 |
+
msgid ""
|
1010 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1011 |
+
"URLs. This option also disables Lightbox."
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/class-gllr-settings.php:775
|
1015 |
msgid "Enable Lightbox"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/class-gllr-settings.php:778
|
1019 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/class-gllr-settings.php:796
|
1023 |
msgid ""
|
1024 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1025 |
"will display the original, full size image."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:800
|
1029 |
msgid "Overlay Color"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: includes/class-gllr-settings.php:806
|
1033 |
msgid "Overlay Opacity"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: includes/class-gllr-settings.php:809
|
1037 |
#, php-format
|
1038 |
msgid ""
|
1039 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1040 |
"is %s)."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/class-gllr-settings.php:819
|
1044 |
#, fuzzy
|
1045 |
msgid "Slideshow"
|
1046 |
msgstr "Začni projekcijo"
|
1047 |
|
1048 |
+
#: includes/class-gllr-settings.php:821
|
1049 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: includes/class-gllr-settings.php:825
|
1053 |
#, fuzzy
|
1054 |
msgid "Slideshow Duration"
|
1055 |
msgstr "Interval projekcije slik"
|
1056 |
|
1057 |
+
#: includes/class-gllr-settings.php:827
|
1058 |
msgid "ms"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/class-gllr-settings.php:828
|
1062 |
msgid "Slideshow interval duration between two images."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/class-gllr-settings.php:839
|
1066 |
#, fuzzy
|
1067 |
msgid "Lightbox Helpers"
|
1068 |
msgstr "Lightbox pomočnik"
|
1069 |
|
1070 |
+
#: includes/class-gllr-settings.php:841
|
1071 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/class-gllr-settings.php:845
|
1075 |
#, fuzzy
|
1076 |
msgid "Lightbox Thumbnails"
|
1077 |
msgstr "Velikost slike albuma"
|
1078 |
|
1079 |
+
#: includes/class-gllr-settings.php:847
|
1080 |
msgid "Enable to use a lightbox helper navigation between images."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/class-gllr-settings.php:851
|
1084 |
msgid "Lightbox Thumbnails Position"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/class-gllr-settings.php:854
|
1088 |
#, fuzzy
|
1089 |
msgid "Top"
|
1090 |
msgstr "vrh"
|
1091 |
|
1092 |
+
#: includes/class-gllr-settings.php:859
|
1093 |
#, fuzzy
|
1094 |
msgid "Lightbox Button Label"
|
1095 |
msgstr "Lightbox povezava"
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:861
|
1098 |
#, fuzzy
|
1099 |
msgid "Read More"
|
1100 |
msgstr "Preberi več"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:871
|
1103 |
#, fuzzy
|
1104 |
msgid "Download Button"
|
1105 |
msgstr "Prensei \"Custom Search\""
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:873
|
1108 |
msgid "Enable to display download button."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/class-gllr-settings.php:877
|
1112 |
msgid "Single Lightbox"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/class-gllr-settings.php:879
|
1116 |
#, fuzzy
|
1117 |
msgid ""
|
1118 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1119 |
"page."
|
1120 |
msgstr "Uporabi lightbox enkratno za vse galerije na strani"
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:889
|
1123 |
msgid "Social Sharing Buttons Settings"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:898
|
1127 |
msgid "Social Buttons"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/class-gllr-settings.php:900
|
1131 |
msgid "Enable social sharing buttons in the lightbox."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/class-gllr-settings.php:904
|
1135 |
msgid "Social Networks"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:915
|
1139 |
#, fuzzy
|
1140 |
msgid "Counter"
|
1141 |
msgstr "Interval projekcije slik"
|
1142 |
|
1143 |
+
#: includes/class-gllr-settings.php:918
|
1144 |
msgid ""
|
1145 |
"Enable to show likes counter for each social button (not available for "
|
1146 |
"Google +1)."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/class-gllr-settings.php:933
|
1150 |
#, fuzzy
|
1151 |
msgid "Demo Data"
|
1152 |
msgstr "Instalacija %s"
|
1153 |
|
1154 |
+
#: includes/class-gllr-settings.php:935
|
1155 |
msgid ""
|
1156 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1157 |
"page with a list of all galleries."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/class-gllr-settings.php:973
|
1161 |
#, fuzzy
|
1162 |
msgid "Gallery Post Type"
|
1163 |
msgstr "Kratka koda do galerije"
|
1164 |
|
1165 |
+
#: includes/class-gllr-settings.php:975
|
1166 |
msgid ""
|
1167 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1168 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1170 |
"used."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/class-gllr-settings.php:987
|
1174 |
#, fuzzy
|
1175 |
msgid "Gallery Slug"
|
1176 |
msgstr "Galerija"
|
1177 |
|
1178 |
+
#: includes/class-gllr-settings.php:991
|
1179 |
msgid "Enter the unique gallery slug."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/class-gllr-settings.php:1007
|
1183 |
#, fuzzy
|
1184 |
msgid "Activate Now"
|
1185 |
msgstr "Aktivirani moduli"
|
1186 |
|
1187 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1188 |
msgid "Enable to include galleries to your website search."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/class-gllr-settings.php:1025
|
1192 |
#, php-format
|
1193 |
msgid "%s is required."
|
1194 |
msgstr ""
|
1283 |
msgid "Yes, install demo now"
|
1284 |
msgstr "Instalacija %s"
|
1285 |
|
1286 |
+
#~ msgid "or"
|
1287 |
+
#~ msgstr "ali"
|
1288 |
+
|
1289 |
#, fuzzy
|
1290 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1291 |
#~ msgstr "Razporejanje glede na razporeditev v predstavnostni knjižici"
|
1336 |
#~ msgid "Learn more"
|
1337 |
#~ msgstr "Preberi več"
|
1338 |
|
|
|
|
|
|
|
1339 |
#, fuzzy
|
1340 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1341 |
#~ msgstr "Prikaži gumb \"Like\" tudi v lightbox-u"
|
1474 |
#~ msgid "(Full URL to custom page)"
|
1475 |
#~ msgstr "(Polni URL za uporabo na strani)"
|
1476 |
|
|
|
|
|
|
|
1477 |
#~ msgid "Using"
|
1478 |
#~ msgstr "Se uporablja"
|
1479 |
|
1551 |
#~ msgid "Select a background color"
|
1552 |
#~ msgstr "Izberi barvo ozadja"
|
1553 |
|
|
|
|
|
|
|
|
|
1554 |
#~ msgid "Width (in px)"
|
1555 |
#~ msgstr "Širina (v pikslih)"
|
1556 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
@@ -16,137 +16,137 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
-
"X-Generator: Poedit
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Podešavanja Galerije"
|
25 |
|
26 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
27 |
#, fuzzy
|
28 |
msgid "Global Settings"
|
29 |
msgstr "Paramètres généraux"
|
30 |
|
31 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
32 |
#, fuzzy
|
33 |
msgid "Upgrade to Pro"
|
34 |
msgstr "Пређи на Про"
|
35 |
|
36 |
-
#: gallery-plugin.php:
|
37 |
#, fuzzy
|
38 |
msgid "Return to all albums"
|
39 |
msgstr "Revenir à tous les albums"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "See images »"
|
43 |
msgstr "Pogledaj sliku »"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
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 novu Galeriju"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Uredi Galeriju"
|
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 "Rechercher une galerie"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Nije pronađena Galerija"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
-
#: gallery-plugin.php:
|
80 |
-
#: gallery-plugin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Categories"
|
83 |
msgstr "Catégories de galeries"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
#, fuzzy
|
87 |
msgid "Gallery Category"
|
88 |
msgstr "Catégories de galeries"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Add Gallery Category"
|
93 |
msgstr "Ajouter une catégorie à la galerie"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
#, fuzzy
|
97 |
msgid "Add New Gallery Category"
|
98 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Edit Gallery Category"
|
103 |
msgstr "Modifier la catégorie de la galerie"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
#, fuzzy
|
107 |
msgid "New Gallery Category"
|
108 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
#, fuzzy
|
112 |
msgid "View Gallery Category"
|
113 |
msgstr "Voir les catégories de galerie"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
#, fuzzy
|
117 |
msgid "Find Gallery Category"
|
118 |
msgstr "Trouver une catégorie de gallerie"
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
#, fuzzy
|
122 |
msgid "No Gallery Categories found"
|
123 |
msgstr "Aucune catégorie de galerie trouvée"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
#, fuzzy
|
127 |
msgid "No Gallery Categories found in Trash"
|
128 |
msgstr "Pas de catégorie de galerie trouvée dans la poubelle"
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
#, fuzzy
|
132 |
msgid "Parent Gallery Category"
|
133 |
msgstr "Catégorie parente des galeries"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, fuzzy
|
137 |
msgid "Gallery Categories list navigation"
|
138 |
msgstr "Navigation dans la liste des catégories de galerie"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
#, fuzzy
|
142 |
msgid "Gallery Categories list"
|
143 |
msgstr "Liste des catégories de galeries"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Gallery Shortcode"
|
147 |
msgstr "Kratak kod za Galeriju"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
#, fuzzy
|
151 |
msgid ""
|
152 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
@@ -155,7 +155,7 @@ msgstr ""
|
|
155 |
"Ajouter une galerie avec des images dans vos articles, pages, type d'article "
|
156 |
"personnalisé ou widgets en utilisant le code court :"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
#, fuzzy
|
160 |
msgid ""
|
161 |
"Add a gallery cover including featured image, description, and a link to "
|
@@ -164,100 +164,146 @@ msgstr ""
|
|
164 |
"Ajouter une présentation de votre galerie avec une image à la une, une "
|
165 |
"description et un lien vers votre galerie en utilisant le code court :"
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
#, fuzzy
|
169 |
msgid "Note"
|
170 |
msgstr "Note"
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
173 |
#, php-format
|
174 |
msgid ""
|
175 |
"When deleting a category, the galleries that belong to this category will "
|
176 |
"not be deleted. These galleries will be moved to the category %s."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
#, fuzzy
|
181 |
msgid "Shortcode"
|
182 |
msgstr "Code court"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
#, fuzzy
|
186 |
msgid "All Gallery Categories"
|
187 |
msgstr "Toutes les catégories de galerie"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
#, fuzzy
|
191 |
msgid "You can't delete default gallery category."
|
192 |
msgstr "Vous ne pouvez pas supprimer la catégorie par défaut des galeries."
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Sorry, nothing found."
|
196 |
msgstr "Nažalost nije pronađeno"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
#, fuzzy
|
200 |
msgid "Featured Image"
|
201 |
msgstr "Image à la une"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
205 |
-
msgid "Title"
|
206 |
-
msgstr "Naslov"
|
207 |
-
|
208 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
209 |
#, fuzzy
|
210 |
msgid "Images"
|
211 |
msgstr "Images"
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
-
msgid "Author"
|
215 |
-
msgstr "Autor"
|
216 |
-
|
217 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
218 |
-
#: includes/class-gllr-settings.php:680
|
219 |
-
msgid "Date"
|
220 |
-
msgstr "Datum"
|
221 |
-
|
222 |
-
#: gallery-plugin.php:1688
|
223 |
#, php-format
|
224 |
msgid "%s Settings"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
229 |
msgid "Settings"
|
230 |
msgstr "Podešavanja"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "FAQ"
|
234 |
msgstr "FAQ"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Support"
|
238 |
msgstr "Podrška"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
#, fuzzy
|
242 |
msgid "Updating images..."
|
243 |
msgstr "Mise à jour des images..."
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
#, fuzzy
|
247 |
msgid "No images found."
|
248 |
msgstr "Pas d'image trouvée."
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
#, fuzzy
|
252 |
msgid "All images were updated."
|
253 |
msgstr "Toutes les images ont été mises à jour."
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "Error."
|
258 |
msgstr "Грешка"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
#, fuzzy
|
262 |
msgid ""
|
263 |
"You are about to remove these items from this gallery.\n"
|
@@ -266,7 +312,7 @@ msgstr ""
|
|
266 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
267 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
#, fuzzy
|
271 |
msgid ""
|
272 |
"You are about to remove this image from the gallery.\n"
|
@@ -275,7 +321,7 @@ msgstr ""
|
|
275 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
276 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
#, fuzzy
|
280 |
msgid ""
|
281 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
@@ -284,22 +330,26 @@ msgstr ""
|
|
284 |
"ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
285 |
"correctement. Merci de mettre à jour votre version de WordPress."
|
286 |
|
287 |
-
#: gallery-plugin.php:
|
288 |
#, fuzzy
|
289 |
msgid "Insert Media"
|
290 |
msgstr "Insérer un média"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
#, fuzzy
|
294 |
msgid "Insert"
|
295 |
msgstr "Insérer"
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
298 |
#, fuzzy
|
299 |
msgid "Image size not defined"
|
300 |
msgstr "Taille de l'image non définie"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
#, fuzzy
|
304 |
msgid ""
|
305 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
@@ -308,91 +358,91 @@ msgstr ""
|
|
308 |
"Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
|
309 |
"WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
#, fuzzy
|
313 |
msgid "Invalid path"
|
314 |
msgstr "Chemin invalide"
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
#, fuzzy
|
318 |
msgid "List View"
|
319 |
msgstr "Vue en mode liste"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
#, fuzzy
|
323 |
msgid "Grid View"
|
324 |
msgstr "Vue en mode grille"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
#, fuzzy
|
328 |
msgid "Filter"
|
329 |
msgstr "Filtrer"
|
330 |
|
331 |
-
#: gallery-plugin.php:
|
332 |
#, fuzzy
|
333 |
msgid "Empty Trash"
|
334 |
msgstr "Vider la corbeille"
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
#, fuzzy
|
338 |
msgid "No images found"
|
339 |
msgstr "Pas d'image trouvée"
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
#, fuzzy
|
343 |
msgid "Select bulk action"
|
344 |
msgstr "Sélectionne l'action en masse"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
#, fuzzy
|
348 |
msgid "Bulk Actions"
|
349 |
msgstr "Actions en masse"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
#, fuzzy
|
353 |
msgid "Apply"
|
354 |
msgstr "Appliquer"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
#, fuzzy
|
358 |
msgid "Delete from Gallery"
|
359 |
msgstr "Supprimer de la galerie"
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
#, fuzzy
|
363 |
msgid "Bulk Select"
|
364 |
msgstr "Sélection en masse"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
#, fuzzy
|
368 |
msgid "Cancel Selection"
|
369 |
msgstr "Annuler la sélection"
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
#, fuzzy
|
373 |
msgid "Delete Selected"
|
374 |
msgstr "Supprimer la sélection"
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "File"
|
379 |
msgstr "Fichier"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
#, fuzzy
|
383 |
msgid "Dimensions"
|
384 |
msgstr "Dimensions"
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
#, fuzzy
|
388 |
msgid "Alt Text"
|
389 |
msgstr "Alt Texte"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "URL"
|
393 |
msgstr "URL"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
#, fuzzy
|
397 |
msgid ""
|
398 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
@@ -401,166 +451,162 @@ msgstr ""
|
|
401 |
"Saisir votre URL personnalisée pour faire un lien de cette image vers une "
|
402 |
"page ou un article. Laisser vide pour ouvrir l'image en plein écran."
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
#, fuzzy
|
406 |
msgid "Remove Image from Gallery"
|
407 |
msgstr "Supprimer les images de la galerie"
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
#, fuzzy
|
411 |
msgid "Edit Image Info"
|
412 |
msgstr "Modifier les informations de l'image"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
#, fuzzy
|
416 |
msgid "Deselect"
|
417 |
msgstr "Désélectionner"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
#, fuzzy
|
421 |
msgid "File name"
|
422 |
msgstr "Nom du fichier"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
#, fuzzy
|
426 |
msgid "File type"
|
427 |
msgstr "Type de fichier"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
#, fuzzy
|
431 |
msgid "Description"
|
432 |
msgstr "Description"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
#, fuzzy
|
436 |
msgid "Lightbox Button URL"
|
437 |
msgstr "URL du bouton pour Lightbox"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
#, fuzzy
|
441 |
msgid "New Tab"
|
442 |
msgstr "Nouvel onglet"
|
443 |
|
444 |
-
#: gallery-plugin.php:
|
445 |
#, fuzzy
|
446 |
msgid "Enable to open URLs above in a new tab."
|
447 |
msgstr "Activer pour ouvrir l'URL dans un nouvel onglet."
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
#, fuzzy
|
451 |
msgid "Go Pro"
|
452 |
msgstr "Passer à la version PRO"
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
#, fuzzy
|
456 |
msgid "Edit more details"
|
457 |
msgstr "Modifier plus de détails"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
#, fuzzy
|
461 |
msgid "Remove from Gallery"
|
462 |
msgstr "Supprimer de la galerie"
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
#, fuzzy, php-format
|
466 |
msgid "Select %s"
|
467 |
msgstr "Sélectionner %s"
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
#, fuzzy, php-format
|
471 |
msgid "Edit “%s”"
|
472 |
msgstr "Pré-visualiser “%s”"
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
#, fuzzy
|
476 |
msgid "Edit Attachment Info"
|
477 |
msgstr "Modifier les informations du document"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
#, fuzzy
|
481 |
msgid "Edit"
|
482 |
msgstr "Modifier"
|
483 |
|
484 |
-
#: gallery-plugin.php:
|
485 |
#, fuzzy
|
486 |
msgid "Trash"
|
487 |
msgstr "Poubelle"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
#, fuzzy
|
491 |
msgid "Delete Permanently"
|
492 |
msgstr "Supprimer de manière définitive"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
#, fuzzy, php-format
|
496 |
msgid "View “%s”"
|
497 |
msgstr "Pré-visualiser “%s”"
|
498 |
|
499 |
-
#: gallery-plugin.php:
|
500 |
#, fuzzy
|
501 |
msgid "View"
|
502 |
msgstr "Voir"
|
503 |
|
504 |
-
#: gallery-plugin.php:
|
505 |
#, fuzzy
|
506 |
msgid "Attach"
|
507 |
msgstr "Attacher"
|
508 |
|
509 |
-
#: gallery-plugin.php:
|
510 |
#, fuzzy
|
511 |
msgid "Restore"
|
512 |
msgstr "Remettre"
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
#, fuzzy
|
516 |
msgid "A list or dropdown of Gallery categories."
|
517 |
msgstr "Une liste ou une liste déroulante des catégories de galerie."
|
518 |
|
519 |
-
#: gallery-plugin.php:
|
520 |
#, fuzzy
|
521 |
msgid "Select Gallery Category"
|
522 |
msgstr "Choisir une catégorie pour la galerie"
|
523 |
|
524 |
-
#: gallery-plugin.php:
|
525 |
#, fuzzy
|
526 |
msgid "Title:"
|
527 |
msgstr "Naslov"
|
528 |
|
529 |
-
#: gallery-plugin.php:
|
530 |
#, fuzzy
|
531 |
msgid "Display as dropdown"
|
532 |
msgstr "Montrer sous la forme d'une liste déroulante"
|
533 |
|
534 |
-
#: gallery-plugin.php:
|
535 |
#, fuzzy
|
536 |
msgid "Show gallery counts"
|
537 |
msgstr "Monter le nombre de galleries"
|
538 |
|
539 |
-
#: gallery-plugin.php:
|
540 |
#, fuzzy
|
541 |
msgid "Show hierarchy"
|
542 |
msgstr "Voir la hiérarchie"
|
543 |
|
544 |
-
#: gallery-plugin.php:
|
545 |
#, fuzzy
|
546 |
msgid "Warning"
|
547 |
msgstr "Упозорење"
|
548 |
|
549 |
-
#: gallery-plugin.php:
|
550 |
#, fuzzy
|
551 |
msgid "You can add only images to the gallery"
|
552 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
553 |
|
554 |
-
#: gallery-plugin.php:
|
555 |
-
msgid "or"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: gallery-plugin.php:3181
|
559 |
#, fuzzy
|
560 |
msgid "no title"
|
561 |
msgstr "Naslov"
|
562 |
|
563 |
-
#: gallery-plugin.php:
|
564 |
#, fuzzy
|
565 |
msgid ""
|
566 |
"Display an album image with the description and the link to a single gallery "
|
@@ -569,7 +615,7 @@ msgstr ""
|
|
569 |
"Afficher une image pour l'album avec la description et un lien vers une page "
|
570 |
"contenant la galerie"
|
571 |
|
572 |
-
#: gallery-plugin.php:
|
573 |
#, fuzzy
|
574 |
msgid "Sorry, no gallery found."
|
575 |
msgstr "Désolé, rien n'a été trouvé."
|
@@ -609,109 +655,132 @@ msgstr "Importer / Exporter"
|
|
609 |
msgid "License Key"
|
610 |
msgstr "Clé de licence"
|
611 |
|
612 |
-
#: includes/class-gllr-settings.php:
|
613 |
-
#, fuzzy
|
614 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
615 |
-
msgstr ""
|
616 |
-
"La taille personnalisée des images a été modifiée. Vous devez mettre à jour "
|
617 |
-
"les images dans les galeries."
|
618 |
-
|
619 |
-
#: includes/class-gllr-settings.php:247
|
620 |
#, fuzzy
|
621 |
msgid "Settings saved"
|
622 |
msgstr "Paramètres enregistrés."
|
623 |
|
624 |
-
#: includes/class-gllr-settings.php:
|
625 |
#, fuzzy
|
626 |
msgid "Please, enable JavaScript in Your browser."
|
627 |
msgstr "Merci d'activer JavaScript dans votre navigateur."
|
628 |
|
629 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
#, fuzzy
|
631 |
msgid "Update Images"
|
632 |
msgstr "Mise à jour des images"
|
633 |
|
634 |
-
#: includes/class-gllr-settings.php:
|
635 |
#, fuzzy
|
636 |
msgid "Gallery Images"
|
637 |
msgstr "Galerie d'images"
|
638 |
|
639 |
-
#: includes/class-gllr-settings.php:
|
640 |
msgid "Images adding requires JavaScript."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
#, fuzzy
|
645 |
msgid "Add Media"
|
646 |
msgstr "Ajouter un média"
|
647 |
|
648 |
-
#: includes/class-gllr-settings.php:
|
649 |
#, fuzzy
|
650 |
msgid "The grid view for the Gallery images requires JavaScript."
|
651 |
msgstr ""
|
652 |
"La vue en mode grille pour les images des galeries nécessite Java-script."
|
653 |
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
#, fuzzy
|
656 |
msgid "Switch to the list view"
|
657 |
msgstr "Basculer vers une vue en mode liste"
|
658 |
|
659 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
660 |
#, fuzzy
|
661 |
msgid "Single Gallery Settings"
|
662 |
msgstr "Paramètres de la galerie"
|
663 |
|
664 |
-
#: includes/class-gllr-settings.php:
|
665 |
#, fuzzy, php-format
|
666 |
msgid "Enable to configure single gallery settings and disable %s."
|
667 |
msgstr ""
|
668 |
"Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
|
669 |
|
670 |
-
#: includes/class-gllr-settings.php:
|
671 |
-
#: includes/class-gllr-settings.php:
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
-
#: includes/class-gllr-settings.php:
|
674 |
-
#: includes/class-gllr-settings.php:
|
675 |
#, fuzzy
|
676 |
msgid "Close"
|
677 |
msgstr "Затвори"
|
678 |
|
679 |
-
#: includes/class-gllr-settings.php:
|
680 |
#, fuzzy
|
681 |
msgid "Gallery Layout"
|
682 |
msgstr "Mise en page de la galerie"
|
683 |
|
684 |
-
#: includes/class-gllr-settings.php:
|
685 |
#, fuzzy
|
686 |
msgid "Grid"
|
687 |
msgstr "Grille"
|
688 |
|
689 |
-
#: includes/class-gllr-settings.php:
|
690 |
#, fuzzy
|
691 |
msgid "Masonry"
|
692 |
msgstr "Mur"
|
693 |
|
694 |
-
#: includes/class-gllr-settings.php:
|
695 |
#, fuzzy
|
696 |
msgid "Number of Columns"
|
697 |
msgstr "Nombre de colonnes"
|
698 |
|
699 |
-
#: includes/class-gllr-settings.php:
|
700 |
#, fuzzy, php-format
|
701 |
msgid "Number of gallery columns (default is %s)."
|
702 |
msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
|
703 |
|
704 |
-
#: includes/class-gllr-settings.php:
|
705 |
#, fuzzy
|
706 |
msgid "Image Size"
|
707 |
msgstr "Taille de l'image"
|
708 |
|
709 |
-
#: includes/class-gllr-settings.php:
|
710 |
#, fuzzy
|
711 |
msgid "Custom"
|
712 |
msgstr "Personnalisé"
|
713 |
|
714 |
-
#: includes/class-gllr-settings.php:
|
715 |
#, fuzzy
|
716 |
msgid ""
|
717 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
@@ -719,18 +788,18 @@ msgstr ""
|
|
719 |
"Taille maximum d'une image dans la galerie. \"Personnalisé\" utilise les "
|
720 |
"valeurs définies pour les images."
|
721 |
|
722 |
-
#: includes/class-gllr-settings.php:
|
723 |
#, fuzzy
|
724 |
msgid "Custom Image Size"
|
725 |
msgstr "Taille de l'image personalisée"
|
726 |
|
727 |
-
#: includes/class-gllr-settings.php:
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
#, fuzzy
|
730 |
msgid "px"
|
731 |
msgstr "px"
|
732 |
|
733 |
-
#: includes/class-gllr-settings.php:
|
734 |
#, fuzzy
|
735 |
msgid ""
|
736 |
"Adjust these values based on the number of columns in your gallery. This "
|
@@ -739,12 +808,12 @@ msgstr ""
|
|
739 |
"Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. "
|
740 |
"Cela ne changera pas la taille maximum de vos images dans la lightbox."
|
741 |
|
742 |
-
#: includes/class-gllr-settings.php:
|
743 |
#, fuzzy
|
744 |
msgid "Crop Images"
|
745 |
msgstr "Réduire les images"
|
746 |
|
747 |
-
#: includes/class-gllr-settings.php:
|
748 |
#, fuzzy
|
749 |
msgid ""
|
750 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
@@ -754,74 +823,74 @@ msgstr ""
|
|
754 |
"paramètres de personnalisation. Désactiver pour restaurer les images "
|
755 |
"automatiquement en utilisant leur aspect d'origine."
|
756 |
|
757 |
-
#: includes/class-gllr-settings.php:
|
758 |
#, fuzzy
|
759 |
msgid "Crop Position"
|
760 |
msgstr "Position pour la réduction"
|
761 |
|
762 |
-
#: includes/class-gllr-settings.php:
|
763 |
#, fuzzy
|
764 |
msgid "Select crop position base (by default: center)."
|
765 |
msgstr ""
|
766 |
"Sélectionner la position de base pour la réduction (par défaut le centre)."
|
767 |
|
768 |
-
#: includes/class-gllr-settings.php:
|
769 |
#, fuzzy
|
770 |
msgid "Image Title"
|
771 |
msgstr "Titre de l'image"
|
772 |
|
773 |
-
#: includes/class-gllr-settings.php:
|
774 |
#, fuzzy
|
775 |
msgid "Enable to display image title along with the gallery image."
|
776 |
msgstr "Activer pour afficher le titre avec l'image dans la galerie."
|
777 |
|
778 |
-
#: includes/class-gllr-settings.php:
|
779 |
#, fuzzy
|
780 |
msgid "Image Title Position"
|
781 |
msgstr "Position du titre de l'image"
|
782 |
|
783 |
-
#: includes/class-gllr-settings.php:
|
784 |
#, fuzzy
|
785 |
msgid "Under image"
|
786 |
msgstr "Sous l'image"
|
787 |
|
788 |
-
#: includes/class-gllr-settings.php:
|
789 |
#, fuzzy
|
790 |
msgid "On mouse hover"
|
791 |
msgstr "Par survol de la souris"
|
792 |
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
#, fuzzy
|
795 |
msgid "Image Border"
|
796 |
msgstr "Image avec bordure"
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
msgid ""
|
800 |
"Enable images border using the styles defined for Image Border Size and "
|
801 |
"Color options."
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: includes/class-gllr-settings.php:
|
805 |
#, fuzzy
|
806 |
msgid "Image Border Size"
|
807 |
msgstr "Taille de la bordure de l'image"
|
808 |
|
809 |
-
#: includes/class-gllr-settings.php:
|
810 |
#, fuzzy, php-format
|
811 |
msgid "Gallery image border width (default is %s)"
|
812 |
msgstr "Largeur de la bordure pour les images (par défaut %s)"
|
813 |
|
814 |
-
#: includes/class-gllr-settings.php:
|
815 |
#, fuzzy
|
816 |
msgid "Image Border Color"
|
817 |
msgstr "Choisir une couleur pour la bordure"
|
818 |
|
819 |
-
#: includes/class-gllr-settings.php:
|
820 |
#, fuzzy
|
821 |
msgid "Pagination"
|
822 |
msgstr "Pagination"
|
823 |
|
824 |
-
#: includes/class-gllr-settings.php:
|
825 |
#, fuzzy
|
826 |
msgid ""
|
827 |
"Enable pagination for images to limit number of images displayed on a single "
|
@@ -830,41 +899,37 @@ msgstr ""
|
|
830 |
"Activer la pagination pour les images afin de limiter le nombre d'images "
|
831 |
"affichées sur une seule page dans la galerie."
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
#, fuzzy
|
835 |
msgid "Number of Images"
|
836 |
msgstr "Nombre d'images"
|
837 |
|
838 |
-
#: includes/class-gllr-settings.php:
|
839 |
#, fuzzy, php-format
|
840 |
msgid "Number of images displayed per page (default is %d)."
|
841 |
msgstr "Nombre d'images affichées par page (par défaut %d)."
|
842 |
|
843 |
-
#: includes/class-gllr-settings.php:
|
844 |
#, fuzzy
|
845 |
msgid "Sort Images by"
|
846 |
msgstr "Trier les images par"
|
847 |
|
848 |
-
#: includes/class-gllr-settings.php:
|
849 |
#, fuzzy
|
850 |
msgid "Manually (default)"
|
851 |
msgstr "Manuel (défaut)"
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
#, fuzzy
|
855 |
msgid "Image ID"
|
856 |
msgstr "Image ID"
|
857 |
|
858 |
-
#: includes/class-gllr-settings.php:
|
859 |
#, fuzzy
|
860 |
msgid "Name"
|
861 |
msgstr "Nom"
|
862 |
|
863 |
-
#: includes/class-gllr-settings.php:
|
864 |
-
msgid "Random"
|
865 |
-
msgstr "Nasumično"
|
866 |
-
|
867 |
-
#: includes/class-gllr-settings.php:516
|
868 |
#, fuzzy
|
869 |
msgid ""
|
870 |
"Select images sorting order in your gallery. By default, you can sort images "
|
@@ -873,27 +938,27 @@ msgstr ""
|
|
873 |
"Choisir l'ordre de tri des images dans votre galerie. Par défaut, vous "
|
874 |
"pouvez trier les images manuellement dans l'onglet des images. "
|
875 |
|
876 |
-
#: includes/class-gllr-settings.php:
|
877 |
#, fuzzy
|
878 |
msgid "Arrange Images by"
|
879 |
msgstr "Trier les images par"
|
880 |
|
881 |
-
#: includes/class-gllr-settings.php:
|
882 |
#, fuzzy
|
883 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
884 |
msgstr "Ascendant (par ex 1, 2, 3; a, b, c)"
|
885 |
|
886 |
-
#: includes/class-gllr-settings.php:
|
887 |
#, fuzzy
|
888 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
889 |
msgstr "Descendant (par ex 1, 2, 3; a, b, c)"
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
#, fuzzy
|
893 |
msgid "Back Link"
|
894 |
msgstr "Lien de retour"
|
895 |
|
896 |
-
#: includes/class-gllr-settings.php:
|
897 |
#, fuzzy
|
898 |
msgid ""
|
899 |
"Enable to show a back link in a single gallery page which navigate to a "
|
@@ -902,110 +967,110 @@ msgstr ""
|
|
902 |
"Activer pour afficher un lien de retour dans la page d'une galerie vers la "
|
903 |
"page précédente."
|
904 |
|
905 |
-
#: includes/class-gllr-settings.php:
|
906 |
#, fuzzy
|
907 |
msgid "Back Link URL"
|
908 |
msgstr "L'URL pour le lien de retour"
|
909 |
|
910 |
-
#: includes/class-gllr-settings.php:
|
911 |
#, fuzzy
|
912 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
913 |
msgstr ""
|
914 |
"Lien de retour personnalisé vers une page. Laisser vide pour utiliser le "
|
915 |
"modèle de page de galerie."
|
916 |
|
917 |
-
#: includes/class-gllr-settings.php:
|
918 |
#, fuzzy
|
919 |
msgid "Back Link Label"
|
920 |
msgstr "Libellé pour le lien de retour"
|
921 |
|
922 |
-
#: includes/class-gllr-settings.php:
|
923 |
#, fuzzy
|
924 |
msgid "Back Link with Shortcode"
|
925 |
msgstr "Lien de retour dans le code court"
|
926 |
|
927 |
-
#: includes/class-gllr-settings.php:
|
928 |
#, fuzzy
|
929 |
msgid "Enable to display a back link on a page where shortcode is used."
|
930 |
msgstr ""
|
931 |
"Activer pour afficher le lien de retour vers la page où le code court est "
|
932 |
"utilisé."
|
933 |
|
934 |
-
#: includes/class-gllr-settings.php:
|
935 |
#, fuzzy
|
936 |
msgid "Cover Settings"
|
937 |
msgstr "Paramètres de couverture"
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
940 |
#, fuzzy
|
941 |
msgid "Galleries Page"
|
942 |
msgstr "Page des galeries"
|
943 |
|
944 |
-
#: includes/class-gllr-settings.php:
|
945 |
#, fuzzy
|
946 |
msgid "Base page where all existing galleries will be displayed."
|
947 |
msgstr "Page de base où toutes les galeries existantes seront affichées."
|
948 |
|
949 |
-
#: includes/class-gllr-settings.php:
|
950 |
msgid "Albums Displaying"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/class-gllr-settings.php:
|
954 |
msgid "Column"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/class-gllr-settings.php:
|
958 |
msgid "Rows"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/class-gllr-settings.php:
|
962 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/class-gllr-settings.php:
|
966 |
msgid "Column Alignment"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
#, fuzzy
|
971 |
msgid "Left"
|
972 |
msgstr "Gauche"
|
973 |
|
974 |
-
#: includes/class-gllr-settings.php:
|
975 |
msgid "Right"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/class-gllr-settings.php:
|
979 |
msgid "Center"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/class-gllr-settings.php:
|
983 |
msgid "Select the column alignment."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/class-gllr-settings.php:
|
987 |
#, fuzzy
|
988 |
msgid "Cover Image Size"
|
989 |
msgstr "Taille de l'image de couverture"
|
990 |
|
991 |
-
#: includes/class-gllr-settings.php:
|
992 |
#, fuzzy
|
993 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
994 |
msgstr ""
|
995 |
"Taille maximum de l'image de couverture. Utiliser les dimensions "
|
996 |
"personnalisées de l'image."
|
997 |
|
998 |
-
#: includes/class-gllr-settings.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Custom Cover Image Size"
|
1001 |
msgstr "Taille personnalisée de l'image de couverture"
|
1002 |
|
1003 |
-
#: includes/class-gllr-settings.php:
|
1004 |
#, fuzzy
|
1005 |
msgid "Crop Cover Images"
|
1006 |
msgstr "Réduire les images de couverture"
|
1007 |
|
1008 |
-
#: includes/class-gllr-settings.php:
|
1009 |
#, fuzzy
|
1010 |
msgid ""
|
1011 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
@@ -1015,12 +1080,12 @@ msgstr ""
|
|
1015 |
"dans le champ de personnalisation. Désactiver pour restaurer les images "
|
1016 |
"automatiquement en utilisant leur aspect d'origine."
|
1017 |
|
1018 |
-
#: includes/class-gllr-settings.php:
|
1019 |
#, fuzzy
|
1020 |
msgid "Cover Image Border"
|
1021 |
msgstr "Bordure de l'image de couverture"
|
1022 |
|
1023 |
-
#: includes/class-gllr-settings.php:
|
1024 |
#, fuzzy
|
1025 |
msgid ""
|
1026 |
"Enable cover images border using the styles defined for Image Border Size "
|
@@ -1029,66 +1094,47 @@ msgstr ""
|
|
1029 |
"Activer les bordures de l'image de couverture avec la taille et la couleur "
|
1030 |
"définies."
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Cover Image Border Size"
|
1035 |
msgstr "Taille de la bordure de l'image de couverture"
|
1036 |
|
1037 |
-
#: includes/class-gllr-settings.php:
|
1038 |
#, fuzzy, php-format
|
1039 |
msgid "Cover image border width (default is %s)"
|
1040 |
msgstr "Taille de la bordure de l'image de couverture (par défaut %s)"
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Cover Image Border Color"
|
1045 |
msgstr "Couleur de la bordure de l'image de couverture"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
#, fuzzy
|
1049 |
msgid "Sort Albums by"
|
1050 |
msgstr "Trier les albums par"
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
-
#, fuzzy
|
1054 |
-
msgid "Gallery ID"
|
1055 |
-
msgstr "Galerie ID"
|
1056 |
-
|
1057 |
-
#: includes/class-gllr-settings.php:681
|
1058 |
-
#, fuzzy
|
1059 |
-
msgid "Last modified date"
|
1060 |
-
msgstr "Date de dernière modification"
|
1061 |
-
|
1062 |
-
#: includes/class-gllr-settings.php:682
|
1063 |
-
#, fuzzy
|
1064 |
-
msgid "Comment count"
|
1065 |
-
msgstr "Nombre de commentaires"
|
1066 |
-
|
1067 |
-
#: includes/class-gllr-settings.php:683
|
1068 |
-
msgid "\"Order\" field on the gallery edit page"
|
1069 |
-
msgstr ""
|
1070 |
-
|
1071 |
-
#: includes/class-gllr-settings.php:687
|
1072 |
#, fuzzy
|
1073 |
msgid "Select galleries sorting order in your galleries page."
|
1074 |
msgstr "Choisissez l'ordre de tri de vos galeries dans la page des albums."
|
1075 |
|
1076 |
-
#: includes/class-gllr-settings.php:
|
1077 |
#, fuzzy
|
1078 |
msgid "Arrange Albums by"
|
1079 |
msgstr "Tirer les albums par"
|
1080 |
|
1081 |
-
#: includes/class-gllr-settings.php:
|
1082 |
#, fuzzy
|
1083 |
msgid "Read More Link Label"
|
1084 |
msgstr "Texte pour le lien \"En savoir plus\""
|
1085 |
|
1086 |
-
#: includes/class-gllr-settings.php:
|
1087 |
#, fuzzy
|
1088 |
msgid "Instant Lightbox"
|
1089 |
msgstr "Lightbox rapide"
|
1090 |
|
1091 |
-
#: includes/class-gllr-settings.php:
|
1092 |
#, fuzzy
|
1093 |
msgid ""
|
1094 |
"Enable to display all images in the lightbox after clicking cover image or "
|
@@ -1098,24 +1144,34 @@ msgstr ""
|
|
1098 |
"cliquer sur l'image de couverture ou le lien au lieu d'une page avec la "
|
1099 |
"galerie"
|
1100 |
|
1101 |
-
#: includes/class-gllr-settings.php:
|
1102 |
#, fuzzy
|
1103 |
msgid "Lightbox Settings"
|
1104 |
msgstr "Paramètres lightbox"
|
1105 |
|
1106 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1107 |
#, fuzzy
|
1108 |
msgid "Enable Lightbox"
|
1109 |
msgstr "Activer Lightbox"
|
1110 |
|
1111 |
-
#: includes/class-gllr-settings.php:
|
1112 |
#, fuzzy
|
1113 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1114 |
msgstr ""
|
1115 |
"Activer pour voir la lightbox lorsque l'on clique sur une image de la "
|
1116 |
"galerie."
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
#, fuzzy
|
1120 |
msgid ""
|
1121 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
@@ -1124,105 +1180,105 @@ msgstr ""
|
|
1124 |
"Choisissez la taille maximum de l'image pour la lightbox. \"Défaut\" "
|
1125 |
"affichera l'image d'origine dans sa taille d'origine."
|
1126 |
|
1127 |
-
#: includes/class-gllr-settings.php:
|
1128 |
#, fuzzy
|
1129 |
msgid "Overlay Color"
|
1130 |
msgstr "Couleur de superposition"
|
1131 |
|
1132 |
-
#: includes/class-gllr-settings.php:
|
1133 |
#, fuzzy
|
1134 |
msgid "Overlay Opacity"
|
1135 |
msgstr "Opacité de la superposition"
|
1136 |
|
1137 |
-
#: includes/class-gllr-settings.php:
|
1138 |
#, php-format
|
1139 |
msgid ""
|
1140 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1141 |
"is %s)."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/class-gllr-settings.php:
|
1145 |
#, fuzzy
|
1146 |
msgid "Slideshow"
|
1147 |
msgstr "Diaporama"
|
1148 |
|
1149 |
-
#: includes/class-gllr-settings.php:
|
1150 |
#, fuzzy
|
1151 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1152 |
msgstr ""
|
1153 |
"Activer pour lancer le diaporama automatiquement quand la lightbox est "
|
1154 |
"utilisée."
|
1155 |
|
1156 |
-
#: includes/class-gllr-settings.php:
|
1157 |
#, fuzzy
|
1158 |
msgid "Slideshow Duration"
|
1159 |
msgstr "Durée du diaporama"
|
1160 |
|
1161 |
-
#: includes/class-gllr-settings.php:
|
1162 |
#, fuzzy
|
1163 |
msgid "ms"
|
1164 |
msgstr "ms"
|
1165 |
|
1166 |
-
#: includes/class-gllr-settings.php:
|
1167 |
#, fuzzy
|
1168 |
msgid "Slideshow interval duration between two images."
|
1169 |
msgstr "Durée entre deux images dans le diaporama."
|
1170 |
|
1171 |
-
#: includes/class-gllr-settings.php:
|
1172 |
#, fuzzy
|
1173 |
msgid "Lightbox Helpers"
|
1174 |
msgstr "Lightbox helper"
|
1175 |
|
1176 |
-
#: includes/class-gllr-settings.php:
|
1177 |
#, fuzzy
|
1178 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1179 |
msgstr "Activer pour voir les options PRO de cette extension."
|
1180 |
|
1181 |
-
#: includes/class-gllr-settings.php:
|
1182 |
#, fuzzy
|
1183 |
msgid "Lightbox Thumbnails"
|
1184 |
msgstr "Vignettes de la lightbox"
|
1185 |
|
1186 |
-
#: includes/class-gllr-settings.php:
|
1187 |
msgid "Enable to use a lightbox helper navigation between images."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/class-gllr-settings.php:
|
1191 |
#, fuzzy
|
1192 |
msgid "Lightbox Thumbnails Position"
|
1193 |
msgstr "Position des vignettes de la lightbox"
|
1194 |
|
1195 |
-
#: includes/class-gllr-settings.php:
|
1196 |
#, fuzzy
|
1197 |
msgid "Top"
|
1198 |
msgstr "Haut"
|
1199 |
|
1200 |
-
#: includes/class-gllr-settings.php:
|
1201 |
#, fuzzy
|
1202 |
msgid "Lightbox Button Label"
|
1203 |
msgstr "Label du bouton pour Lightbox"
|
1204 |
|
1205 |
-
#: includes/class-gllr-settings.php:
|
1206 |
#, fuzzy
|
1207 |
msgid "Read More"
|
1208 |
msgstr "Lire plus..."
|
1209 |
|
1210 |
-
#: includes/class-gllr-settings.php:
|
1211 |
#, fuzzy
|
1212 |
msgid "Download Button"
|
1213 |
msgstr "Bouton de téléchargement"
|
1214 |
|
1215 |
-
#: includes/class-gllr-settings.php:
|
1216 |
#, fuzzy
|
1217 |
msgid "Enable to display download button."
|
1218 |
msgstr "Activer pour voir le bouton de téléchargement."
|
1219 |
|
1220 |
-
#: includes/class-gllr-settings.php:
|
1221 |
#, fuzzy
|
1222 |
msgid "Single Lightbox"
|
1223 |
msgstr "Lightbox simple"
|
1224 |
|
1225 |
-
#: includes/class-gllr-settings.php:
|
1226 |
#, fuzzy
|
1227 |
msgid ""
|
1228 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
@@ -1231,45 +1287,45 @@ msgstr ""
|
|
1231 |
"Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant "
|
1232 |
"sur la même page."
|
1233 |
|
1234 |
-
#: includes/class-gllr-settings.php:
|
1235 |
#, fuzzy
|
1236 |
msgid "Social Sharing Buttons Settings"
|
1237 |
msgstr "Paramètres des boutons des réseaux sociaux"
|
1238 |
|
1239 |
-
#: includes/class-gllr-settings.php:
|
1240 |
#, fuzzy
|
1241 |
msgid "Social Buttons"
|
1242 |
msgstr ""
|
1243 |
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1244 |
|
1245 |
-
#: includes/class-gllr-settings.php:
|
1246 |
#, fuzzy
|
1247 |
msgid "Enable social sharing buttons in the lightbox."
|
1248 |
msgstr ""
|
1249 |
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1250 |
|
1251 |
-
#: includes/class-gllr-settings.php:
|
1252 |
#, fuzzy
|
1253 |
msgid "Social Networks"
|
1254 |
msgstr "Réseaux sociaux"
|
1255 |
|
1256 |
-
#: includes/class-gllr-settings.php:
|
1257 |
#, fuzzy
|
1258 |
msgid "Counter"
|
1259 |
msgstr "Compteur"
|
1260 |
|
1261 |
-
#: includes/class-gllr-settings.php:
|
1262 |
msgid ""
|
1263 |
"Enable to show likes counter for each social button (not available for "
|
1264 |
"Google +1)."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/class-gllr-settings.php:
|
1268 |
#, fuzzy
|
1269 |
msgid "Demo Data"
|
1270 |
msgstr "Données de démonstration"
|
1271 |
|
1272 |
-
#: includes/class-gllr-settings.php:
|
1273 |
#, fuzzy
|
1274 |
msgid ""
|
1275 |
"Install demo data to create galleries with images, post with shortcodes and "
|
@@ -1279,12 +1335,12 @@ msgstr ""
|
|
1279 |
"images, des articles avec les différents codes courts, des pages avec des "
|
1280 |
"listes de galeries seront créés."
|
1281 |
|
1282 |
-
#: includes/class-gllr-settings.php:
|
1283 |
#, fuzzy
|
1284 |
msgid "Gallery Post Type"
|
1285 |
msgstr "Type d'article de Galerie"
|
1286 |
|
1287 |
-
#: includes/class-gllr-settings.php:
|
1288 |
#, fuzzy
|
1289 |
msgid ""
|
1290 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
@@ -1297,32 +1353,27 @@ msgstr ""
|
|
1297 |
"cependant, après la modification, merci de vérifier le paramétrage de vos "
|
1298 |
"autres extensions où le type d'article 'galerie' est utilisé."
|
1299 |
|
1300 |
-
#: includes/class-gllr-settings.php:
|
1301 |
#, fuzzy
|
1302 |
msgid "Gallery Slug"
|
1303 |
msgstr "Identifiant de la galerie"
|
1304 |
|
1305 |
-
#: includes/class-gllr-settings.php:
|
1306 |
#, fuzzy
|
1307 |
msgid "Enter the unique gallery slug."
|
1308 |
msgstr "Saisir le slug unique pour la galerie."
|
1309 |
|
1310 |
-
#: includes/class-gllr-settings.php:
|
1311 |
#, fuzzy
|
1312 |
msgid "Activate Now"
|
1313 |
msgstr "Activer maintenant"
|
1314 |
|
1315 |
-
#: includes/class-gllr-settings.php:
|
1316 |
-
#, fuzzy
|
1317 |
-
msgid "Install Now"
|
1318 |
-
msgstr "Installer maintenant"
|
1319 |
-
|
1320 |
-
#: includes/class-gllr-settings.php:965
|
1321 |
#, fuzzy
|
1322 |
msgid "Enable to include galleries to your website search."
|
1323 |
msgstr "Activer pour inclure les galeries dans la recherche de votre site."
|
1324 |
|
1325 |
-
#: includes/class-gllr-settings.php:
|
1326 |
#, fuzzy, php-format
|
1327 |
msgid "%s is required."
|
1328 |
msgstr "%s est requis"
|
@@ -1475,10 +1526,6 @@ msgstr "Oui, installer les données de démonstration"
|
|
1475 |
#~ msgid "Learn more"
|
1476 |
#~ msgstr "Pročitaj više"
|
1477 |
|
1478 |
-
#, fuzzy
|
1479 |
-
#~ msgid "Activate"
|
1480 |
-
#~ msgstr "Aktivirani moduli"
|
1481 |
-
|
1482 |
#, fuzzy
|
1483 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1484 |
#~ msgstr "Afficher une image en taille normale dans le boite"
|
@@ -1664,10 +1711,6 @@ msgstr "Oui, installer les données de démonstration"
|
|
1664 |
#~ msgid "Select a background color"
|
1665 |
#~ msgstr "Izaberi pozadinsku boju"
|
1666 |
|
1667 |
-
#, fuzzy
|
1668 |
-
#~ msgid "Sort galleries by"
|
1669 |
-
#~ msgstr "Poređaj slike po"
|
1670 |
-
|
1671 |
#~ msgid "Width (in px)"
|
1672 |
#~ msgstr "Širina (u pikselima)"
|
1673 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Radovan Georgijevic, Andrijana Nikolic <http://www."
|
9 |
"georgijevic.info, andrijanan@webhostinggeeks.com>\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
+
"X-Generator: Poedit 2.0.6\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
23 |
msgid "Gallery Settings"
|
24 |
msgstr "Podešavanja Galerije"
|
25 |
|
26 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
27 |
#, fuzzy
|
28 |
msgid "Global Settings"
|
29 |
msgstr "Paramètres généraux"
|
30 |
|
31 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
32 |
#, fuzzy
|
33 |
msgid "Upgrade to Pro"
|
34 |
msgstr "Пређи на Про"
|
35 |
|
36 |
+
#: gallery-plugin.php:340
|
37 |
#, fuzzy
|
38 |
msgid "Return to all albums"
|
39 |
msgstr "Revenir à tous les albums"
|
40 |
|
41 |
+
#: gallery-plugin.php:354
|
42 |
msgid "See images »"
|
43 |
msgstr "Pogledaj sliku »"
|
44 |
|
45 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
46 |
msgid "Galleries"
|
47 |
msgstr "Galerije"
|
48 |
|
49 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
50 |
msgid "Gallery"
|
51 |
msgstr "Galerija"
|
52 |
|
53 |
+
#: gallery-plugin.php:444
|
54 |
msgid "Add New Gallery"
|
55 |
msgstr "Dodaj novu Galeriju"
|
56 |
|
57 |
+
#: gallery-plugin.php:445
|
58 |
msgid "Edit Gallery"
|
59 |
msgstr "Uredi Galeriju"
|
60 |
|
61 |
+
#: gallery-plugin.php:446
|
62 |
msgid "New Gallery"
|
63 |
msgstr "Nova Galerija"
|
64 |
|
65 |
+
#: gallery-plugin.php:447
|
66 |
msgid "View Gallery"
|
67 |
msgstr "Pregled Galerije"
|
68 |
|
69 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
70 |
#, fuzzy
|
71 |
msgid "Search Galleries"
|
72 |
msgstr "Rechercher une galerie"
|
73 |
|
74 |
+
#: gallery-plugin.php:449
|
75 |
msgid "No Gallery found"
|
76 |
msgstr "Nije pronađena Galerija"
|
77 |
|
78 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
79 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
80 |
+
#: gallery-plugin.php:3332
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Categories"
|
83 |
msgstr "Catégories de galeries"
|
84 |
|
85 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
86 |
#, fuzzy
|
87 |
msgid "Gallery Category"
|
88 |
msgstr "Catégories de galeries"
|
89 |
|
90 |
+
#: gallery-plugin.php:473
|
91 |
#, fuzzy
|
92 |
msgid "Add Gallery Category"
|
93 |
msgstr "Ajouter une catégorie à la galerie"
|
94 |
|
95 |
+
#: gallery-plugin.php:474
|
96 |
#, fuzzy
|
97 |
msgid "Add New Gallery Category"
|
98 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
99 |
|
100 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
101 |
#, fuzzy
|
102 |
msgid "Edit Gallery Category"
|
103 |
msgstr "Modifier la catégorie de la galerie"
|
104 |
|
105 |
+
#: gallery-plugin.php:477
|
106 |
#, fuzzy
|
107 |
msgid "New Gallery Category"
|
108 |
msgstr "Ajouter une nouvelle catégorie de galerie"
|
109 |
|
110 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
111 |
#, fuzzy
|
112 |
msgid "View Gallery Category"
|
113 |
msgstr "Voir les catégories de galerie"
|
114 |
|
115 |
+
#: gallery-plugin.php:480
|
116 |
#, fuzzy
|
117 |
msgid "Find Gallery Category"
|
118 |
msgstr "Trouver une catégorie de gallerie"
|
119 |
|
120 |
+
#: gallery-plugin.php:481
|
121 |
#, fuzzy
|
122 |
msgid "No Gallery Categories found"
|
123 |
msgstr "Aucune catégorie de galerie trouvée"
|
124 |
|
125 |
+
#: gallery-plugin.php:482
|
126 |
#, fuzzy
|
127 |
msgid "No Gallery Categories found in Trash"
|
128 |
msgstr "Pas de catégorie de galerie trouvée dans la poubelle"
|
129 |
|
130 |
+
#: gallery-plugin.php:483
|
131 |
#, fuzzy
|
132 |
msgid "Parent Gallery Category"
|
133 |
msgstr "Catégorie parente des galeries"
|
134 |
|
135 |
+
#: gallery-plugin.php:484
|
136 |
#, fuzzy
|
137 |
msgid "Gallery Categories list navigation"
|
138 |
msgstr "Navigation dans la liste des catégories de galerie"
|
139 |
|
140 |
+
#: gallery-plugin.php:485
|
141 |
#, fuzzy
|
142 |
msgid "Gallery Categories list"
|
143 |
msgstr "Liste des catégories de galeries"
|
144 |
|
145 |
+
#: gallery-plugin.php:533
|
146 |
msgid "Gallery Shortcode"
|
147 |
msgstr "Kratak kod za Galeriju"
|
148 |
|
149 |
+
#: gallery-plugin.php:542
|
150 |
#, fuzzy
|
151 |
msgid ""
|
152 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
155 |
"Ajouter une galerie avec des images dans vos articles, pages, type d'article "
|
156 |
"personnalisé ou widgets en utilisant le code court :"
|
157 |
|
158 |
+
#: gallery-plugin.php:546
|
159 |
#, fuzzy
|
160 |
msgid ""
|
161 |
"Add a gallery cover including featured image, description, and a link to "
|
164 |
"Ajouter une présentation de votre galerie avec une image à la une, une "
|
165 |
"description et un lien vers votre galerie en utilisant le code court :"
|
166 |
|
167 |
+
#: gallery-plugin.php:659
|
168 |
#, fuzzy
|
169 |
msgid "Note"
|
170 |
msgstr "Note"
|
171 |
|
172 |
+
#: gallery-plugin.php:659
|
173 |
#, php-format
|
174 |
msgid ""
|
175 |
"When deleting a category, the galleries that belong to this category will "
|
176 |
"not be deleted. These galleries will be moved to the category %s."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: gallery-plugin.php:670
|
180 |
+
#, fuzzy
|
181 |
+
msgid "Sort Galleries in Category by"
|
182 |
+
msgstr "Poređaj slike po"
|
183 |
+
|
184 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
185 |
+
#: includes/class-gllr-settings.php:711
|
186 |
+
#, fuzzy
|
187 |
+
msgid "Gallery ID"
|
188 |
+
msgstr "Galerie ID"
|
189 |
+
|
190 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
191 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
192 |
+
#: includes/class-gllr-settings.php:712
|
193 |
+
msgid "Title"
|
194 |
+
msgstr "Naslov"
|
195 |
+
|
196 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
197 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
198 |
+
msgid "Date"
|
199 |
+
msgstr "Datum"
|
200 |
+
|
201 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
202 |
+
#: includes/class-gllr-settings.php:714
|
203 |
+
#, fuzzy
|
204 |
+
msgid "Last modified date"
|
205 |
+
msgstr "Date de dernière modification"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
208 |
+
#: includes/class-gllr-settings.php:715
|
209 |
+
#, fuzzy
|
210 |
+
msgid "Comment count"
|
211 |
+
msgstr "Nombre de commentaires"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
214 |
+
#: includes/class-gllr-settings.php:716
|
215 |
+
msgid "\"Order\" field on the gallery edit page"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
219 |
+
#: includes/class-gllr-settings.php:717
|
220 |
+
msgid "Author"
|
221 |
+
msgstr "Autor"
|
222 |
+
|
223 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
224 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
225 |
+
msgid "Random"
|
226 |
+
msgstr "Nasumično"
|
227 |
+
|
228 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
229 |
+
#, fuzzy
|
230 |
+
#| msgid "Settings"
|
231 |
+
msgid "Plugin Settings"
|
232 |
+
msgstr "Podešavanja"
|
233 |
+
|
234 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
235 |
+
#, fuzzy
|
236 |
+
msgid "Select galleries sorting order in your category."
|
237 |
+
msgstr "Choisissez l'ordre de tri de vos galeries dans la page des albums."
|
238 |
+
|
239 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
240 |
#, fuzzy
|
241 |
msgid "Shortcode"
|
242 |
msgstr "Code court"
|
243 |
|
244 |
+
#: gallery-plugin.php:749
|
245 |
#, fuzzy
|
246 |
msgid "All Gallery Categories"
|
247 |
msgstr "Toutes les catégories de galerie"
|
248 |
|
249 |
+
#: gallery-plugin.php:827
|
250 |
#, fuzzy
|
251 |
msgid "You can't delete default gallery category."
|
252 |
msgstr "Vous ne pouvez pas supprimer la catégorie par défaut des galeries."
|
253 |
|
254 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
255 |
msgid "Sorry, nothing found."
|
256 |
msgstr "Nažalost nije pronađeno"
|
257 |
|
258 |
+
#: gallery-plugin.php:1717
|
259 |
#, fuzzy
|
260 |
msgid "Featured Image"
|
261 |
msgstr "Image à la une"
|
262 |
|
263 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
264 |
#, fuzzy
|
265 |
msgid "Images"
|
266 |
msgstr "Images"
|
267 |
|
268 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
#, php-format
|
270 |
msgid "%s Settings"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
274 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
275 |
msgid "Settings"
|
276 |
msgstr "Podešavanja"
|
277 |
|
278 |
+
#: gallery-plugin.php:1838
|
279 |
msgid "FAQ"
|
280 |
msgstr "FAQ"
|
281 |
|
282 |
+
#: gallery-plugin.php:1839
|
283 |
msgid "Support"
|
284 |
msgstr "Podrška"
|
285 |
|
286 |
+
#: gallery-plugin.php:1878
|
287 |
#, fuzzy
|
288 |
msgid "Updating images..."
|
289 |
msgstr "Mise à jour des images..."
|
290 |
|
291 |
+
#: gallery-plugin.php:1879
|
292 |
#, fuzzy
|
293 |
msgid "No images found."
|
294 |
msgstr "Pas d'image trouvée."
|
295 |
|
296 |
+
#: gallery-plugin.php:1880
|
297 |
#, fuzzy
|
298 |
msgid "All images were updated."
|
299 |
msgstr "Toutes les images ont été mises à jour."
|
300 |
|
301 |
+
#: gallery-plugin.php:1881
|
302 |
#, fuzzy
|
303 |
msgid "Error."
|
304 |
msgstr "Грешка"
|
305 |
|
306 |
+
#: gallery-plugin.php:1893
|
307 |
#, fuzzy
|
308 |
msgid ""
|
309 |
"You are about to remove these items from this gallery.\n"
|
312 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
313 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
314 |
|
315 |
+
#: gallery-plugin.php:1894
|
316 |
#, fuzzy
|
317 |
msgid ""
|
318 |
"You are about to remove this image from the gallery.\n"
|
321 |
"Vous allez supprimer ces éléments de la galerie.\n"
|
322 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
323 |
|
324 |
+
#: gallery-plugin.php:1895
|
325 |
#, fuzzy
|
326 |
msgid ""
|
327 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
330 |
"ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
331 |
"correctement. Merci de mettre à jour votre version de WordPress."
|
332 |
|
333 |
+
#: gallery-plugin.php:1896
|
334 |
#, fuzzy
|
335 |
msgid "Insert Media"
|
336 |
msgstr "Insérer un média"
|
337 |
|
338 |
+
#: gallery-plugin.php:1897
|
339 |
#, fuzzy
|
340 |
msgid "Insert"
|
341 |
msgstr "Insérer"
|
342 |
|
343 |
+
#: gallery-plugin.php:1898
|
344 |
+
msgid "Gallery has been successfully added!"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
348 |
#, fuzzy
|
349 |
msgid "Image size not defined"
|
350 |
msgstr "Taille de l'image non définie"
|
351 |
|
352 |
+
#: gallery-plugin.php:2455
|
353 |
#, fuzzy
|
354 |
msgid ""
|
355 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
358 |
"Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
|
359 |
"WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
360 |
|
361 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
362 |
#, fuzzy
|
363 |
msgid "Invalid path"
|
364 |
msgstr "Chemin invalide"
|
365 |
|
366 |
+
#: gallery-plugin.php:2607
|
367 |
#, fuzzy
|
368 |
msgid "List View"
|
369 |
msgstr "Vue en mode liste"
|
370 |
|
371 |
+
#: gallery-plugin.php:2608
|
372 |
#, fuzzy
|
373 |
msgid "Grid View"
|
374 |
msgstr "Vue en mode grille"
|
375 |
|
376 |
+
#: gallery-plugin.php:2665
|
377 |
#, fuzzy
|
378 |
msgid "Filter"
|
379 |
msgstr "Filtrer"
|
380 |
|
381 |
+
#: gallery-plugin.php:2669
|
382 |
#, fuzzy
|
383 |
msgid "Empty Trash"
|
384 |
msgstr "Vider la corbeille"
|
385 |
|
386 |
+
#: gallery-plugin.php:2692
|
387 |
#, fuzzy
|
388 |
msgid "No images found"
|
389 |
msgstr "Pas d'image trouvée"
|
390 |
|
391 |
+
#: gallery-plugin.php:2745
|
392 |
#, fuzzy
|
393 |
msgid "Select bulk action"
|
394 |
msgstr "Sélectionne l'action en masse"
|
395 |
|
396 |
+
#: gallery-plugin.php:2747
|
397 |
#, fuzzy
|
398 |
msgid "Bulk Actions"
|
399 |
msgstr "Actions en masse"
|
400 |
|
401 |
+
#: gallery-plugin.php:2757
|
402 |
#, fuzzy
|
403 |
msgid "Apply"
|
404 |
msgstr "Appliquer"
|
405 |
|
406 |
+
#: gallery-plugin.php:2764
|
407 |
#, fuzzy
|
408 |
msgid "Delete from Gallery"
|
409 |
msgstr "Supprimer de la galerie"
|
410 |
|
411 |
+
#: gallery-plugin.php:2773
|
412 |
#, fuzzy
|
413 |
msgid "Bulk Select"
|
414 |
msgstr "Sélection en masse"
|
415 |
|
416 |
+
#: gallery-plugin.php:2774
|
417 |
#, fuzzy
|
418 |
msgid "Cancel Selection"
|
419 |
msgstr "Annuler la sélection"
|
420 |
|
421 |
+
#: gallery-plugin.php:2775
|
422 |
#, fuzzy
|
423 |
msgid "Delete Selected"
|
424 |
msgstr "Supprimer la sélection"
|
425 |
|
426 |
+
#: gallery-plugin.php:2786
|
427 |
#, fuzzy
|
428 |
msgid "File"
|
429 |
msgstr "Fichier"
|
430 |
|
431 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
432 |
#, fuzzy
|
433 |
msgid "Dimensions"
|
434 |
msgstr "Dimensions"
|
435 |
|
436 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
437 |
#, fuzzy
|
438 |
msgid "Alt Text"
|
439 |
msgstr "Alt Texte"
|
440 |
|
441 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
442 |
msgid "URL"
|
443 |
msgstr "URL"
|
444 |
|
445 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
446 |
#, fuzzy
|
447 |
msgid ""
|
448 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
451 |
"Saisir votre URL personnalisée pour faire un lien de cette image vers une "
|
452 |
"page ou un article. Laisser vide pour ouvrir l'image en plein écran."
|
453 |
|
454 |
+
#: gallery-plugin.php:2872
|
455 |
#, fuzzy
|
456 |
msgid "Remove Image from Gallery"
|
457 |
msgstr "Supprimer les images de la galerie"
|
458 |
|
459 |
+
#: gallery-plugin.php:2875
|
460 |
#, fuzzy
|
461 |
msgid "Edit Image Info"
|
462 |
msgstr "Modifier les informations de l'image"
|
463 |
|
464 |
+
#: gallery-plugin.php:2876
|
465 |
#, fuzzy
|
466 |
msgid "Deselect"
|
467 |
msgstr "Désélectionner"
|
468 |
|
469 |
+
#: gallery-plugin.php:2888
|
470 |
#, fuzzy
|
471 |
msgid "File name"
|
472 |
msgstr "Nom du fichier"
|
473 |
|
474 |
+
#: gallery-plugin.php:2889
|
475 |
#, fuzzy
|
476 |
msgid "File type"
|
477 |
msgstr "Type de fichier"
|
478 |
|
479 |
+
#: gallery-plugin.php:2914
|
480 |
#, fuzzy
|
481 |
msgid "Description"
|
482 |
msgstr "Description"
|
483 |
|
484 |
+
#: gallery-plugin.php:2920
|
485 |
#, fuzzy
|
486 |
msgid "Lightbox Button URL"
|
487 |
msgstr "URL du bouton pour Lightbox"
|
488 |
|
489 |
+
#: gallery-plugin.php:2927
|
490 |
#, fuzzy
|
491 |
msgid "New Tab"
|
492 |
msgstr "Nouvel onglet"
|
493 |
|
494 |
+
#: gallery-plugin.php:2929
|
495 |
#, fuzzy
|
496 |
msgid "Enable to open URLs above in a new tab."
|
497 |
msgstr "Activer pour ouvrir l'URL dans un nouvel onglet."
|
498 |
|
499 |
+
#: gallery-plugin.php:2934
|
500 |
#, fuzzy
|
501 |
msgid "Go Pro"
|
502 |
msgstr "Passer à la version PRO"
|
503 |
|
504 |
+
#: gallery-plugin.php:2940
|
505 |
#, fuzzy
|
506 |
msgid "Edit more details"
|
507 |
msgstr "Modifier plus de détails"
|
508 |
|
509 |
+
#: gallery-plugin.php:2942
|
510 |
#, fuzzy
|
511 |
msgid "Remove from Gallery"
|
512 |
msgstr "Supprimer de la galerie"
|
513 |
|
514 |
+
#: gallery-plugin.php:2978
|
515 |
#, fuzzy, php-format
|
516 |
msgid "Select %s"
|
517 |
msgstr "Sélectionner %s"
|
518 |
|
519 |
+
#: gallery-plugin.php:2991
|
520 |
#, fuzzy, php-format
|
521 |
msgid "Edit “%s”"
|
522 |
msgstr "Pré-visualiser “%s”"
|
523 |
|
524 |
+
#: gallery-plugin.php:2999
|
525 |
#, fuzzy
|
526 |
msgid "Edit Attachment Info"
|
527 |
msgstr "Modifier les informations du document"
|
528 |
|
529 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
530 |
#, fuzzy
|
531 |
msgid "Edit"
|
532 |
msgstr "Modifier"
|
533 |
|
534 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
535 |
#, fuzzy
|
536 |
msgid "Trash"
|
537 |
msgstr "Poubelle"
|
538 |
|
539 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
540 |
#, fuzzy
|
541 |
msgid "Delete Permanently"
|
542 |
msgstr "Supprimer de manière définitive"
|
543 |
|
544 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
545 |
#, fuzzy, php-format
|
546 |
msgid "View “%s”"
|
547 |
msgstr "Pré-visualiser “%s”"
|
548 |
|
549 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
550 |
#, fuzzy
|
551 |
msgid "View"
|
552 |
msgstr "Voir"
|
553 |
|
554 |
+
#: gallery-plugin.php:3048
|
555 |
#, fuzzy
|
556 |
msgid "Attach"
|
557 |
msgstr "Attacher"
|
558 |
|
559 |
+
#: gallery-plugin.php:3056
|
560 |
#, fuzzy
|
561 |
msgid "Restore"
|
562 |
msgstr "Remettre"
|
563 |
|
564 |
+
#: gallery-plugin.php:3086
|
565 |
#, fuzzy
|
566 |
msgid "A list or dropdown of Gallery categories."
|
567 |
msgstr "Une liste ou une liste déroulante des catégories de galerie."
|
568 |
|
569 |
+
#: gallery-plugin.php:3131
|
570 |
#, fuzzy
|
571 |
msgid "Select Gallery Category"
|
572 |
msgstr "Choisir une catégorie pour la galerie"
|
573 |
|
574 |
+
#: gallery-plugin.php:3189
|
575 |
#, fuzzy
|
576 |
msgid "Title:"
|
577 |
msgstr "Naslov"
|
578 |
|
579 |
+
#: gallery-plugin.php:3192
|
580 |
#, fuzzy
|
581 |
msgid "Display as dropdown"
|
582 |
msgstr "Montrer sous la forme d'une liste déroulante"
|
583 |
|
584 |
+
#: gallery-plugin.php:3194
|
585 |
#, fuzzy
|
586 |
msgid "Show gallery counts"
|
587 |
msgstr "Monter le nombre de galleries"
|
588 |
|
589 |
+
#: gallery-plugin.php:3196
|
590 |
#, fuzzy
|
591 |
msgid "Show hierarchy"
|
592 |
msgstr "Voir la hiérarchie"
|
593 |
|
594 |
+
#: gallery-plugin.php:3312
|
595 |
#, fuzzy
|
596 |
msgid "Warning"
|
597 |
msgstr "Упозорење"
|
598 |
|
599 |
+
#: gallery-plugin.php:3312
|
600 |
#, fuzzy
|
601 |
msgid "You can add only images to the gallery"
|
602 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
603 |
|
604 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
605 |
#, fuzzy
|
606 |
msgid "no title"
|
607 |
msgstr "Naslov"
|
608 |
|
609 |
+
#: gallery-plugin.php:3377
|
610 |
#, fuzzy
|
611 |
msgid ""
|
612 |
"Display an album image with the description and the link to a single gallery "
|
615 |
"Afficher une image pour l'album avec la description et un lien vers une page "
|
616 |
"contenant la galerie"
|
617 |
|
618 |
+
#: gallery-plugin.php:3381
|
619 |
#, fuzzy
|
620 |
msgid "Sorry, no gallery found."
|
621 |
msgstr "Désolé, rien n'a été trouvé."
|
655 |
msgid "License Key"
|
656 |
msgstr "Clé de licence"
|
657 |
|
658 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
#, fuzzy
|
660 |
msgid "Settings saved"
|
661 |
msgstr "Paramètres enregistrés."
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:256
|
664 |
#, fuzzy
|
665 |
msgid "Please, enable JavaScript in Your browser."
|
666 |
msgstr "Merci d'activer JavaScript dans votre navigateur."
|
667 |
|
668 |
+
#: includes/class-gllr-settings.php:260
|
669 |
+
#, fuzzy
|
670 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
671 |
+
msgstr ""
|
672 |
+
"La taille personnalisée des images a été modifiée. Vous devez mettre à jour "
|
673 |
+
"les images dans les galeries."
|
674 |
+
|
675 |
+
#: includes/class-gllr-settings.php:261
|
676 |
#, fuzzy
|
677 |
msgid "Update Images"
|
678 |
msgstr "Mise à jour des images"
|
679 |
|
680 |
+
#: includes/class-gllr-settings.php:276
|
681 |
#, fuzzy
|
682 |
msgid "Gallery Images"
|
683 |
msgstr "Galerie d'images"
|
684 |
|
685 |
+
#: includes/class-gllr-settings.php:281
|
686 |
msgid "Images adding requires JavaScript."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/class-gllr-settings.php:284
|
690 |
#, fuzzy
|
691 |
msgid "Add Media"
|
692 |
msgstr "Ajouter un média"
|
693 |
|
694 |
+
#: includes/class-gllr-settings.php:293
|
695 |
#, fuzzy
|
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 |
+
#: includes/class-gllr-settings.php:293
|
701 |
#, fuzzy
|
702 |
msgid "Switch to the list view"
|
703 |
msgstr "Basculer vers une vue en mode liste"
|
704 |
|
705 |
+
#: includes/class-gllr-settings.php:320
|
706 |
+
#, fuzzy
|
707 |
+
msgid "Add Gallery to the Slider"
|
708 |
+
msgstr "Ajouter une catégorie à la galerie"
|
709 |
+
|
710 |
+
#: includes/class-gllr-settings.php:332
|
711 |
+
#, fuzzy
|
712 |
+
msgid "Activate"
|
713 |
+
msgstr "Aktivirani moduli"
|
714 |
+
|
715 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
716 |
+
#, fuzzy
|
717 |
+
msgid "Install Now"
|
718 |
+
msgstr "Installer maintenant"
|
719 |
+
|
720 |
+
#: includes/class-gllr-settings.php:337
|
721 |
+
msgid "Add"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/class-gllr-settings.php:340
|
725 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: includes/class-gllr-settings.php:351
|
729 |
#, fuzzy
|
730 |
msgid "Single Gallery Settings"
|
731 |
msgstr "Paramètres de la galerie"
|
732 |
|
733 |
+
#: includes/class-gllr-settings.php:353
|
734 |
#, fuzzy, php-format
|
735 |
msgid "Enable to configure single gallery settings and disable %s."
|
736 |
msgstr ""
|
737 |
"Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
|
738 |
|
739 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
740 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
741 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
742 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
743 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
744 |
#, fuzzy
|
745 |
msgid "Close"
|
746 |
msgstr "Затвори"
|
747 |
|
748 |
+
#: includes/class-gllr-settings.php:369
|
749 |
#, fuzzy
|
750 |
msgid "Gallery Layout"
|
751 |
msgstr "Mise en page de la galerie"
|
752 |
|
753 |
+
#: includes/class-gllr-settings.php:374
|
754 |
#, fuzzy
|
755 |
msgid "Grid"
|
756 |
msgstr "Grille"
|
757 |
|
758 |
+
#: includes/class-gllr-settings.php:380
|
759 |
#, fuzzy
|
760 |
msgid "Masonry"
|
761 |
msgstr "Mur"
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:393
|
764 |
#, fuzzy
|
765 |
msgid "Number of Columns"
|
766 |
msgstr "Nombre de colonnes"
|
767 |
|
768 |
+
#: includes/class-gllr-settings.php:396
|
769 |
#, fuzzy, php-format
|
770 |
msgid "Number of gallery columns (default is %s)."
|
771 |
msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
|
772 |
|
773 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
774 |
#, fuzzy
|
775 |
msgid "Image Size"
|
776 |
msgstr "Taille de l'image"
|
777 |
|
778 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
779 |
#, fuzzy
|
780 |
msgid "Custom"
|
781 |
msgstr "Personnalisé"
|
782 |
|
783 |
+
#: includes/class-gllr-settings.php:408
|
784 |
#, fuzzy
|
785 |
msgid ""
|
786 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
788 |
"Taille maximum d'une image dans la galerie. \"Personnalisé\" utilise les "
|
789 |
"valeurs définies pour les images."
|
790 |
|
791 |
+
#: includes/class-gllr-settings.php:412
|
792 |
#, fuzzy
|
793 |
msgid "Custom Image Size"
|
794 |
msgstr "Taille de l'image personalisée"
|
795 |
|
796 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
797 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
798 |
#, fuzzy
|
799 |
msgid "px"
|
800 |
msgstr "px"
|
801 |
|
802 |
+
#: includes/class-gllr-settings.php:415
|
803 |
#, fuzzy
|
804 |
msgid ""
|
805 |
"Adjust these values based on the number of columns in your gallery. This "
|
808 |
"Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. "
|
809 |
"Cela ne changera pas la taille maximum de vos images dans la lightbox."
|
810 |
|
811 |
+
#: includes/class-gllr-settings.php:426
|
812 |
#, fuzzy
|
813 |
msgid "Crop Images"
|
814 |
msgstr "Réduire les images"
|
815 |
|
816 |
+
#: includes/class-gllr-settings.php:428
|
817 |
#, fuzzy
|
818 |
msgid ""
|
819 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
823 |
"paramètres de personnalisation. Désactiver pour restaurer les images "
|
824 |
"automatiquement en utilisant leur aspect d'origine."
|
825 |
|
826 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
827 |
#, fuzzy
|
828 |
msgid "Crop Position"
|
829 |
msgstr "Position pour la réduction"
|
830 |
|
831 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
832 |
#, fuzzy
|
833 |
msgid "Select crop position base (by default: center)."
|
834 |
msgstr ""
|
835 |
"Sélectionner la position de base pour la réduction (par défaut le centre)."
|
836 |
|
837 |
+
#: includes/class-gllr-settings.php:457
|
838 |
#, fuzzy
|
839 |
msgid "Image Title"
|
840 |
msgstr "Titre de l'image"
|
841 |
|
842 |
+
#: includes/class-gllr-settings.php:459
|
843 |
#, fuzzy
|
844 |
msgid "Enable to display image title along with the gallery image."
|
845 |
msgstr "Activer pour afficher le titre avec l'image dans la galerie."
|
846 |
|
847 |
+
#: includes/class-gllr-settings.php:470
|
848 |
#, fuzzy
|
849 |
msgid "Image Title Position"
|
850 |
msgstr "Position du titre de l'image"
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:475
|
853 |
#, fuzzy
|
854 |
msgid "Under image"
|
855 |
msgstr "Sous l'image"
|
856 |
|
857 |
+
#: includes/class-gllr-settings.php:481
|
858 |
#, fuzzy
|
859 |
msgid "On mouse hover"
|
860 |
msgstr "Par survol de la souris"
|
861 |
|
862 |
+
#: includes/class-gllr-settings.php:494
|
863 |
#, fuzzy
|
864 |
msgid "Image Border"
|
865 |
msgstr "Image avec bordure"
|
866 |
|
867 |
+
#: includes/class-gllr-settings.php:496
|
868 |
msgid ""
|
869 |
"Enable images border using the styles defined for Image Border Size and "
|
870 |
"Color options."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/class-gllr-settings.php:500
|
874 |
#, fuzzy
|
875 |
msgid "Image Border Size"
|
876 |
msgstr "Taille de la bordure de l'image"
|
877 |
|
878 |
+
#: includes/class-gllr-settings.php:503
|
879 |
#, fuzzy, php-format
|
880 |
msgid "Gallery image border width (default is %s)"
|
881 |
msgstr "Largeur de la bordure pour les images (par défaut %s)"
|
882 |
|
883 |
+
#: includes/class-gllr-settings.php:507
|
884 |
#, fuzzy
|
885 |
msgid "Image Border Color"
|
886 |
msgstr "Choisir une couleur pour la bordure"
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:520
|
889 |
#, fuzzy
|
890 |
msgid "Pagination"
|
891 |
msgstr "Pagination"
|
892 |
|
893 |
+
#: includes/class-gllr-settings.php:523
|
894 |
#, fuzzy
|
895 |
msgid ""
|
896 |
"Enable pagination for images to limit number of images displayed on a single "
|
899 |
"Activer la pagination pour les images afin de limiter le nombre d'images "
|
900 |
"affichées sur une seule page dans la galerie."
|
901 |
|
902 |
+
#: includes/class-gllr-settings.php:527
|
903 |
#, fuzzy
|
904 |
msgid "Number of Images"
|
905 |
msgstr "Nombre d'images"
|
906 |
|
907 |
+
#: includes/class-gllr-settings.php:530
|
908 |
#, fuzzy, php-format
|
909 |
msgid "Number of images displayed per page (default is %d)."
|
910 |
msgstr "Nombre d'images affichées par page (par défaut %d)."
|
911 |
|
912 |
+
#: includes/class-gllr-settings.php:540
|
913 |
#, fuzzy
|
914 |
msgid "Sort Images by"
|
915 |
msgstr "Trier les images par"
|
916 |
|
917 |
+
#: includes/class-gllr-settings.php:543
|
918 |
#, fuzzy
|
919 |
msgid "Manually (default)"
|
920 |
msgstr "Manuel (défaut)"
|
921 |
|
922 |
+
#: includes/class-gllr-settings.php:544
|
923 |
#, fuzzy
|
924 |
msgid "Image ID"
|
925 |
msgstr "Image ID"
|
926 |
|
927 |
+
#: includes/class-gllr-settings.php:545
|
928 |
#, fuzzy
|
929 |
msgid "Name"
|
930 |
msgstr "Nom"
|
931 |
|
932 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
933 |
#, fuzzy
|
934 |
msgid ""
|
935 |
"Select images sorting order in your gallery. By default, you can sort images "
|
938 |
"Choisir l'ordre de tri des images dans votre galerie. Par défaut, vous "
|
939 |
"pouvez trier les images manuellement dans l'onglet des images. "
|
940 |
|
941 |
+
#: includes/class-gllr-settings.php:553
|
942 |
#, fuzzy
|
943 |
msgid "Arrange Images by"
|
944 |
msgstr "Trier les images par"
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
947 |
#, fuzzy
|
948 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
949 |
msgstr "Ascendant (par ex 1, 2, 3; a, b, c)"
|
950 |
|
951 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
952 |
#, fuzzy
|
953 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
954 |
msgstr "Descendant (par ex 1, 2, 3; a, b, c)"
|
955 |
|
956 |
+
#: includes/class-gllr-settings.php:562
|
957 |
#, fuzzy
|
958 |
msgid "Back Link"
|
959 |
msgstr "Lien de retour"
|
960 |
|
961 |
+
#: includes/class-gllr-settings.php:564
|
962 |
#, fuzzy
|
963 |
msgid ""
|
964 |
"Enable to show a back link in a single gallery page which navigate to a "
|
967 |
"Activer pour afficher un lien de retour dans la page d'une galerie vers la "
|
968 |
"page précédente."
|
969 |
|
970 |
+
#: includes/class-gllr-settings.php:568
|
971 |
#, fuzzy
|
972 |
msgid "Back Link URL"
|
973 |
msgstr "L'URL pour le lien de retour"
|
974 |
|
975 |
+
#: includes/class-gllr-settings.php:571
|
976 |
#, fuzzy
|
977 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
978 |
msgstr ""
|
979 |
"Lien de retour personnalisé vers une page. Laisser vide pour utiliser le "
|
980 |
"modèle de page de galerie."
|
981 |
|
982 |
+
#: includes/class-gllr-settings.php:575
|
983 |
#, fuzzy
|
984 |
msgid "Back Link Label"
|
985 |
msgstr "Libellé pour le lien de retour"
|
986 |
|
987 |
+
#: includes/class-gllr-settings.php:581
|
988 |
#, fuzzy
|
989 |
msgid "Back Link with Shortcode"
|
990 |
msgstr "Lien de retour dans le code court"
|
991 |
|
992 |
+
#: includes/class-gllr-settings.php:584
|
993 |
#, fuzzy
|
994 |
msgid "Enable to display a back link on a page where shortcode is used."
|
995 |
msgstr ""
|
996 |
"Activer pour afficher le lien de retour vers la page où le code court est "
|
997 |
"utilisé."
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:595
|
1000 |
#, fuzzy
|
1001 |
msgid "Cover Settings"
|
1002 |
msgstr "Paramètres de couverture"
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:600
|
1005 |
#, fuzzy
|
1006 |
msgid "Galleries Page"
|
1007 |
msgstr "Page des galeries"
|
1008 |
|
1009 |
+
#: includes/class-gllr-settings.php:608
|
1010 |
#, fuzzy
|
1011 |
msgid "Base page where all existing galleries will be displayed."
|
1012 |
msgstr "Page de base où toutes les galeries existantes seront affichées."
|
1013 |
|
1014 |
+
#: includes/class-gllr-settings.php:612
|
1015 |
msgid "Albums Displaying"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: includes/class-gllr-settings.php:615
|
1019 |
msgid "Column"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/class-gllr-settings.php:616
|
1023 |
msgid "Rows"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: includes/class-gllr-settings.php:618
|
1027 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: includes/class-gllr-settings.php:622
|
1031 |
msgid "Column Alignment"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: includes/class-gllr-settings.php:625
|
1035 |
#, fuzzy
|
1036 |
msgid "Left"
|
1037 |
msgstr "Gauche"
|
1038 |
|
1039 |
+
#: includes/class-gllr-settings.php:626
|
1040 |
msgid "Right"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/class-gllr-settings.php:627
|
1044 |
msgid "Center"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/class-gllr-settings.php:629
|
1048 |
msgid "Select the column alignment."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/class-gllr-settings.php:633
|
1052 |
#, fuzzy
|
1053 |
msgid "Cover Image Size"
|
1054 |
msgstr "Taille de l'image de couverture"
|
1055 |
|
1056 |
+
#: includes/class-gllr-settings.php:641
|
1057 |
#, fuzzy
|
1058 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
1059 |
msgstr ""
|
1060 |
"Taille maximum de l'image de couverture. Utiliser les dimensions "
|
1061 |
"personnalisées de l'image."
|
1062 |
|
1063 |
+
#: includes/class-gllr-settings.php:645
|
1064 |
#, fuzzy
|
1065 |
msgid "Custom Cover Image Size"
|
1066 |
msgstr "Taille personnalisée de l'image de couverture"
|
1067 |
|
1068 |
+
#: includes/class-gllr-settings.php:658
|
1069 |
#, fuzzy
|
1070 |
msgid "Crop Cover Images"
|
1071 |
msgstr "Réduire les images de couverture"
|
1072 |
|
1073 |
+
#: includes/class-gllr-settings.php:660
|
1074 |
#, fuzzy
|
1075 |
msgid ""
|
1076 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
1080 |
"dans le champ de personnalisation. Désactiver pour restaurer les images "
|
1081 |
"automatiquement en utilisant leur aspect d'origine."
|
1082 |
|
1083 |
+
#: includes/class-gllr-settings.php:689
|
1084 |
#, fuzzy
|
1085 |
msgid "Cover Image Border"
|
1086 |
msgstr "Bordure de l'image de couverture"
|
1087 |
|
1088 |
+
#: includes/class-gllr-settings.php:691
|
1089 |
#, fuzzy
|
1090 |
msgid ""
|
1091 |
"Enable cover images border using the styles defined for Image Border Size "
|
1094 |
"Activer les bordures de l'image de couverture avec la taille et la couleur "
|
1095 |
"définies."
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:695
|
1098 |
#, fuzzy
|
1099 |
msgid "Cover Image Border Size"
|
1100 |
msgstr "Taille de la bordure de l'image de couverture"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:698
|
1103 |
#, fuzzy, php-format
|
1104 |
msgid "Cover image border width (default is %s)"
|
1105 |
msgstr "Taille de la bordure de l'image de couverture (par défaut %s)"
|
1106 |
|
1107 |
+
#: includes/class-gllr-settings.php:702
|
1108 |
#, fuzzy
|
1109 |
msgid "Cover Image Border Color"
|
1110 |
msgstr "Couleur de la bordure de l'image de couverture"
|
1111 |
|
1112 |
+
#: includes/class-gllr-settings.php:708
|
1113 |
#, fuzzy
|
1114 |
msgid "Sort Albums by"
|
1115 |
msgstr "Trier les albums par"
|
1116 |
|
1117 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1118 |
#, fuzzy
|
1119 |
msgid "Select galleries sorting order in your galleries page."
|
1120 |
msgstr "Choisissez l'ordre de tri de vos galeries dans la page des albums."
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:724
|
1123 |
#, fuzzy
|
1124 |
msgid "Arrange Albums by"
|
1125 |
msgstr "Tirer les albums par"
|
1126 |
|
1127 |
+
#: includes/class-gllr-settings.php:733
|
1128 |
#, fuzzy
|
1129 |
msgid "Read More Link Label"
|
1130 |
msgstr "Texte pour le lien \"En savoir plus\""
|
1131 |
|
1132 |
+
#: includes/class-gllr-settings.php:746
|
1133 |
#, fuzzy
|
1134 |
msgid "Instant Lightbox"
|
1135 |
msgstr "Lightbox rapide"
|
1136 |
|
1137 |
+
#: includes/class-gllr-settings.php:749
|
1138 |
#, fuzzy
|
1139 |
msgid ""
|
1140 |
"Enable to display all images in the lightbox after clicking cover image or "
|
1144 |
"cliquer sur l'image de couverture ou le lien au lieu d'une page avec la "
|
1145 |
"galerie"
|
1146 |
|
1147 |
+
#: includes/class-gllr-settings.php:763
|
1148 |
#, fuzzy
|
1149 |
msgid "Lightbox Settings"
|
1150 |
msgstr "Paramètres lightbox"
|
1151 |
|
1152 |
+
#: includes/class-gllr-settings.php:768
|
1153 |
+
msgid "Unclickable Thumbnail Images"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: includes/class-gllr-settings.php:771
|
1157 |
+
msgid ""
|
1158 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1159 |
+
"URLs. This option also disables Lightbox."
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: includes/class-gllr-settings.php:775
|
1163 |
#, fuzzy
|
1164 |
msgid "Enable Lightbox"
|
1165 |
msgstr "Activer Lightbox"
|
1166 |
|
1167 |
+
#: includes/class-gllr-settings.php:778
|
1168 |
#, fuzzy
|
1169 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1170 |
msgstr ""
|
1171 |
"Activer pour voir la lightbox lorsque l'on clique sur une image de la "
|
1172 |
"galerie."
|
1173 |
|
1174 |
+
#: includes/class-gllr-settings.php:796
|
1175 |
#, fuzzy
|
1176 |
msgid ""
|
1177 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1180 |
"Choisissez la taille maximum de l'image pour la lightbox. \"Défaut\" "
|
1181 |
"affichera l'image d'origine dans sa taille d'origine."
|
1182 |
|
1183 |
+
#: includes/class-gllr-settings.php:800
|
1184 |
#, fuzzy
|
1185 |
msgid "Overlay Color"
|
1186 |
msgstr "Couleur de superposition"
|
1187 |
|
1188 |
+
#: includes/class-gllr-settings.php:806
|
1189 |
#, fuzzy
|
1190 |
msgid "Overlay Opacity"
|
1191 |
msgstr "Opacité de la superposition"
|
1192 |
|
1193 |
+
#: includes/class-gllr-settings.php:809
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1197 |
"is %s)."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/class-gllr-settings.php:819
|
1201 |
#, fuzzy
|
1202 |
msgid "Slideshow"
|
1203 |
msgstr "Diaporama"
|
1204 |
|
1205 |
+
#: includes/class-gllr-settings.php:821
|
1206 |
#, fuzzy
|
1207 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1208 |
msgstr ""
|
1209 |
"Activer pour lancer le diaporama automatiquement quand la lightbox est "
|
1210 |
"utilisée."
|
1211 |
|
1212 |
+
#: includes/class-gllr-settings.php:825
|
1213 |
#, fuzzy
|
1214 |
msgid "Slideshow Duration"
|
1215 |
msgstr "Durée du diaporama"
|
1216 |
|
1217 |
+
#: includes/class-gllr-settings.php:827
|
1218 |
#, fuzzy
|
1219 |
msgid "ms"
|
1220 |
msgstr "ms"
|
1221 |
|
1222 |
+
#: includes/class-gllr-settings.php:828
|
1223 |
#, fuzzy
|
1224 |
msgid "Slideshow interval duration between two images."
|
1225 |
msgstr "Durée entre deux images dans le diaporama."
|
1226 |
|
1227 |
+
#: includes/class-gllr-settings.php:839
|
1228 |
#, fuzzy
|
1229 |
msgid "Lightbox Helpers"
|
1230 |
msgstr "Lightbox helper"
|
1231 |
|
1232 |
+
#: includes/class-gllr-settings.php:841
|
1233 |
#, fuzzy
|
1234 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1235 |
msgstr "Activer pour voir les options PRO de cette extension."
|
1236 |
|
1237 |
+
#: includes/class-gllr-settings.php:845
|
1238 |
#, fuzzy
|
1239 |
msgid "Lightbox Thumbnails"
|
1240 |
msgstr "Vignettes de la lightbox"
|
1241 |
|
1242 |
+
#: includes/class-gllr-settings.php:847
|
1243 |
msgid "Enable to use a lightbox helper navigation between images."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/class-gllr-settings.php:851
|
1247 |
#, fuzzy
|
1248 |
msgid "Lightbox Thumbnails Position"
|
1249 |
msgstr "Position des vignettes de la lightbox"
|
1250 |
|
1251 |
+
#: includes/class-gllr-settings.php:854
|
1252 |
#, fuzzy
|
1253 |
msgid "Top"
|
1254 |
msgstr "Haut"
|
1255 |
|
1256 |
+
#: includes/class-gllr-settings.php:859
|
1257 |
#, fuzzy
|
1258 |
msgid "Lightbox Button Label"
|
1259 |
msgstr "Label du bouton pour Lightbox"
|
1260 |
|
1261 |
+
#: includes/class-gllr-settings.php:861
|
1262 |
#, fuzzy
|
1263 |
msgid "Read More"
|
1264 |
msgstr "Lire plus..."
|
1265 |
|
1266 |
+
#: includes/class-gllr-settings.php:871
|
1267 |
#, fuzzy
|
1268 |
msgid "Download Button"
|
1269 |
msgstr "Bouton de téléchargement"
|
1270 |
|
1271 |
+
#: includes/class-gllr-settings.php:873
|
1272 |
#, fuzzy
|
1273 |
msgid "Enable to display download button."
|
1274 |
msgstr "Activer pour voir le bouton de téléchargement."
|
1275 |
|
1276 |
+
#: includes/class-gllr-settings.php:877
|
1277 |
#, fuzzy
|
1278 |
msgid "Single Lightbox"
|
1279 |
msgstr "Lightbox simple"
|
1280 |
|
1281 |
+
#: includes/class-gllr-settings.php:879
|
1282 |
#, fuzzy
|
1283 |
msgid ""
|
1284 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1287 |
"Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant "
|
1288 |
"sur la même page."
|
1289 |
|
1290 |
+
#: includes/class-gllr-settings.php:889
|
1291 |
#, fuzzy
|
1292 |
msgid "Social Sharing Buttons Settings"
|
1293 |
msgstr "Paramètres des boutons des réseaux sociaux"
|
1294 |
|
1295 |
+
#: includes/class-gllr-settings.php:898
|
1296 |
#, fuzzy
|
1297 |
msgid "Social Buttons"
|
1298 |
msgstr ""
|
1299 |
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1300 |
|
1301 |
+
#: includes/class-gllr-settings.php:900
|
1302 |
#, fuzzy
|
1303 |
msgid "Enable social sharing buttons in the lightbox."
|
1304 |
msgstr ""
|
1305 |
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1306 |
|
1307 |
+
#: includes/class-gllr-settings.php:904
|
1308 |
#, fuzzy
|
1309 |
msgid "Social Networks"
|
1310 |
msgstr "Réseaux sociaux"
|
1311 |
|
1312 |
+
#: includes/class-gllr-settings.php:915
|
1313 |
#, fuzzy
|
1314 |
msgid "Counter"
|
1315 |
msgstr "Compteur"
|
1316 |
|
1317 |
+
#: includes/class-gllr-settings.php:918
|
1318 |
msgid ""
|
1319 |
"Enable to show likes counter for each social button (not available for "
|
1320 |
"Google +1)."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/class-gllr-settings.php:933
|
1324 |
#, fuzzy
|
1325 |
msgid "Demo Data"
|
1326 |
msgstr "Données de démonstration"
|
1327 |
|
1328 |
+
#: includes/class-gllr-settings.php:935
|
1329 |
#, fuzzy
|
1330 |
msgid ""
|
1331 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1335 |
"images, des articles avec les différents codes courts, des pages avec des "
|
1336 |
"listes de galeries seront créés."
|
1337 |
|
1338 |
+
#: includes/class-gllr-settings.php:973
|
1339 |
#, fuzzy
|
1340 |
msgid "Gallery Post Type"
|
1341 |
msgstr "Type d'article de Galerie"
|
1342 |
|
1343 |
+
#: includes/class-gllr-settings.php:975
|
1344 |
#, fuzzy
|
1345 |
msgid ""
|
1346 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1353 |
"cependant, après la modification, merci de vérifier le paramétrage de vos "
|
1354 |
"autres extensions où le type d'article 'galerie' est utilisé."
|
1355 |
|
1356 |
+
#: includes/class-gllr-settings.php:987
|
1357 |
#, fuzzy
|
1358 |
msgid "Gallery Slug"
|
1359 |
msgstr "Identifiant de la galerie"
|
1360 |
|
1361 |
+
#: includes/class-gllr-settings.php:991
|
1362 |
#, fuzzy
|
1363 |
msgid "Enter the unique gallery slug."
|
1364 |
msgstr "Saisir le slug unique pour la galerie."
|
1365 |
|
1366 |
+
#: includes/class-gllr-settings.php:1007
|
1367 |
#, fuzzy
|
1368 |
msgid "Activate Now"
|
1369 |
msgstr "Activer maintenant"
|
1370 |
|
1371 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1372 |
#, fuzzy
|
1373 |
msgid "Enable to include galleries to your website search."
|
1374 |
msgstr "Activer pour inclure les galeries dans la recherche de votre site."
|
1375 |
|
1376 |
+
#: includes/class-gllr-settings.php:1025
|
1377 |
#, fuzzy, php-format
|
1378 |
msgid "%s is required."
|
1379 |
msgstr "%s est requis"
|
1526 |
#~ msgid "Learn more"
|
1527 |
#~ msgstr "Pročitaj više"
|
1528 |
|
|
|
|
|
|
|
|
|
1529 |
#, fuzzy
|
1530 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1531 |
#~ msgstr "Afficher une image en taille normale dans le boite"
|
1711 |
#~ msgid "Select a background color"
|
1712 |
#~ msgstr "Izaberi pozadinsku boju"
|
1713 |
|
|
|
|
|
|
|
|
|
1714 |
#~ msgid "Width (in px)"
|
1715 |
#~ msgstr "Širina (u pikselima)"
|
1716 |
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
@@ -13,476 +13,519 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galeri ayarları"
|
23 |
|
24 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galeri ayarları"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: gallery-plugin.php:
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: gallery-plugin.php:
|
38 |
msgid "See images »"
|
39 |
msgstr "Resimleri Gör »"
|
40 |
|
41 |
-
#: gallery-plugin.php:
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galeriler"
|
44 |
|
45 |
-
#: gallery-plugin.php:
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galeri"
|
48 |
|
49 |
-
#: gallery-plugin.php:
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Yeni Galeri"
|
52 |
|
53 |
-
#: gallery-plugin.php:
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Galeriyi Düzenle"
|
56 |
|
57 |
-
#: gallery-plugin.php:
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Yeni Galeri"
|
60 |
|
61 |
-
#: gallery-plugin.php:
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Galeriyi görüntüle"
|
64 |
|
65 |
-
#: gallery-plugin.php:
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galeriler"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Galeri bulunamadı"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Galeri resim boyutu"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Galeri resim boyutu"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Yeni Galeri"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Galeri Kısa Kodu"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
#, fuzzy
|
160 |
msgid "Shortcode"
|
161 |
msgstr "Galeri Kısa Kodu"
|
162 |
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "All Gallery Categories"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "You can't delete default gallery category."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Sorry, nothing found."
|
173 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Featured Image"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
181 |
-
msgid "Title"
|
182 |
-
msgstr "Başlık"
|
183 |
-
|
184 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
185 |
#, fuzzy
|
186 |
msgid "Images"
|
187 |
msgstr "Görsel"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
msgid "Author"
|
191 |
-
msgstr "Yazar"
|
192 |
-
|
193 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
194 |
-
#: includes/class-gllr-settings.php:680
|
195 |
-
msgid "Date"
|
196 |
-
msgstr "Tarih"
|
197 |
-
|
198 |
-
#: gallery-plugin.php:1688
|
199 |
#, php-format
|
200 |
msgid "%s Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
205 |
msgid "Settings"
|
206 |
msgstr "Ayarlar"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "FAQ"
|
210 |
msgstr "SSS"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "Support"
|
214 |
msgstr "Destek"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Updating images..."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "No images found."
|
223 |
msgstr "Galeri bulunamadı"
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "All images were updated."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Error."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid ""
|
235 |
"You are about to remove these items from this gallery.\n"
|
236 |
" 'Cancel' to stop, 'OK' to delete."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid ""
|
241 |
"You are about to remove this image from the gallery.\n"
|
242 |
" 'Cancel' to stop, 'OK' to delete."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid ""
|
247 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
248 |
"switching?"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Insert Media"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Insert"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
260 |
#, fuzzy
|
261 |
msgid "Image size not defined"
|
262 |
msgstr "Resim boyutu"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid ""
|
266 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
267 |
"reload images manually."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Invalid path"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "List View"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "Grid View"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
msgid "Filter"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Empty Trash"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "No images found"
|
293 |
msgstr "Galeri bulunamadı"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
msgid "Select bulk action"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Bulk Actions"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Apply"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
#, fuzzy
|
309 |
msgid "Delete from Gallery"
|
310 |
msgstr "Yeni Galeri"
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Bulk Select"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Cancel Selection"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "Delete Selected"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "File"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Dimensions"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "Alt Text"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "URL"
|
338 |
msgstr "URL"
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid ""
|
342 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
343 |
"to open a full size image."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
#, fuzzy
|
348 |
msgid "Remove Image from Gallery"
|
349 |
msgstr "Yeni Galeri"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
#, fuzzy
|
353 |
msgid "Edit Image Info"
|
354 |
msgstr "Ek ID"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Deselect"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "File name"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "File type"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "Description"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
#, fuzzy
|
374 |
msgid "Lightbox Button URL"
|
375 |
msgstr "Lightbox arkaplanı"
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
msgid "New Tab"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "Enable to open URLs above in a new tab."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Go Pro"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Edit more details"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "Remove from Gallery"
|
396 |
msgstr "Yeni Galeri"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, php-format
|
400 |
msgid "Select %s"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, php-format
|
405 |
msgid "Edit “%s”"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
#, fuzzy
|
410 |
msgid "Edit Attachment Info"
|
411 |
msgstr "Ek ID"
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "Edit"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Trash"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "Delete Permanently"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
#, php-format
|
427 |
msgid "View “%s”"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "View"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
#, fuzzy
|
436 |
msgid "Attach"
|
437 |
msgstr "Ek ID"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "Restore"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "A list or dropdown of Gallery categories."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "Select Gallery Category"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
#, fuzzy
|
453 |
msgid "Title:"
|
454 |
msgstr "Başlık"
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
msgid "Display as dropdown"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Show gallery counts"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
msgid "Show hierarchy"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Warning"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "You can add only images to the gallery"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
-
msgid "or"
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: gallery-plugin.php:3181
|
481 |
#, fuzzy
|
482 |
msgid "no title"
|
483 |
msgstr "Başlık"
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
#, fuzzy
|
487 |
msgid ""
|
488 |
"Display an album image with the description and the link to a single gallery "
|
@@ -491,7 +534,7 @@ msgstr ""
|
|
491 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
492 |
"aşağıdaki kodu yapıştırınız"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
#, fuzzy
|
496 |
msgid "Sorry, no gallery found."
|
497 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
@@ -525,579 +568,591 @@ msgstr ""
|
|
525 |
msgid "License Key"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: includes/class-gllr-settings.php:
|
529 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: includes/class-gllr-settings.php:247
|
533 |
#, fuzzy
|
534 |
msgid "Settings saved"
|
535 |
msgstr "Ayarlar kaydedildi"
|
536 |
|
537 |
-
#: includes/class-gllr-settings.php:
|
538 |
#, fuzzy
|
539 |
msgid "Please, enable JavaScript in Your browser."
|
540 |
msgstr "Uploader'ı kullanmak için JavaScript desteğini aktifleştirmelisiniz."
|
541 |
|
542 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
543 |
#, fuzzy
|
544 |
msgid "Update Images"
|
545 |
msgstr "görselleri sırala"
|
546 |
|
547 |
-
#: includes/class-gllr-settings.php:
|
548 |
#, fuzzy
|
549 |
msgid "Gallery Images"
|
550 |
msgstr "Galeri resim boyutu"
|
551 |
|
552 |
-
#: includes/class-gllr-settings.php:
|
553 |
msgid "Images adding requires JavaScript."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: includes/class-gllr-settings.php:
|
557 |
msgid "Add Media"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: includes/class-gllr-settings.php:
|
561 |
msgid "The grid view for the Gallery images requires JavaScript."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: includes/class-gllr-settings.php:
|
565 |
msgid "Switch to the list view"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
#, fuzzy
|
570 |
msgid "Single Gallery Settings"
|
571 |
msgstr "Galeri ayarları"
|
572 |
|
573 |
-
#: includes/class-gllr-settings.php:
|
574 |
#, php-format
|
575 |
msgid "Enable to configure single gallery settings and disable %s."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/class-gllr-settings.php:
|
579 |
-
#: includes/class-gllr-settings.php:
|
580 |
-
#: includes/class-gllr-settings.php:
|
581 |
-
#: includes/class-gllr-settings.php:
|
582 |
-
#: includes/class-gllr-settings.php:
|
583 |
msgid "Close"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: includes/class-gllr-settings.php:
|
587 |
#, fuzzy
|
588 |
msgid "Gallery Layout"
|
589 |
msgstr "Galeri bulunamadı"
|
590 |
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
msgid "Grid"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/class-gllr-settings.php:
|
596 |
msgid "Masonry"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/class-gllr-settings.php:
|
600 |
msgid "Number of Columns"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/class-gllr-settings.php:
|
604 |
#, php-format
|
605 |
msgid "Number of gallery columns (default is %s)."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
#, fuzzy
|
610 |
msgid "Image Size"
|
611 |
msgstr "Resim boyutu"
|
612 |
|
613 |
-
#: includes/class-gllr-settings.php:
|
614 |
msgid "Custom"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/class-gllr-settings.php:
|
618 |
msgid ""
|
619 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: includes/class-gllr-settings.php:
|
623 |
#, fuzzy
|
624 |
msgid "Custom Image Size"
|
625 |
msgstr "Resim boyutu"
|
626 |
|
627 |
-
#: includes/class-gllr-settings.php:
|
628 |
-
#: includes/class-gllr-settings.php:
|
629 |
msgid "px"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: includes/class-gllr-settings.php:
|
633 |
msgid ""
|
634 |
"Adjust these values based on the number of columns in your gallery. This "
|
635 |
"won't effect the full size of your images in the lightbox."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/class-gllr-settings.php:
|
639 |
#, fuzzy
|
640 |
msgid "Crop Images"
|
641 |
msgstr "Resimleri sırala"
|
642 |
|
643 |
-
#: includes/class-gllr-settings.php:
|
644 |
msgid ""
|
645 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
646 |
"to resize images automatically using their aspect ratio."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/class-gllr-settings.php:
|
650 |
#, fuzzy
|
651 |
msgid "Crop Position"
|
652 |
msgstr "Kırpma konumu"
|
653 |
|
654 |
-
#: includes/class-gllr-settings.php:
|
655 |
msgid "Select crop position base (by default: center)."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: includes/class-gllr-settings.php:
|
659 |
#, fuzzy
|
660 |
msgid "Image Title"
|
661 |
msgstr "Resim boyutu"
|
662 |
|
663 |
-
#: includes/class-gllr-settings.php:
|
664 |
msgid "Enable to display image title along with the gallery image."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/class-gllr-settings.php:
|
668 |
#, fuzzy
|
669 |
msgid "Image Title Position"
|
670 |
msgstr "Resim boyutu"
|
671 |
|
672 |
-
#: includes/class-gllr-settings.php:
|
673 |
#, fuzzy
|
674 |
msgid "Under image"
|
675 |
msgstr "görselleri sırala"
|
676 |
|
677 |
-
#: includes/class-gllr-settings.php:
|
678 |
msgid "On mouse hover"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: includes/class-gllr-settings.php:
|
682 |
#, fuzzy
|
683 |
msgid "Image Border"
|
684 |
msgstr "Çerçeveli resimler"
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
msgid ""
|
688 |
"Enable images border using the styles defined for Image Border Size and "
|
689 |
"Color options."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: includes/class-gllr-settings.php:
|
693 |
#, fuzzy
|
694 |
msgid "Image Border Size"
|
695 |
msgstr "Resim boyutu"
|
696 |
|
697 |
-
#: includes/class-gllr-settings.php:
|
698 |
#, php-format
|
699 |
msgid "Gallery image border width (default is %s)"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: includes/class-gllr-settings.php:
|
703 |
#, fuzzy
|
704 |
msgid "Image Border Color"
|
705 |
msgstr "Çerçeve rengi seçiniz"
|
706 |
|
707 |
-
#: includes/class-gllr-settings.php:
|
708 |
msgid "Pagination"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
msgid ""
|
713 |
"Enable pagination for images to limit number of images displayed on a single "
|
714 |
"gallery page."
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-gllr-settings.php:
|
718 |
#, fuzzy
|
719 |
msgid "Number of Images"
|
720 |
msgstr "Bir satırdaki resim sayısı"
|
721 |
|
722 |
-
#: includes/class-gllr-settings.php:
|
723 |
#, php-format
|
724 |
msgid "Number of images displayed per page (default is %d)."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: includes/class-gllr-settings.php:
|
728 |
#, fuzzy
|
729 |
msgid "Sort Images by"
|
730 |
msgstr "Resimleri sırala buna göre sırala"
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
msgid "Manually (default)"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/class-gllr-settings.php:
|
737 |
#, fuzzy
|
738 |
msgid "Image ID"
|
739 |
msgstr "Görsel"
|
740 |
|
741 |
-
#: includes/class-gllr-settings.php:
|
742 |
msgid "Name"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: includes/class-gllr-settings.php:
|
746 |
-
msgid "Random"
|
747 |
-
msgstr "Rastgele"
|
748 |
-
|
749 |
-
#: includes/class-gllr-settings.php:516
|
750 |
msgid ""
|
751 |
"Select images sorting order in your gallery. By default, you can sort images "
|
752 |
"manually in the images tab."
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/class-gllr-settings.php:
|
756 |
#, fuzzy
|
757 |
msgid "Arrange Images by"
|
758 |
msgstr "Resimleri sırala buna göre sırala"
|
759 |
|
760 |
-
#: includes/class-gllr-settings.php:
|
761 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: includes/class-gllr-settings.php:
|
765 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: includes/class-gllr-settings.php:
|
769 |
#, fuzzy
|
770 |
msgid "Back Link"
|
771 |
msgstr "Geri linki URL'si"
|
772 |
|
773 |
-
#: includes/class-gllr-settings.php:
|
774 |
msgid ""
|
775 |
"Enable to show a back link in a single gallery page which navigate to a "
|
776 |
"previous page."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/class-gllr-settings.php:
|
780 |
#, fuzzy
|
781 |
msgid "Back Link URL"
|
782 |
msgstr "Geri linki URL'si"
|
783 |
|
784 |
-
#: includes/class-gllr-settings.php:
|
785 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/class-gllr-settings.php:
|
789 |
#, fuzzy
|
790 |
msgid "Back Link Label"
|
791 |
msgstr "Geri linki URL'si"
|
792 |
|
793 |
-
#: includes/class-gllr-settings.php:
|
794 |
#, fuzzy
|
795 |
msgid "Back Link with Shortcode"
|
796 |
msgstr "Kısa kodda Geri linkini göster"
|
797 |
|
798 |
-
#: includes/class-gllr-settings.php:
|
799 |
#, fuzzy
|
800 |
msgid "Enable to display a back link on a page where shortcode is used."
|
801 |
msgstr "Kısa kodda Geri linkini göster"
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
#, fuzzy
|
805 |
msgid "Cover Settings"
|
806 |
msgstr "Galeri ayarları"
|
807 |
|
808 |
-
#: includes/class-gllr-settings.php:
|
809 |
#, fuzzy
|
810 |
msgid "Galleries Page"
|
811 |
msgstr "Galeriler"
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
msgid "Base page where all existing galleries will be displayed."
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: includes/class-gllr-settings.php:
|
818 |
msgid "Albums Displaying"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/class-gllr-settings.php:
|
822 |
msgid "Column"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/class-gllr-settings.php:
|
826 |
msgid "Rows"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: includes/class-gllr-settings.php:
|
830 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/class-gllr-settings.php:
|
834 |
msgid "Column Alignment"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/class-gllr-settings.php:
|
838 |
msgid "Left"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/class-gllr-settings.php:
|
842 |
msgid "Right"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/class-gllr-settings.php:
|
846 |
msgid "Center"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/class-gllr-settings.php:
|
850 |
msgid "Select the column alignment."
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/class-gllr-settings.php:
|
854 |
#, fuzzy
|
855 |
msgid "Cover Image Size"
|
856 |
msgstr "Resim boyutu"
|
857 |
|
858 |
-
#: includes/class-gllr-settings.php:
|
859 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/class-gllr-settings.php:
|
863 |
msgid "Custom Cover Image Size"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/class-gllr-settings.php:
|
867 |
msgid "Crop Cover Images"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/class-gllr-settings.php:
|
871 |
msgid ""
|
872 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
873 |
"Disable to resize images automatically using their aspect ratio."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/class-gllr-settings.php:
|
877 |
#, fuzzy
|
878 |
msgid "Cover Image Border"
|
879 |
msgstr "Çerçeveli resimler"
|
880 |
|
881 |
-
#: includes/class-gllr-settings.php:
|
882 |
msgid ""
|
883 |
"Enable cover images border using the styles defined for Image Border Size "
|
884 |
"and Color."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-gllr-settings.php:
|
888 |
msgid "Cover Image Border Size"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-gllr-settings.php:
|
892 |
#, php-format
|
893 |
msgid "Cover image border width (default is %s)"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/class-gllr-settings.php:
|
897 |
#, fuzzy
|
898 |
msgid "Cover Image Border Color"
|
899 |
msgstr "Çerçeve rengi seçiniz"
|
900 |
|
901 |
-
#: includes/class-gllr-settings.php:
|
902 |
#, fuzzy
|
903 |
msgid "Sort Albums by"
|
904 |
msgstr "Resimleri sırala buna göre sırala"
|
905 |
|
906 |
-
#: includes/class-gllr-settings.php:
|
907 |
-
#, fuzzy
|
908 |
-
msgid "Gallery ID"
|
909 |
-
msgstr "Galeri"
|
910 |
-
|
911 |
-
#: includes/class-gllr-settings.php:681
|
912 |
-
msgid "Last modified date"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: includes/class-gllr-settings.php:682
|
916 |
-
msgid "Comment count"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: includes/class-gllr-settings.php:683
|
920 |
-
msgid "\"Order\" field on the gallery edit page"
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: includes/class-gllr-settings.php:687
|
924 |
msgid "Select galleries sorting order in your galleries page."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: includes/class-gllr-settings.php:
|
928 |
msgid "Arrange Albums by"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: includes/class-gllr-settings.php:
|
932 |
#, fuzzy
|
933 |
msgid "Read More Link Label"
|
934 |
msgstr "Devamını oku linki için etiket"
|
935 |
|
936 |
-
#: includes/class-gllr-settings.php:
|
937 |
msgid "Instant Lightbox"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/class-gllr-settings.php:
|
941 |
msgid ""
|
942 |
"Enable to display all images in the lightbox after clicking cover image or "
|
943 |
"URL instead of going to a single gallery page."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/class-gllr-settings.php:
|
947 |
#, fuzzy
|
948 |
msgid "Lightbox Settings"
|
949 |
msgstr "Lightbox arkaplanı"
|
950 |
|
951 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
952 |
msgid "Enable Lightbox"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/class-gllr-settings.php:
|
956 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid ""
|
961 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
962 |
"will display the original, full size image."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/class-gllr-settings.php:
|
966 |
msgid "Overlay Color"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
msgid "Overlay Opacity"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/class-gllr-settings.php:
|
974 |
#, php-format
|
975 |
msgid ""
|
976 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
977 |
"is %s)."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/class-gllr-settings.php:
|
981 |
#, fuzzy
|
982 |
msgid "Slideshow"
|
983 |
msgstr "Slayt gösterisini başlat"
|
984 |
|
985 |
-
#: includes/class-gllr-settings.php:
|
986 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/class-gllr-settings.php:
|
990 |
#, fuzzy
|
991 |
msgid "Slideshow Duration"
|
992 |
msgstr "Slayt gösterisi sıklığı"
|
993 |
|
994 |
-
#: includes/class-gllr-settings.php:
|
995 |
msgid "ms"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/class-gllr-settings.php:
|
999 |
msgid "Slideshow interval duration between two images."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/class-gllr-settings.php:
|
1003 |
#, fuzzy
|
1004 |
msgid "Lightbox Helpers"
|
1005 |
msgstr "Lightbox arkaplanı"
|
1006 |
|
1007 |
-
#: includes/class-gllr-settings.php:
|
1008 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/class-gllr-settings.php:
|
1012 |
#, fuzzy
|
1013 |
msgid "Lightbox Thumbnails"
|
1014 |
msgstr "Albüm kapağı için resim boyuru"
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid "Enable to use a lightbox helper navigation between images."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
msgid "Lightbox Thumbnails Position"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
#, fuzzy
|
1026 |
msgid "Top"
|
1027 |
msgstr "üst"
|
1028 |
|
1029 |
-
#: includes/class-gllr-settings.php:
|
1030 |
#, fuzzy
|
1031 |
msgid "Lightbox Button Label"
|
1032 |
msgstr "Lightbox arkaplanı"
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
#, fuzzy
|
1036 |
msgid "Read More"
|
1037 |
msgstr "Devamını Oku"
|
1038 |
|
1039 |
-
#: includes/class-gllr-settings.php:
|
1040 |
msgid "Download Button"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/class-gllr-settings.php:
|
1044 |
msgid "Enable to display download button."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
msgid "Single Lightbox"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/class-gllr-settings.php:
|
1052 |
msgid ""
|
1053 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1054 |
"page."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/class-gllr-settings.php:
|
1058 |
msgid "Social Sharing Buttons Settings"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/class-gllr-settings.php:
|
1062 |
msgid "Social Buttons"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/class-gllr-settings.php:
|
1066 |
msgid "Enable social sharing buttons in the lightbox."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/class-gllr-settings.php:
|
1070 |
msgid "Social Networks"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/class-gllr-settings.php:
|
1074 |
#, fuzzy
|
1075 |
msgid "Counter"
|
1076 |
msgstr "Slayt gösterisi sıklığı"
|
1077 |
|
1078 |
-
#: includes/class-gllr-settings.php:
|
1079 |
msgid ""
|
1080 |
"Enable to show likes counter for each social button (not available for "
|
1081 |
"Google +1)."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: includes/class-gllr-settings.php:
|
1085 |
#, fuzzy
|
1086 |
msgid "Demo Data"
|
1087 |
msgstr "%s yükle"
|
1088 |
|
1089 |
-
#: includes/class-gllr-settings.php:
|
1090 |
msgid ""
|
1091 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1092 |
"page with a list of all galleries."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/class-gllr-settings.php:
|
1096 |
#, fuzzy
|
1097 |
msgid "Gallery Post Type"
|
1098 |
msgstr "Galeri Kısa Kodu"
|
1099 |
|
1100 |
-
#: includes/class-gllr-settings.php:
|
1101 |
msgid ""
|
1102 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1103 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1105,30 +1160,25 @@ msgid ""
|
|
1105 |
"used."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/class-gllr-settings.php:
|
1109 |
#, fuzzy
|
1110 |
msgid "Gallery Slug"
|
1111 |
msgstr "Galeri"
|
1112 |
|
1113 |
-
#: includes/class-gllr-settings.php:
|
1114 |
msgid "Enter the unique gallery slug."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/class-gllr-settings.php:
|
1118 |
#, fuzzy
|
1119 |
msgid "Activate Now"
|
1120 |
msgstr "Etkinleştirilmiş eklentiler"
|
1121 |
|
1122 |
-
#: includes/class-gllr-settings.php:
|
1123 |
-
#, fuzzy
|
1124 |
-
msgid "Install Now"
|
1125 |
-
msgstr "%s yükle"
|
1126 |
-
|
1127 |
-
#: includes/class-gllr-settings.php:965
|
1128 |
msgid "Enable to include galleries to your website search."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: includes/class-gllr-settings.php:
|
1132 |
#, php-format
|
1133 |
msgid "%s is required."
|
1134 |
msgstr ""
|
@@ -1258,10 +1308,6 @@ msgstr "%s yükle"
|
|
1258 |
#~ msgid "Learn more"
|
1259 |
#~ msgstr "Devamını Oku"
|
1260 |
|
1261 |
-
#, fuzzy
|
1262 |
-
#~ msgid "Activate"
|
1263 |
-
#~ msgstr "Etkinleştirilmiş eklentiler"
|
1264 |
-
|
1265 |
#, fuzzy
|
1266 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1267 |
#~ msgstr "Lightbox içerisinde beğen butonlarını göster"
|
@@ -1442,10 +1488,6 @@ msgstr "%s yükle"
|
|
1442 |
#~ msgid "Select a background color"
|
1443 |
#~ msgstr "Arkaplan rengi seçiniz"
|
1444 |
|
1445 |
-
#, fuzzy
|
1446 |
-
#~ msgid "Sort galleries by"
|
1447 |
-
#~ msgstr "Resimleri sırala buna göre sırala"
|
1448 |
-
|
1449 |
#~ msgid "Width (in px)"
|
1450 |
#~ msgstr "Yatay boyut (px)"
|
1451 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ismail Demirbilek <ce.demirbilek@gmail.com>\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
21 |
msgid "Gallery Settings"
|
22 |
msgstr "Galeri ayarları"
|
23 |
|
24 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
25 |
#, fuzzy
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Galeri ayarları"
|
28 |
|
29 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: gallery-plugin.php:340
|
34 |
msgid "Return to all albums"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: gallery-plugin.php:354
|
38 |
msgid "See images »"
|
39 |
msgstr "Resimleri Gör »"
|
40 |
|
41 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
42 |
msgid "Galleries"
|
43 |
msgstr "Galeriler"
|
44 |
|
45 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
46 |
msgid "Gallery"
|
47 |
msgstr "Galeri"
|
48 |
|
49 |
+
#: gallery-plugin.php:444
|
50 |
msgid "Add New Gallery"
|
51 |
msgstr "Yeni Galeri"
|
52 |
|
53 |
+
#: gallery-plugin.php:445
|
54 |
msgid "Edit Gallery"
|
55 |
msgstr "Galeriyi Düzenle"
|
56 |
|
57 |
+
#: gallery-plugin.php:446
|
58 |
msgid "New Gallery"
|
59 |
msgstr "Yeni Galeri"
|
60 |
|
61 |
+
#: gallery-plugin.php:447
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Galeriyi görüntüle"
|
64 |
|
65 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
66 |
#, fuzzy
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Galeriler"
|
69 |
|
70 |
+
#: gallery-plugin.php:449
|
71 |
msgid "No Gallery found"
|
72 |
msgstr "Galeri bulunamadı"
|
73 |
|
74 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
75 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
76 |
+
#: gallery-plugin.php:3332
|
77 |
#, fuzzy
|
78 |
msgid "Gallery Categories"
|
79 |
msgstr "Galeri resim boyutu"
|
80 |
|
81 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
82 |
#, fuzzy
|
83 |
msgid "Gallery Category"
|
84 |
msgstr "Galeri resim boyutu"
|
85 |
|
86 |
+
#: gallery-plugin.php:473
|
87 |
msgid "Add Gallery Category"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: gallery-plugin.php:474
|
91 |
#, fuzzy
|
92 |
msgid "Add New Gallery Category"
|
93 |
msgstr "Yeni Galeri"
|
94 |
|
95 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
96 |
msgid "Edit Gallery Category"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: gallery-plugin.php:477
|
100 |
msgid "New Gallery Category"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
104 |
msgid "View Gallery Category"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: gallery-plugin.php:480
|
108 |
msgid "Find Gallery Category"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: gallery-plugin.php:481
|
112 |
msgid "No Gallery Categories found"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: gallery-plugin.php:482
|
116 |
msgid "No Gallery Categories found in Trash"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: gallery-plugin.php:483
|
120 |
msgid "Parent Gallery Category"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: gallery-plugin.php:484
|
124 |
msgid "Gallery Categories list navigation"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: gallery-plugin.php:485
|
128 |
msgid "Gallery Categories list"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: gallery-plugin.php:533
|
132 |
msgid "Gallery Shortcode"
|
133 |
msgstr "Galeri Kısa Kodu"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
msgid ""
|
137 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
138 |
"widgets by using the following shortcode:"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: gallery-plugin.php:546
|
142 |
msgid ""
|
143 |
"Add a gallery cover including featured image, description, and a link to "
|
144 |
"your single gallery using the following shortcode:"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: gallery-plugin.php:659
|
148 |
msgid "Note"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: gallery-plugin.php:659
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"not be deleted. These galleries will be moved to the category %s."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: gallery-plugin.php:670
|
159 |
+
#, fuzzy
|
160 |
+
msgid "Sort Galleries in Category by"
|
161 |
+
msgstr "Resimleri sırala buna göre sırala"
|
162 |
+
|
163 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
164 |
+
#: includes/class-gllr-settings.php:711
|
165 |
+
#, fuzzy
|
166 |
+
msgid "Gallery ID"
|
167 |
+
msgstr "Galeri"
|
168 |
+
|
169 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
170 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
171 |
+
#: includes/class-gllr-settings.php:712
|
172 |
+
msgid "Title"
|
173 |
+
msgstr "Başlık"
|
174 |
+
|
175 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
176 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
177 |
+
msgid "Date"
|
178 |
+
msgstr "Tarih"
|
179 |
+
|
180 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
181 |
+
#: includes/class-gllr-settings.php:714
|
182 |
+
msgid "Last modified date"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
186 |
+
#: includes/class-gllr-settings.php:715
|
187 |
+
msgid "Comment count"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
191 |
+
#: includes/class-gllr-settings.php:716
|
192 |
+
msgid "\"Order\" field on the gallery edit page"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
196 |
+
#: includes/class-gllr-settings.php:717
|
197 |
+
msgid "Author"
|
198 |
+
msgstr "Yazar"
|
199 |
+
|
200 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
201 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
202 |
+
msgid "Random"
|
203 |
+
msgstr "Rastgele"
|
204 |
+
|
205 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
206 |
+
#, fuzzy
|
207 |
+
#| msgid "Settings"
|
208 |
+
msgid "Plugin Settings"
|
209 |
+
msgstr "Ayarlar"
|
210 |
+
|
211 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
212 |
+
msgid "Select galleries sorting order in your category."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
216 |
#, fuzzy
|
217 |
msgid "Shortcode"
|
218 |
msgstr "Galeri Kısa Kodu"
|
219 |
|
220 |
+
#: gallery-plugin.php:749
|
221 |
msgid "All Gallery Categories"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:827
|
225 |
msgid "You can't delete default gallery category."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
229 |
msgid "Sorry, nothing found."
|
230 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
231 |
|
232 |
+
#: gallery-plugin.php:1717
|
233 |
msgid "Featured Image"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "Images"
|
239 |
msgstr "Görsel"
|
240 |
|
241 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
#, php-format
|
243 |
msgid "%s Settings"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
247 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
248 |
msgid "Settings"
|
249 |
msgstr "Ayarlar"
|
250 |
|
251 |
+
#: gallery-plugin.php:1838
|
252 |
msgid "FAQ"
|
253 |
msgstr "SSS"
|
254 |
|
255 |
+
#: gallery-plugin.php:1839
|
256 |
msgid "Support"
|
257 |
msgstr "Destek"
|
258 |
|
259 |
+
#: gallery-plugin.php:1878
|
260 |
msgid "Updating images..."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: gallery-plugin.php:1879
|
264 |
#, fuzzy
|
265 |
msgid "No images found."
|
266 |
msgstr "Galeri bulunamadı"
|
267 |
|
268 |
+
#: gallery-plugin.php:1880
|
269 |
msgid "All images were updated."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: gallery-plugin.php:1881
|
273 |
msgid "Error."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: gallery-plugin.php:1893
|
277 |
msgid ""
|
278 |
"You are about to remove these items from this gallery.\n"
|
279 |
" 'Cancel' to stop, 'OK' to delete."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1894
|
283 |
msgid ""
|
284 |
"You are about to remove this image from the gallery.\n"
|
285 |
" 'Cancel' to stop, 'OK' to delete."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: gallery-plugin.php:1895
|
289 |
msgid ""
|
290 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
291 |
"switching?"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: gallery-plugin.php:1896
|
295 |
msgid "Insert Media"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1897
|
299 |
msgid "Insert"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: gallery-plugin.php:1898
|
303 |
+
msgid "Gallery has been successfully added!"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
307 |
#, fuzzy
|
308 |
msgid "Image size not defined"
|
309 |
msgstr "Resim boyutu"
|
310 |
|
311 |
+
#: gallery-plugin.php:2455
|
312 |
msgid ""
|
313 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
314 |
"reload images manually."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
318 |
msgid "Invalid path"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: gallery-plugin.php:2607
|
322 |
msgid "List View"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: gallery-plugin.php:2608
|
326 |
msgid "Grid View"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: gallery-plugin.php:2665
|
330 |
msgid "Filter"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: gallery-plugin.php:2669
|
334 |
msgid "Empty Trash"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: gallery-plugin.php:2692
|
338 |
#, fuzzy
|
339 |
msgid "No images found"
|
340 |
msgstr "Galeri bulunamadı"
|
341 |
|
342 |
+
#: gallery-plugin.php:2745
|
343 |
msgid "Select bulk action"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: gallery-plugin.php:2747
|
347 |
msgid "Bulk Actions"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: gallery-plugin.php:2757
|
351 |
msgid "Apply"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:2764
|
355 |
#, fuzzy
|
356 |
msgid "Delete from Gallery"
|
357 |
msgstr "Yeni Galeri"
|
358 |
|
359 |
+
#: gallery-plugin.php:2773
|
360 |
msgid "Bulk Select"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: gallery-plugin.php:2774
|
364 |
msgid "Cancel Selection"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: gallery-plugin.php:2775
|
368 |
msgid "Delete Selected"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: gallery-plugin.php:2786
|
372 |
msgid "File"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
376 |
msgid "Dimensions"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
380 |
msgid "Alt Text"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
384 |
msgid "URL"
|
385 |
msgstr "URL"
|
386 |
|
387 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
388 |
msgid ""
|
389 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
390 |
"to open a full size image."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: gallery-plugin.php:2872
|
394 |
#, fuzzy
|
395 |
msgid "Remove Image from Gallery"
|
396 |
msgstr "Yeni Galeri"
|
397 |
|
398 |
+
#: gallery-plugin.php:2875
|
399 |
#, fuzzy
|
400 |
msgid "Edit Image Info"
|
401 |
msgstr "Ek ID"
|
402 |
|
403 |
+
#: gallery-plugin.php:2876
|
404 |
msgid "Deselect"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: gallery-plugin.php:2888
|
408 |
msgid "File name"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: gallery-plugin.php:2889
|
412 |
msgid "File type"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: gallery-plugin.php:2914
|
416 |
msgid "Description"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: gallery-plugin.php:2920
|
420 |
#, fuzzy
|
421 |
msgid "Lightbox Button URL"
|
422 |
msgstr "Lightbox arkaplanı"
|
423 |
|
424 |
+
#: gallery-plugin.php:2927
|
425 |
msgid "New Tab"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: gallery-plugin.php:2929
|
429 |
msgid "Enable to open URLs above in a new tab."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: gallery-plugin.php:2934
|
433 |
msgid "Go Pro"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: gallery-plugin.php:2940
|
437 |
msgid "Edit more details"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: gallery-plugin.php:2942
|
441 |
#, fuzzy
|
442 |
msgid "Remove from Gallery"
|
443 |
msgstr "Yeni Galeri"
|
444 |
|
445 |
+
#: gallery-plugin.php:2978
|
446 |
#, php-format
|
447 |
msgid "Select %s"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: gallery-plugin.php:2991
|
451 |
#, php-format
|
452 |
msgid "Edit “%s”"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: gallery-plugin.php:2999
|
456 |
#, fuzzy
|
457 |
msgid "Edit Attachment Info"
|
458 |
msgstr "Ek ID"
|
459 |
|
460 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
461 |
msgid "Edit"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
465 |
msgid "Trash"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
469 |
msgid "Delete Permanently"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
473 |
#, php-format
|
474 |
msgid "View “%s”"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
478 |
msgid "View"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:3048
|
482 |
#, fuzzy
|
483 |
msgid "Attach"
|
484 |
msgstr "Ek ID"
|
485 |
|
486 |
+
#: gallery-plugin.php:3056
|
487 |
msgid "Restore"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:3086
|
491 |
msgid "A list or dropdown of Gallery categories."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:3131
|
495 |
msgid "Select Gallery Category"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:3189
|
499 |
#, fuzzy
|
500 |
msgid "Title:"
|
501 |
msgstr "Başlık"
|
502 |
|
503 |
+
#: gallery-plugin.php:3192
|
504 |
msgid "Display as dropdown"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:3194
|
508 |
msgid "Show gallery counts"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:3196
|
512 |
msgid "Show hierarchy"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:3312
|
516 |
msgid "Warning"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:3312
|
520 |
msgid "You can add only images to the gallery"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
524 |
#, fuzzy
|
525 |
msgid "no title"
|
526 |
msgstr "Başlık"
|
527 |
|
528 |
+
#: gallery-plugin.php:3377
|
529 |
#, fuzzy
|
530 |
msgid ""
|
531 |
"Display an album image with the description and the link to a single gallery "
|
534 |
"Eğer Galeri sayfasına link içeren galeri önizlemesi eklemek isterseniz "
|
535 |
"aşağıdaki kodu yapıştırınız"
|
536 |
|
537 |
+
#: gallery-plugin.php:3381
|
538 |
#, fuzzy
|
539 |
msgid "Sorry, no gallery found."
|
540 |
msgstr "Üzgünüz, sonuç bulunamadı."
|
568 |
msgid "License Key"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
572 |
#, fuzzy
|
573 |
msgid "Settings saved"
|
574 |
msgstr "Ayarlar kaydedildi"
|
575 |
|
576 |
+
#: includes/class-gllr-settings.php:256
|
577 |
#, fuzzy
|
578 |
msgid "Please, enable JavaScript in Your browser."
|
579 |
msgstr "Uploader'ı kullanmak için JavaScript desteğini aktifleştirmelisiniz."
|
580 |
|
581 |
+
#: includes/class-gllr-settings.php:260
|
582 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: includes/class-gllr-settings.php:261
|
586 |
#, fuzzy
|
587 |
msgid "Update Images"
|
588 |
msgstr "görselleri sırala"
|
589 |
|
590 |
+
#: includes/class-gllr-settings.php:276
|
591 |
#, fuzzy
|
592 |
msgid "Gallery Images"
|
593 |
msgstr "Galeri resim boyutu"
|
594 |
|
595 |
+
#: includes/class-gllr-settings.php:281
|
596 |
msgid "Images adding requires JavaScript."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/class-gllr-settings.php:284
|
600 |
msgid "Add Media"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: includes/class-gllr-settings.php:293
|
604 |
msgid "The grid view for the Gallery images requires JavaScript."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/class-gllr-settings.php:293
|
608 |
msgid "Switch to the list view"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/class-gllr-settings.php:320
|
612 |
+
#, fuzzy
|
613 |
+
msgid "Add Gallery to the Slider"
|
614 |
+
msgstr "Yeni Galeri"
|
615 |
+
|
616 |
+
#: includes/class-gllr-settings.php:332
|
617 |
+
#, fuzzy
|
618 |
+
msgid "Activate"
|
619 |
+
msgstr "Etkinleştirilmiş eklentiler"
|
620 |
+
|
621 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
622 |
+
#, fuzzy
|
623 |
+
msgid "Install Now"
|
624 |
+
msgstr "%s yükle"
|
625 |
+
|
626 |
+
#: includes/class-gllr-settings.php:337
|
627 |
+
msgid "Add"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: includes/class-gllr-settings.php:340
|
631 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: includes/class-gllr-settings.php:351
|
635 |
#, fuzzy
|
636 |
msgid "Single Gallery Settings"
|
637 |
msgstr "Galeri ayarları"
|
638 |
|
639 |
+
#: includes/class-gllr-settings.php:353
|
640 |
#, php-format
|
641 |
msgid "Enable to configure single gallery settings and disable %s."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
645 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
646 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
647 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
648 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
649 |
msgid "Close"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: includes/class-gllr-settings.php:369
|
653 |
#, fuzzy
|
654 |
msgid "Gallery Layout"
|
655 |
msgstr "Galeri bulunamadı"
|
656 |
|
657 |
+
#: includes/class-gllr-settings.php:374
|
658 |
msgid "Grid"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: includes/class-gllr-settings.php:380
|
662 |
msgid "Masonry"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/class-gllr-settings.php:393
|
666 |
msgid "Number of Columns"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/class-gllr-settings.php:396
|
670 |
#, php-format
|
671 |
msgid "Number of gallery columns (default is %s)."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
675 |
#, fuzzy
|
676 |
msgid "Image Size"
|
677 |
msgstr "Resim boyutu"
|
678 |
|
679 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
680 |
msgid "Custom"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: includes/class-gllr-settings.php:408
|
684 |
msgid ""
|
685 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/class-gllr-settings.php:412
|
689 |
#, fuzzy
|
690 |
msgid "Custom Image Size"
|
691 |
msgstr "Resim boyutu"
|
692 |
|
693 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
694 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
695 |
msgid "px"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: includes/class-gllr-settings.php:415
|
699 |
msgid ""
|
700 |
"Adjust these values based on the number of columns in your gallery. This "
|
701 |
"won't effect the full size of your images in the lightbox."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/class-gllr-settings.php:426
|
705 |
#, fuzzy
|
706 |
msgid "Crop Images"
|
707 |
msgstr "Resimleri sırala"
|
708 |
|
709 |
+
#: includes/class-gllr-settings.php:428
|
710 |
msgid ""
|
711 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
712 |
"to resize images automatically using their aspect ratio."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
716 |
#, fuzzy
|
717 |
msgid "Crop Position"
|
718 |
msgstr "Kırpma konumu"
|
719 |
|
720 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
721 |
msgid "Select crop position base (by default: center)."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/class-gllr-settings.php:457
|
725 |
#, fuzzy
|
726 |
msgid "Image Title"
|
727 |
msgstr "Resim boyutu"
|
728 |
|
729 |
+
#: includes/class-gllr-settings.php:459
|
730 |
msgid "Enable to display image title along with the gallery image."
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: includes/class-gllr-settings.php:470
|
734 |
#, fuzzy
|
735 |
msgid "Image Title Position"
|
736 |
msgstr "Resim boyutu"
|
737 |
|
738 |
+
#: includes/class-gllr-settings.php:475
|
739 |
#, fuzzy
|
740 |
msgid "Under image"
|
741 |
msgstr "görselleri sırala"
|
742 |
|
743 |
+
#: includes/class-gllr-settings.php:481
|
744 |
msgid "On mouse hover"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/class-gllr-settings.php:494
|
748 |
#, fuzzy
|
749 |
msgid "Image Border"
|
750 |
msgstr "Çerçeveli resimler"
|
751 |
|
752 |
+
#: includes/class-gllr-settings.php:496
|
753 |
msgid ""
|
754 |
"Enable images border using the styles defined for Image Border Size and "
|
755 |
"Color options."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: includes/class-gllr-settings.php:500
|
759 |
#, fuzzy
|
760 |
msgid "Image Border Size"
|
761 |
msgstr "Resim boyutu"
|
762 |
|
763 |
+
#: includes/class-gllr-settings.php:503
|
764 |
#, php-format
|
765 |
msgid "Gallery image border width (default is %s)"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/class-gllr-settings.php:507
|
769 |
#, fuzzy
|
770 |
msgid "Image Border Color"
|
771 |
msgstr "Çerçeve rengi seçiniz"
|
772 |
|
773 |
+
#: includes/class-gllr-settings.php:520
|
774 |
msgid "Pagination"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/class-gllr-settings.php:523
|
778 |
msgid ""
|
779 |
"Enable pagination for images to limit number of images displayed on a single "
|
780 |
"gallery page."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/class-gllr-settings.php:527
|
784 |
#, fuzzy
|
785 |
msgid "Number of Images"
|
786 |
msgstr "Bir satırdaki resim sayısı"
|
787 |
|
788 |
+
#: includes/class-gllr-settings.php:530
|
789 |
#, php-format
|
790 |
msgid "Number of images displayed per page (default is %d)."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/class-gllr-settings.php:540
|
794 |
#, fuzzy
|
795 |
msgid "Sort Images by"
|
796 |
msgstr "Resimleri sırala buna göre sırala"
|
797 |
|
798 |
+
#: includes/class-gllr-settings.php:543
|
799 |
msgid "Manually (default)"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: includes/class-gllr-settings.php:544
|
803 |
#, fuzzy
|
804 |
msgid "Image ID"
|
805 |
msgstr "Görsel"
|
806 |
|
807 |
+
#: includes/class-gllr-settings.php:545
|
808 |
msgid "Name"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
812 |
msgid ""
|
813 |
"Select images sorting order in your gallery. By default, you can sort images "
|
814 |
"manually in the images tab."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/class-gllr-settings.php:553
|
818 |
#, fuzzy
|
819 |
msgid "Arrange Images by"
|
820 |
msgstr "Resimleri sırala buna göre sırala"
|
821 |
|
822 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
823 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
827 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/class-gllr-settings.php:562
|
831 |
#, fuzzy
|
832 |
msgid "Back Link"
|
833 |
msgstr "Geri linki URL'si"
|
834 |
|
835 |
+
#: includes/class-gllr-settings.php:564
|
836 |
msgid ""
|
837 |
"Enable to show a back link in a single gallery page which navigate to a "
|
838 |
"previous page."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/class-gllr-settings.php:568
|
842 |
#, fuzzy
|
843 |
msgid "Back Link URL"
|
844 |
msgstr "Geri linki URL'si"
|
845 |
|
846 |
+
#: includes/class-gllr-settings.php:571
|
847 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/class-gllr-settings.php:575
|
851 |
#, fuzzy
|
852 |
msgid "Back Link Label"
|
853 |
msgstr "Geri linki URL'si"
|
854 |
|
855 |
+
#: includes/class-gllr-settings.php:581
|
856 |
#, fuzzy
|
857 |
msgid "Back Link with Shortcode"
|
858 |
msgstr "Kısa kodda Geri linkini göster"
|
859 |
|
860 |
+
#: includes/class-gllr-settings.php:584
|
861 |
#, fuzzy
|
862 |
msgid "Enable to display a back link on a page where shortcode is used."
|
863 |
msgstr "Kısa kodda Geri linkini göster"
|
864 |
|
865 |
+
#: includes/class-gllr-settings.php:595
|
866 |
#, fuzzy
|
867 |
msgid "Cover Settings"
|
868 |
msgstr "Galeri ayarları"
|
869 |
|
870 |
+
#: includes/class-gllr-settings.php:600
|
871 |
#, fuzzy
|
872 |
msgid "Galleries Page"
|
873 |
msgstr "Galeriler"
|
874 |
|
875 |
+
#: includes/class-gllr-settings.php:608
|
876 |
msgid "Base page where all existing galleries will be displayed."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/class-gllr-settings.php:612
|
880 |
msgid "Albums Displaying"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/class-gllr-settings.php:615
|
884 |
msgid "Column"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/class-gllr-settings.php:616
|
888 |
msgid "Rows"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/class-gllr-settings.php:618
|
892 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/class-gllr-settings.php:622
|
896 |
msgid "Column Alignment"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: includes/class-gllr-settings.php:625
|
900 |
msgid "Left"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/class-gllr-settings.php:626
|
904 |
msgid "Right"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/class-gllr-settings.php:627
|
908 |
msgid "Center"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/class-gllr-settings.php:629
|
912 |
msgid "Select the column alignment."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/class-gllr-settings.php:633
|
916 |
#, fuzzy
|
917 |
msgid "Cover Image Size"
|
918 |
msgstr "Resim boyutu"
|
919 |
|
920 |
+
#: includes/class-gllr-settings.php:641
|
921 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/class-gllr-settings.php:645
|
925 |
msgid "Custom Cover Image Size"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/class-gllr-settings.php:658
|
929 |
msgid "Crop Cover Images"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/class-gllr-settings.php:660
|
933 |
msgid ""
|
934 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
935 |
"Disable to resize images automatically using their aspect ratio."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: includes/class-gllr-settings.php:689
|
939 |
#, fuzzy
|
940 |
msgid "Cover Image Border"
|
941 |
msgstr "Çerçeveli resimler"
|
942 |
|
943 |
+
#: includes/class-gllr-settings.php:691
|
944 |
msgid ""
|
945 |
"Enable cover images border using the styles defined for Image Border Size "
|
946 |
"and Color."
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/class-gllr-settings.php:695
|
950 |
msgid "Cover Image Border Size"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/class-gllr-settings.php:698
|
954 |
#, php-format
|
955 |
msgid "Cover image border width (default is %s)"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/class-gllr-settings.php:702
|
959 |
#, fuzzy
|
960 |
msgid "Cover Image Border Color"
|
961 |
msgstr "Çerçeve rengi seçiniz"
|
962 |
|
963 |
+
#: includes/class-gllr-settings.php:708
|
964 |
#, fuzzy
|
965 |
msgid "Sort Albums by"
|
966 |
msgstr "Resimleri sırala buna göre sırala"
|
967 |
|
968 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
969 |
msgid "Select galleries sorting order in your galleries page."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/class-gllr-settings.php:724
|
973 |
msgid "Arrange Albums by"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/class-gllr-settings.php:733
|
977 |
#, fuzzy
|
978 |
msgid "Read More Link Label"
|
979 |
msgstr "Devamını oku linki için etiket"
|
980 |
|
981 |
+
#: includes/class-gllr-settings.php:746
|
982 |
msgid "Instant Lightbox"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/class-gllr-settings.php:749
|
986 |
msgid ""
|
987 |
"Enable to display all images in the lightbox after clicking cover image or "
|
988 |
"URL instead of going to a single gallery page."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/class-gllr-settings.php:763
|
992 |
#, fuzzy
|
993 |
msgid "Lightbox Settings"
|
994 |
msgstr "Lightbox arkaplanı"
|
995 |
|
996 |
+
#: includes/class-gllr-settings.php:768
|
997 |
+
msgid "Unclickable Thumbnail Images"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/class-gllr-settings.php:771
|
1001 |
+
msgid ""
|
1002 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1003 |
+
"URLs. This option also disables Lightbox."
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: includes/class-gllr-settings.php:775
|
1007 |
msgid "Enable Lightbox"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: includes/class-gllr-settings.php:778
|
1011 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: includes/class-gllr-settings.php:796
|
1015 |
msgid ""
|
1016 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1017 |
"will display the original, full size image."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/class-gllr-settings.php:800
|
1021 |
msgid "Overlay Color"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/class-gllr-settings.php:806
|
1025 |
msgid "Overlay Opacity"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/class-gllr-settings.php:809
|
1029 |
#, php-format
|
1030 |
msgid ""
|
1031 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1032 |
"is %s)."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/class-gllr-settings.php:819
|
1036 |
#, fuzzy
|
1037 |
msgid "Slideshow"
|
1038 |
msgstr "Slayt gösterisini başlat"
|
1039 |
|
1040 |
+
#: includes/class-gllr-settings.php:821
|
1041 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/class-gllr-settings.php:825
|
1045 |
#, fuzzy
|
1046 |
msgid "Slideshow Duration"
|
1047 |
msgstr "Slayt gösterisi sıklığı"
|
1048 |
|
1049 |
+
#: includes/class-gllr-settings.php:827
|
1050 |
msgid "ms"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/class-gllr-settings.php:828
|
1054 |
msgid "Slideshow interval duration between two images."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/class-gllr-settings.php:839
|
1058 |
#, fuzzy
|
1059 |
msgid "Lightbox Helpers"
|
1060 |
msgstr "Lightbox arkaplanı"
|
1061 |
|
1062 |
+
#: includes/class-gllr-settings.php:841
|
1063 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/class-gllr-settings.php:845
|
1067 |
#, fuzzy
|
1068 |
msgid "Lightbox Thumbnails"
|
1069 |
msgstr "Albüm kapağı için resim boyuru"
|
1070 |
|
1071 |
+
#: includes/class-gllr-settings.php:847
|
1072 |
msgid "Enable to use a lightbox helper navigation between images."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/class-gllr-settings.php:851
|
1076 |
msgid "Lightbox Thumbnails Position"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/class-gllr-settings.php:854
|
1080 |
#, fuzzy
|
1081 |
msgid "Top"
|
1082 |
msgstr "üst"
|
1083 |
|
1084 |
+
#: includes/class-gllr-settings.php:859
|
1085 |
#, fuzzy
|
1086 |
msgid "Lightbox Button Label"
|
1087 |
msgstr "Lightbox arkaplanı"
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:861
|
1090 |
#, fuzzy
|
1091 |
msgid "Read More"
|
1092 |
msgstr "Devamını Oku"
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:871
|
1095 |
msgid "Download Button"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/class-gllr-settings.php:873
|
1099 |
msgid "Enable to display download button."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:877
|
1103 |
msgid "Single Lightbox"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/class-gllr-settings.php:879
|
1107 |
msgid ""
|
1108 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1109 |
"page."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/class-gllr-settings.php:889
|
1113 |
msgid "Social Sharing Buttons Settings"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/class-gllr-settings.php:898
|
1117 |
msgid "Social Buttons"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/class-gllr-settings.php:900
|
1121 |
msgid "Enable social sharing buttons in the lightbox."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/class-gllr-settings.php:904
|
1125 |
msgid "Social Networks"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/class-gllr-settings.php:915
|
1129 |
#, fuzzy
|
1130 |
msgid "Counter"
|
1131 |
msgstr "Slayt gösterisi sıklığı"
|
1132 |
|
1133 |
+
#: includes/class-gllr-settings.php:918
|
1134 |
msgid ""
|
1135 |
"Enable to show likes counter for each social button (not available for "
|
1136 |
"Google +1)."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/class-gllr-settings.php:933
|
1140 |
#, fuzzy
|
1141 |
msgid "Demo Data"
|
1142 |
msgstr "%s yükle"
|
1143 |
|
1144 |
+
#: includes/class-gllr-settings.php:935
|
1145 |
msgid ""
|
1146 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1147 |
"page with a list of all galleries."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/class-gllr-settings.php:973
|
1151 |
#, fuzzy
|
1152 |
msgid "Gallery Post Type"
|
1153 |
msgstr "Galeri Kısa Kodu"
|
1154 |
|
1155 |
+
#: includes/class-gllr-settings.php:975
|
1156 |
msgid ""
|
1157 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1158 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1160 |
"used."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/class-gllr-settings.php:987
|
1164 |
#, fuzzy
|
1165 |
msgid "Gallery Slug"
|
1166 |
msgstr "Galeri"
|
1167 |
|
1168 |
+
#: includes/class-gllr-settings.php:991
|
1169 |
msgid "Enter the unique gallery slug."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/class-gllr-settings.php:1007
|
1173 |
#, fuzzy
|
1174 |
msgid "Activate Now"
|
1175 |
msgstr "Etkinleştirilmiş eklentiler"
|
1176 |
|
1177 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1178 |
msgid "Enable to include galleries to your website search."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/class-gllr-settings.php:1025
|
1182 |
#, php-format
|
1183 |
msgid "%s is required."
|
1184 |
msgstr ""
|
1308 |
#~ msgid "Learn more"
|
1309 |
#~ msgstr "Devamını Oku"
|
1310 |
|
|
|
|
|
|
|
|
|
1311 |
#, fuzzy
|
1312 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1313 |
#~ msgstr "Lightbox içerisinde beğen butonlarını göster"
|
1488 |
#~ msgid "Select a background color"
|
1489 |
#~ msgstr "Arkaplan rengi seçiniz"
|
1490 |
|
|
|
|
|
|
|
|
|
1491 |
#~ msgid "Width (in px)"
|
1492 |
#~ msgstr "Yatay boyut (px)"
|
1493 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft <https://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -13,120 +13,120 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Налаштування Галерей"
|
22 |
|
23 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Загальні налаштування"
|
26 |
|
27 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Оновитися до Pro"
|
30 |
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Повернутись до всіх альбомів"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "See images »"
|
37 |
msgstr "Переглянути фото »"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереї"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Додати нову галерею"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редагувати галерею"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Нова галерея"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Переглянути галерею"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Шукати галереї"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Жодної галереї не знайдено"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
-
#: gallery-plugin.php:
|
73 |
-
#: gallery-plugin.php:
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категорії галерей"
|
76 |
|
77 |
-
#: gallery-plugin.php:
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категорія галерей"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Додати категорію галерей"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Додати нову категорію галерей"
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редагувати категорію галерей"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Нова категорія галерей"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Переглянути категорію галерей"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Знайти категорію галерей"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Не знайдено жодної категорії галерей"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "В кошику не знайдено жодної категорії галерей"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Батьківська категорія галерей"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навігація списку категорій галерей"
|
120 |
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорій галерей"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереї"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid ""
|
131 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
132 |
"widgets by using the following shortcode:"
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
"Додайте одну галерею із зображеннями в ваші записи, сторінки, користувацьки "
|
135 |
"типи записів або віджети за допомогою наступного шорткода:"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
msgid ""
|
139 |
"Add a gallery cover including featured image, description, and a link to "
|
140 |
"your single gallery using the following shortcode:"
|
@@ -142,11 +142,11 @@ msgstr ""
|
|
142 |
"Додайте альбом галереї, включаючи головне зображення, опис і посилання на "
|
143 |
"повну галерею за допомогою наступного шорткода:"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Note"
|
147 |
msgstr "Примітка"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"When deleting a category, the galleries that belong to this category will "
|
@@ -155,119 +155,118 @@ msgstr ""
|
|
155 |
"Видалення категорії не призведе до видалення галерей з цієї категорії. "
|
156 |
"Замість цього галереї з видаленої категорії будуть переміщені в категорію %s."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Sort Galleries in Category by"
|
160 |
msgstr "Сортувати галереї в категорії по"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
-
#: includes/class-gllr-settings.php:
|
164 |
msgid "Gallery ID"
|
165 |
msgstr "ID галереї"
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
-
#: gallery-plugin.php:
|
169 |
-
#: includes/class-gllr-settings.php:
|
170 |
msgid "Title"
|
171 |
msgstr "Назва"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
-
#: includes/class-gllr-settings.php:
|
175 |
msgid "Date"
|
176 |
msgstr "Дата"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: includes/class-gllr-settings.php:
|
180 |
msgid "Last modified date"
|
181 |
msgstr "Дата останньої зміни"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: includes/class-gllr-settings.php:
|
185 |
msgid "Comment count"
|
186 |
msgstr "Кількість коментарів"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
#: includes/class-gllr-settings.php:
|
190 |
msgid "\"Order\" field on the gallery edit page"
|
191 |
msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: includes/class-gllr-settings.php:
|
195 |
msgid "Author"
|
196 |
msgstr "Автор"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: includes/class-gllr-settings.php:
|
200 |
msgid "Random"
|
201 |
msgstr "Довільно"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "Plugin Settings"
|
205 |
msgstr "Налаштування плагіна"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Select galleries sorting order in your category."
|
209 |
msgstr "Виберіть порядок сортування галерей у вашій категорії."
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Усі категорії галерей"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Ви не можете видалити стандартну категорію галереї."
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
-
#: template/gallery-single-template.php:95
|
225 |
msgid "Sorry, nothing found."
|
226 |
msgstr "Вибачте, нічого не знайдено."
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Featured Image"
|
230 |
msgstr "Зображення альбому"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Images"
|
234 |
msgstr "Зображення"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, php-format
|
238 |
msgid "%s Settings"
|
239 |
msgstr "Налаштування %s"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
243 |
msgid "Settings"
|
244 |
msgstr "Налаштування"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "FAQ"
|
248 |
msgstr "FAQ"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Support"
|
252 |
msgstr "Техпідтримка"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "Updating images..."
|
256 |
msgstr "Оновлення зображень..."
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "No images found."
|
260 |
msgstr "Зображення не знайдені."
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
msgid "All images were updated."
|
264 |
msgstr "Усі зображення оновлено."
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid "Error."
|
268 |
msgstr "Помилка."
|
269 |
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid ""
|
272 |
"You are about to remove these items from this gallery.\n"
|
273 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -275,7 +274,7 @@ msgstr ""
|
|
275 |
"Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
|
276 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid ""
|
280 |
"You are about to remove this image from the gallery.\n"
|
281 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -283,7 +282,7 @@ msgstr ""
|
|
283 |
"Ви збираєтеся видалити це зображення з галереї.\n"
|
284 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid ""
|
288 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
289 |
"switching?"
|
@@ -291,19 +290,23 @@ msgstr ""
|
|
291 |
"При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
|
292 |
"їх перед переходом?"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Insert Media"
|
296 |
msgstr "Додати медіафайл"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Insert"
|
300 |
msgstr "Додати"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
303 |
msgid "Image size not defined"
|
304 |
msgstr "Неможливо визначити розмір зображення"
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid ""
|
308 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
309 |
"reload images manually."
|
@@ -311,75 +314,75 @@ msgstr ""
|
|
311 |
"Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
|
312 |
"Для інших типів, будь ласка, перезавантажте зображення вручну."
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Invalid path"
|
316 |
msgstr "Невірний шлях до зображення"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "List View"
|
320 |
msgstr "У вигляді списку"
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Grid View"
|
324 |
msgstr "У вигляді сітки"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Filter"
|
328 |
msgstr "Фільтр"
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Empty Trash"
|
332 |
msgstr "Очистити кошик"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "No images found"
|
336 |
msgstr "Жодного зображення не знайдено"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Select bulk action"
|
340 |
msgstr "Вибрати групову дію"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Bulk Actions"
|
344 |
msgstr "Групові дії"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Apply"
|
348 |
msgstr "Застосувати"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Delete from Gallery"
|
352 |
msgstr "Видалити з галереї"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Bulk Select"
|
356 |
msgstr "Вибір"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "Cancel Selection"
|
360 |
msgstr "Скасувати вибір"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Delete Selected"
|
364 |
msgstr "Видалити вибране"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "File"
|
368 |
msgstr "Файл"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Dimensions"
|
372 |
msgstr "Розміри"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Alt Text"
|
376 |
msgstr "Альтернативний текст"
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
msgid "URL"
|
380 |
msgstr "Посилання"
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
msgid ""
|
384 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
385 |
"to open a full size image."
|
@@ -387,134 +390,134 @@ msgstr ""
|
|
387 |
"Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
|
388 |
"файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
msgid "Remove Image from Gallery"
|
392 |
msgstr "Видалити зображення з галереї"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Edit Image Info"
|
396 |
msgstr "Редагувати інформацію зображення"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Deselect"
|
400 |
msgstr "Скасувати вибір"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "File name"
|
404 |
msgstr "Назва файлу"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
msgid "File type"
|
408 |
msgstr "Тип файлу"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "Description"
|
412 |
msgstr "Опис"
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "Lightbox Button URL"
|
416 |
msgstr "Посилання для кнопки в лайтбоксі"
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "New Tab"
|
420 |
msgstr "Нова вкладка"
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Enable to open URLs above in a new tab."
|
424 |
msgstr "Увімкніть, щоб відкрити вказаний вище URL в новій вкладці."
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Go Pro"
|
428 |
msgstr "Оновитися до Pro"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Edit more details"
|
432 |
msgstr "Змінити деталі"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "Remove from Gallery"
|
436 |
msgstr "Видалити з галереї"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
#, php-format
|
440 |
msgid "Select %s"
|
441 |
msgstr "Вибрати %s"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
#, php-format
|
445 |
msgid "Edit “%s”"
|
446 |
msgstr "Редагувати “%s”"
|
447 |
|
448 |
-
#: gallery-plugin.php:
|
449 |
msgid "Edit Attachment Info"
|
450 |
msgstr "Змінити інформацію зображення"
|
451 |
|
452 |
-
#: gallery-plugin.php:
|
453 |
msgid "Edit"
|
454 |
msgstr "Змінити"
|
455 |
|
456 |
-
#: gallery-plugin.php:
|
457 |
msgid "Trash"
|
458 |
msgstr "Кошик"
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Delete Permanently"
|
462 |
msgstr "Видалити назавжди"
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
#, php-format
|
466 |
msgid "View “%s”"
|
467 |
msgstr "Перегляд “%s”"
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "View"
|
471 |
msgstr "Перегляд"
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "Attach"
|
475 |
msgstr "Прикріпити"
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "Restore"
|
479 |
msgstr "Відновити"
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid "A list or dropdown of Gallery categories."
|
483 |
msgstr "Список чи випадаюче меню категорій галерей."
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid "Select Gallery Category"
|
487 |
msgstr "Оберіть категорію галерей"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid "Title:"
|
491 |
msgstr "Заголовок:"
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
msgid "Display as dropdown"
|
495 |
msgstr "У вигляді випадаючого меню"
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
msgid "Show gallery counts"
|
499 |
msgstr "Показати кількість галерей"
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
msgid "Show hierarchy"
|
503 |
msgstr "Показати ієрархію"
|
504 |
|
505 |
-
#: gallery-plugin.php:
|
506 |
msgid "Warning"
|
507 |
msgstr "Увага"
|
508 |
|
509 |
-
#: gallery-plugin.php:
|
510 |
msgid "You can add only images to the gallery"
|
511 |
msgstr "В галерею можна додати лише зображення"
|
512 |
|
513 |
-
#: gallery-plugin.php:
|
514 |
msgid "no title"
|
515 |
msgstr "без назви"
|
516 |
|
517 |
-
#: gallery-plugin.php:
|
518 |
msgid ""
|
519 |
"Display an album image with the description and the link to a single gallery "
|
520 |
"page"
|
@@ -522,7 +525,7 @@ msgstr ""
|
|
522 |
"Відобразити зображення альбому з описом і посиланням на окрему сторінку "
|
523 |
"галереї"
|
524 |
|
525 |
-
#: gallery-plugin.php:
|
526 |
msgid "Sorry, no gallery found."
|
527 |
msgstr "Вибачте, жодної галереї не знайдено."
|
528 |
|
@@ -554,107 +557,129 @@ msgstr "Імпорт / Експорт"
|
|
554 |
msgid "License Key"
|
555 |
msgstr "Ліцензійний ключ"
|
556 |
|
557 |
-
#: includes/class-gllr-settings.php:
|
558 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
559 |
-
msgstr ""
|
560 |
-
"Користувацький розмір зображення був змінений. Вам необхідно оновити "
|
561 |
-
"зображення галерей."
|
562 |
-
|
563 |
-
#: includes/class-gllr-settings.php:247
|
564 |
msgid "Settings saved"
|
565 |
msgstr "Налаштування збережено"
|
566 |
|
567 |
-
#: includes/class-gllr-settings.php:
|
568 |
msgid "Please, enable JavaScript in Your browser."
|
569 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
570 |
|
571 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
msgid "Update Images"
|
573 |
msgstr "Оновити зображення"
|
574 |
|
575 |
-
#: includes/class-gllr-settings.php:
|
576 |
msgid "Gallery Images"
|
577 |
msgstr "Зображення галереї"
|
578 |
|
579 |
-
#: includes/class-gllr-settings.php:
|
580 |
msgid "Images adding requires JavaScript."
|
581 |
msgstr "Додавання зображень вимагає використання JavaScript."
|
582 |
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
msgid "Add Media"
|
585 |
msgstr "Додати медіафайл"
|
586 |
|
587 |
-
#: includes/class-gllr-settings.php:
|
588 |
msgid "The grid view for the Gallery images requires JavaScript."
|
589 |
msgstr "Перегляд зображень у вигляді сітки вимагає використання JavaScript."
|
590 |
|
591 |
-
#: includes/class-gllr-settings.php:
|
592 |
msgid "Switch to the list view"
|
593 |
msgstr "Переключитися на список"
|
594 |
|
595 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
msgid "Single Gallery Settings"
|
597 |
msgstr "Налаштування галереї"
|
598 |
|
599 |
-
#: includes/class-gllr-settings.php:
|
600 |
#, php-format
|
601 |
msgid "Enable to configure single gallery settings and disable %s."
|
602 |
msgstr "Увімкніть щоб налаштувати цю галерею і відключити %s."
|
603 |
|
604 |
-
#: includes/class-gllr-settings.php:
|
605 |
-
#: includes/class-gllr-settings.php:
|
606 |
-
#: includes/class-gllr-settings.php:
|
607 |
-
#: includes/class-gllr-settings.php:
|
608 |
-
#: includes/class-gllr-settings.php:
|
609 |
msgid "Close"
|
610 |
msgstr "Закрити"
|
611 |
|
612 |
-
#: includes/class-gllr-settings.php:
|
613 |
msgid "Gallery Layout"
|
614 |
msgstr "Макет галереї"
|
615 |
|
616 |
-
#: includes/class-gllr-settings.php:
|
617 |
msgid "Grid"
|
618 |
msgstr "Сітка"
|
619 |
|
620 |
-
#: includes/class-gllr-settings.php:
|
621 |
msgid "Masonry"
|
622 |
msgstr "Masonry"
|
623 |
|
624 |
-
#: includes/class-gllr-settings.php:
|
625 |
msgid "Number of Columns"
|
626 |
msgstr "Кількість колонок"
|
627 |
|
628 |
-
#: includes/class-gllr-settings.php:
|
629 |
#, php-format
|
630 |
msgid "Number of gallery columns (default is %s)."
|
631 |
msgstr "Кількість колонок галерей (за замовчуванням - %s)."
|
632 |
|
633 |
-
#: includes/class-gllr-settings.php:
|
634 |
msgid "Image Size"
|
635 |
msgstr "Розмір зображення"
|
636 |
|
637 |
-
#: includes/class-gllr-settings.php:
|
638 |
msgid "Custom"
|
639 |
msgstr "Користувацький"
|
640 |
|
641 |
-
#: includes/class-gllr-settings.php:
|
642 |
msgid ""
|
643 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
644 |
msgstr ""
|
645 |
"Максимальний розмір зображень галереї. Користувацький використовує значення, "
|
646 |
"зазначені в полі Розміри зображення."
|
647 |
|
648 |
-
#: includes/class-gllr-settings.php:
|
649 |
msgid "Custom Image Size"
|
650 |
msgstr "Користувацький розмір зображення"
|
651 |
|
652 |
-
#: includes/class-gllr-settings.php:
|
653 |
-
#: includes/class-gllr-settings.php:
|
654 |
msgid "px"
|
655 |
msgstr "пікс"
|
656 |
|
657 |
-
#: includes/class-gllr-settings.php:
|
658 |
msgid ""
|
659 |
"Adjust these values based on the number of columns in your gallery. This "
|
660 |
"won't effect the full size of your images in the lightbox."
|
@@ -662,11 +687,11 @@ msgstr ""
|
|
662 |
"Відрегулюйте ці значення з урахуванням числа колонок у вашій галереї. Це не "
|
663 |
"впливає на розміри повного зображення в лайтбоксі."
|
664 |
|
665 |
-
#: includes/class-gllr-settings.php:
|
666 |
msgid "Crop Images"
|
667 |
msgstr "Обрізка зображень"
|
668 |
|
669 |
-
#: includes/class-gllr-settings.php:
|
670 |
msgid ""
|
671 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
672 |
"to resize images automatically using their aspect ratio."
|
@@ -675,40 +700,40 @@ msgstr ""
|
|
675 |
"користувацького розміру зображення. Вимкніть, щоб змінити розмір зображення "
|
676 |
"автоматично, використовуючи їх пропорції."
|
677 |
|
678 |
-
#: includes/class-gllr-settings.php:
|
679 |
msgid "Crop Position"
|
680 |
msgstr "Позиція обрізки"
|
681 |
|
682 |
-
#: includes/class-gllr-settings.php:
|
683 |
msgid "Select crop position base (by default: center)."
|
684 |
msgstr "Оберіть позицію обрізки (за замовчуванням: центр)."
|
685 |
|
686 |
-
#: includes/class-gllr-settings.php:
|
687 |
msgid "Image Title"
|
688 |
msgstr "Назва зображення"
|
689 |
|
690 |
-
#: includes/class-gllr-settings.php:
|
691 |
msgid "Enable to display image title along with the gallery image."
|
692 |
msgstr ""
|
693 |
"Увімкніть, щоб відобразити назву зображення разом із зображенням галереї."
|
694 |
|
695 |
-
#: includes/class-gllr-settings.php:
|
696 |
msgid "Image Title Position"
|
697 |
msgstr "Розташування назви зображення"
|
698 |
|
699 |
-
#: includes/class-gllr-settings.php:
|
700 |
msgid "Under image"
|
701 |
msgstr "Під зображенням"
|
702 |
|
703 |
-
#: includes/class-gllr-settings.php:
|
704 |
msgid "On mouse hover"
|
705 |
msgstr "По наведенню миші"
|
706 |
|
707 |
-
#: includes/class-gllr-settings.php:
|
708 |
msgid "Image Border"
|
709 |
msgstr "Рамка зображення"
|
710 |
|
711 |
-
#: includes/class-gllr-settings.php:
|
712 |
msgid ""
|
713 |
"Enable images border using the styles defined for Image Border Size and "
|
714 |
"Color options."
|
@@ -716,24 +741,24 @@ msgstr ""
|
|
716 |
"Увімкнути рамку зображення з використанням стилів, зазначених для Кольору і "
|
717 |
"Розміру рамки."
|
718 |
|
719 |
-
#: includes/class-gllr-settings.php:
|
720 |
msgid "Image Border Size"
|
721 |
msgstr "Розмір рамки зображення"
|
722 |
|
723 |
-
#: includes/class-gllr-settings.php:
|
724 |
#, php-format
|
725 |
msgid "Gallery image border width (default is %s)"
|
726 |
msgstr "Ширина рамки для зображень галереї (за замовчуванням %s)"
|
727 |
|
728 |
-
#: includes/class-gllr-settings.php:
|
729 |
msgid "Image Border Color"
|
730 |
msgstr "Колір рамки зображень"
|
731 |
|
732 |
-
#: includes/class-gllr-settings.php:
|
733 |
msgid "Pagination"
|
734 |
msgstr "Посторінкова навігація"
|
735 |
|
736 |
-
#: includes/class-gllr-settings.php:
|
737 |
msgid ""
|
738 |
"Enable pagination for images to limit number of images displayed on a single "
|
739 |
"gallery page."
|
@@ -741,34 +766,34 @@ msgstr ""
|
|
741 |
"Включити посторінкову навігацію для зображень, щоб обмежити кількість "
|
742 |
"зображень, що відображаються на одній сторінці галереї."
|
743 |
|
744 |
-
#: includes/class-gllr-settings.php:
|
745 |
msgid "Number of Images"
|
746 |
msgstr "Кількість зображень"
|
747 |
|
748 |
-
#: includes/class-gllr-settings.php:
|
749 |
#, php-format
|
750 |
msgid "Number of images displayed per page (default is %d)."
|
751 |
msgstr ""
|
752 |
"Кількість зображень, що відображаються на одній сторінці (за замовчуванням "
|
753 |
"%d)."
|
754 |
|
755 |
-
#: includes/class-gllr-settings.php:
|
756 |
msgid "Sort Images by"
|
757 |
msgstr "Сортувати зображення за"
|
758 |
|
759 |
-
#: includes/class-gllr-settings.php:
|
760 |
msgid "Manually (default)"
|
761 |
msgstr "Вручну (за замовчуванням)"
|
762 |
|
763 |
-
#: includes/class-gllr-settings.php:
|
764 |
msgid "Image ID"
|
765 |
msgstr "ID зображення"
|
766 |
|
767 |
-
#: includes/class-gllr-settings.php:
|
768 |
msgid "Name"
|
769 |
msgstr "Назва"
|
770 |
|
771 |
-
#: includes/class-gllr-settings.php:
|
772 |
msgid ""
|
773 |
"Select images sorting order in your gallery. By default, you can sort images "
|
774 |
"manually in the images tab."
|
@@ -776,23 +801,23 @@ msgstr ""
|
|
776 |
"Оберіть порядок сортування зображень у вашій галереї. За замовчуванням, це "
|
777 |
"ручне сортування зображення на вкладці зображень."
|
778 |
|
779 |
-
#: includes/class-gllr-settings.php:
|
780 |
msgid "Arrange Images by"
|
781 |
msgstr "Сортувати зображення"
|
782 |
|
783 |
-
#: includes/class-gllr-settings.php:
|
784 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
785 |
msgstr "За зростанням (наприклад, 1, 2, 3; а, б, в)"
|
786 |
|
787 |
-
#: includes/class-gllr-settings.php:
|
788 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
789 |
msgstr "За зменшенням (наприклад, 3, 2, 1; в, б, а)"
|
790 |
|
791 |
-
#: includes/class-gllr-settings.php:
|
792 |
msgid "Back Link"
|
793 |
msgstr "Зворотнє посилання"
|
794 |
|
795 |
-
#: includes/class-gllr-settings.php:
|
796 |
msgid ""
|
797 |
"Enable to show a back link in a single gallery page which navigate to a "
|
798 |
"previous page."
|
@@ -800,97 +825,97 @@ msgstr ""
|
|
800 |
"Включити, щоб показати зворотнє посилання на сторінці галереї, яке перейде "
|
801 |
"до попередньої сторінки."
|
802 |
|
803 |
-
#: includes/class-gllr-settings.php:
|
804 |
msgid "Back Link URL"
|
805 |
msgstr "URL зворотнього посилання"
|
806 |
|
807 |
-
#: includes/class-gllr-settings.php:
|
808 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
809 |
msgstr ""
|
810 |
"Користувацький URL для зворотнього посилання. Залиште порожнім, щоб "
|
811 |
"використовувати сторінку галерей."
|
812 |
|
813 |
-
#: includes/class-gllr-settings.php:
|
814 |
msgid "Back Link Label"
|
815 |
msgstr "Текст зворотнього посилання"
|
816 |
|
817 |
-
#: includes/class-gllr-settings.php:
|
818 |
msgid "Back Link with Shortcode"
|
819 |
msgstr "Зворотнє посилання у шорткоді"
|
820 |
|
821 |
-
#: includes/class-gllr-settings.php:
|
822 |
msgid "Enable to display a back link on a page where shortcode is used."
|
823 |
msgstr ""
|
824 |
"Увімкніть, щоб відображати зворотнє посилання на сторінку при використанні "
|
825 |
"шорткода."
|
826 |
|
827 |
-
#: includes/class-gllr-settings.php:
|
828 |
msgid "Cover Settings"
|
829 |
msgstr "Налаштування альбому"
|
830 |
|
831 |
-
#: includes/class-gllr-settings.php:
|
832 |
msgid "Galleries Page"
|
833 |
msgstr "Сторінка галерей"
|
834 |
|
835 |
-
#: includes/class-gllr-settings.php:
|
836 |
msgid "Base page where all existing galleries will be displayed."
|
837 |
msgstr "Базова сторінка, на якій будуть відображатися всі існуючі галереї."
|
838 |
|
839 |
-
#: includes/class-gllr-settings.php:
|
840 |
msgid "Albums Displaying"
|
841 |
msgstr "Відображення альбомів"
|
842 |
|
843 |
-
#: includes/class-gllr-settings.php:
|
844 |
msgid "Column"
|
845 |
msgstr "У колонку"
|
846 |
|
847 |
-
#: includes/class-gllr-settings.php:
|
848 |
msgid "Rows"
|
849 |
msgstr "У ряд"
|
850 |
|
851 |
-
#: includes/class-gllr-settings.php:
|
852 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
853 |
msgstr "Оберіть, як галереї відображатимуться на сторінці Галерей."
|
854 |
|
855 |
-
#: includes/class-gllr-settings.php:
|
856 |
msgid "Column Alignment"
|
857 |
msgstr "Вирівнювання колонки"
|
858 |
|
859 |
-
#: includes/class-gllr-settings.php:
|
860 |
msgid "Left"
|
861 |
msgstr "Ліво"
|
862 |
|
863 |
-
#: includes/class-gllr-settings.php:
|
864 |
msgid "Right"
|
865 |
msgstr "Право"
|
866 |
|
867 |
-
#: includes/class-gllr-settings.php:
|
868 |
msgid "Center"
|
869 |
msgstr "Центр"
|
870 |
|
871 |
-
#: includes/class-gllr-settings.php:
|
872 |
msgid "Select the column alignment."
|
873 |
msgstr "Оберіть вирівнювання колонки."
|
874 |
|
875 |
-
#: includes/class-gllr-settings.php:
|
876 |
msgid "Cover Image Size"
|
877 |
msgstr "Розмір зображення альбому"
|
878 |
|
879 |
-
#: includes/class-gllr-settings.php:
|
880 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
881 |
msgstr ""
|
882 |
"Максимальний розмір зображення альбому. Користувацький використовує значення "
|
883 |
"Розмірів зображення."
|
884 |
|
885 |
-
#: includes/class-gllr-settings.php:
|
886 |
msgid "Custom Cover Image Size"
|
887 |
msgstr "Користувацький розмір зображення альбому"
|
888 |
|
889 |
-
#: includes/class-gllr-settings.php:
|
890 |
msgid "Crop Cover Images"
|
891 |
msgstr "Обрізка зображення альбому"
|
892 |
|
893 |
-
#: includes/class-gllr-settings.php:
|
894 |
msgid ""
|
895 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
896 |
"Disable to resize images automatically using their aspect ratio."
|
@@ -899,11 +924,11 @@ msgstr ""
|
|
899 |
"користувацького розміру зображення альбому. Вимкніть, щоб змінити розмір "
|
900 |
"зображення автоматично, використовуючи їх пропорції."
|
901 |
|
902 |
-
#: includes/class-gllr-settings.php:
|
903 |
msgid "Cover Image Border"
|
904 |
msgstr "Рамка для зображення альбому"
|
905 |
|
906 |
-
#: includes/class-gllr-settings.php:
|
907 |
msgid ""
|
908 |
"Enable cover images border using the styles defined for Image Border Size "
|
909 |
"and Color."
|
@@ -911,40 +936,40 @@ msgstr ""
|
|
911 |
"Увімкнути рамку зображення альбому з використанням стилів, зазначених для "
|
912 |
"Кольору і Розміру рамки."
|
913 |
|
914 |
-
#: includes/class-gllr-settings.php:
|
915 |
msgid "Cover Image Border Size"
|
916 |
msgstr "Розмір рамки зображення альбому"
|
917 |
|
918 |
-
#: includes/class-gllr-settings.php:
|
919 |
#, php-format
|
920 |
msgid "Cover image border width (default is %s)"
|
921 |
msgstr "Ширина рамки для зображення альбому (за замовчуванням %s)"
|
922 |
|
923 |
-
#: includes/class-gllr-settings.php:
|
924 |
msgid "Cover Image Border Color"
|
925 |
msgstr "Колір рамки зображення альбому"
|
926 |
|
927 |
-
#: includes/class-gllr-settings.php:
|
928 |
msgid "Sort Albums by"
|
929 |
msgstr "Сортувати альбоми за"
|
930 |
|
931 |
-
#: includes/class-gllr-settings.php:
|
932 |
msgid "Select galleries sorting order in your galleries page."
|
933 |
msgstr "Оберіть порядок сортування галерей на сторінці галерей."
|
934 |
|
935 |
-
#: includes/class-gllr-settings.php:
|
936 |
msgid "Arrange Albums by"
|
937 |
msgstr "Сортування альбомів за"
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
940 |
msgid "Read More Link Label"
|
941 |
msgstr "Текст посилання Дізнатися більше"
|
942 |
|
943 |
-
#: includes/class-gllr-settings.php:
|
944 |
msgid "Instant Lightbox"
|
945 |
msgstr "Миттєвий лайтбокс"
|
946 |
|
947 |
-
#: includes/class-gllr-settings.php:
|
948 |
msgid ""
|
949 |
"Enable to display all images in the lightbox after clicking cover image or "
|
950 |
"URL instead of going to a single gallery page."
|
@@ -952,31 +977,31 @@ msgstr ""
|
|
952 |
"Увімкніть, щоб відображати всі зображення в лайтбоксі після натискання на "
|
953 |
"зображення альбому або URL замість переходу на окрему сторінку галереї."
|
954 |
|
955 |
-
#: includes/class-gllr-settings.php:
|
956 |
msgid "Lightbox Settings"
|
957 |
msgstr "Налаштування лайтбоксу"
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid "Unclickable Thumbnail Images"
|
961 |
msgstr "Некликабельна картинка"
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
msgid ""
|
965 |
"Enable to make the images in a single gallery unclickable and hide their "
|
966 |
-
"URLs. This option also disables Lightbox.
|
967 |
msgstr ""
|
968 |
"Увімкніть, щоб зробити мініатюри зображень в галереї неклікабельнимі, а "
|
969 |
"також не відображати їх посилання. Ця опція також відключає лайтбокс."
|
970 |
|
971 |
-
#: includes/class-gllr-settings.php:
|
972 |
msgid "Enable Lightbox"
|
973 |
msgstr "Увімкнути лайтбокс"
|
974 |
|
975 |
-
#: includes/class-gllr-settings.php:
|
976 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
977 |
msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
|
978 |
|
979 |
-
#: includes/class-gllr-settings.php:
|
980 |
msgid ""
|
981 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
982 |
"will display the original, full size image."
|
@@ -984,15 +1009,15 @@ msgstr ""
|
|
984 |
"Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
|
985 |
"замовчуванням буде відображатися оригінал, повний розмір."
|
986 |
|
987 |
-
#: includes/class-gllr-settings.php:
|
988 |
msgid "Overlay Color"
|
989 |
msgstr "Колір підкладки"
|
990 |
|
991 |
-
#: includes/class-gllr-settings.php:
|
992 |
msgid "Overlay Opacity"
|
993 |
msgstr "Прозорість підкладки"
|
994 |
|
995 |
-
#: includes/class-gllr-settings.php:
|
996 |
#, php-format
|
997 |
msgid ""
|
998 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -1001,76 +1026,76 @@ msgstr ""
|
|
1001 |
"Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
|
1002 |
"(за замовчуванням %s, максимум %s)."
|
1003 |
|
1004 |
-
#: includes/class-gllr-settings.php:
|
1005 |
msgid "Slideshow"
|
1006 |
msgstr "Слайд-шоу"
|
1007 |
|
1008 |
-
#: includes/class-gllr-settings.php:
|
1009 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1010 |
msgstr ""
|
1011 |
"Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
|
1012 |
|
1013 |
-
#: includes/class-gllr-settings.php:
|
1014 |
msgid "Slideshow Duration"
|
1015 |
msgstr "Інтервал часу"
|
1016 |
|
1017 |
-
#: includes/class-gllr-settings.php:
|
1018 |
msgid "ms"
|
1019 |
msgstr "мс"
|
1020 |
|
1021 |
-
#: includes/class-gllr-settings.php:
|
1022 |
msgid "Slideshow interval duration between two images."
|
1023 |
msgstr "Інтервал перемикання між двома зображеннями."
|
1024 |
|
1025 |
-
#: includes/class-gllr-settings.php:
|
1026 |
msgid "Lightbox Helpers"
|
1027 |
msgstr "Допоміжні елементи лайтбоксу"
|
1028 |
|
1029 |
-
#: includes/class-gllr-settings.php:
|
1030 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1031 |
msgstr ""
|
1032 |
"Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
msgid "Lightbox Thumbnails"
|
1036 |
msgstr "Мініатюри в лайтбоксі"
|
1037 |
|
1038 |
-
#: includes/class-gllr-settings.php:
|
1039 |
msgid "Enable to use a lightbox helper navigation between images."
|
1040 |
msgstr ""
|
1041 |
"Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
|
1042 |
"зображеннями."
|
1043 |
|
1044 |
-
#: includes/class-gllr-settings.php:
|
1045 |
msgid "Lightbox Thumbnails Position"
|
1046 |
msgstr "Розташування мініатюр в лайтбоксі"
|
1047 |
|
1048 |
-
#: includes/class-gllr-settings.php:
|
1049 |
msgid "Top"
|
1050 |
msgstr "Верх"
|
1051 |
|
1052 |
-
#: includes/class-gllr-settings.php:
|
1053 |
msgid "Lightbox Button Label"
|
1054 |
msgstr "Текст кнопки в лайтбоксі"
|
1055 |
|
1056 |
-
#: includes/class-gllr-settings.php:
|
1057 |
msgid "Read More"
|
1058 |
msgstr "Дізнатися більше"
|
1059 |
|
1060 |
-
#: includes/class-gllr-settings.php:
|
1061 |
msgid "Download Button"
|
1062 |
msgstr "Кнопка \"Завантажити\""
|
1063 |
|
1064 |
-
#: includes/class-gllr-settings.php:
|
1065 |
msgid "Enable to display download button."
|
1066 |
msgstr ""
|
1067 |
"Увімкніть, щоб показати посилання на завантаження оригінального зображення."
|
1068 |
|
1069 |
-
#: includes/class-gllr-settings.php:
|
1070 |
msgid "Single Lightbox"
|
1071 |
msgstr "Один лайтбокс"
|
1072 |
|
1073 |
-
#: includes/class-gllr-settings.php:
|
1074 |
msgid ""
|
1075 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1076 |
"page."
|
@@ -1078,27 +1103,27 @@ msgstr ""
|
|
1078 |
"Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
|
1079 |
"розташованих на одній сторінці."
|
1080 |
|
1081 |
-
#: includes/class-gllr-settings.php:
|
1082 |
msgid "Social Sharing Buttons Settings"
|
1083 |
msgstr "Налаштування соціальних кнопок"
|
1084 |
|
1085 |
-
#: includes/class-gllr-settings.php:
|
1086 |
msgid "Social Buttons"
|
1087 |
msgstr "Соціальні кнопки"
|
1088 |
|
1089 |
-
#: includes/class-gllr-settings.php:
|
1090 |
msgid "Enable social sharing buttons in the lightbox."
|
1091 |
msgstr "Увімкніть соціальні кнопки в лайтбоксі."
|
1092 |
|
1093 |
-
#: includes/class-gllr-settings.php:
|
1094 |
msgid "Social Networks"
|
1095 |
msgstr "Соціальні мережі"
|
1096 |
|
1097 |
-
#: includes/class-gllr-settings.php:
|
1098 |
msgid "Counter"
|
1099 |
msgstr "Лічильник"
|
1100 |
|
1101 |
-
#: includes/class-gllr-settings.php:
|
1102 |
msgid ""
|
1103 |
"Enable to show likes counter for each social button (not available for "
|
1104 |
"Google +1)."
|
@@ -1106,11 +1131,11 @@ msgstr ""
|
|
1106 |
"Увімкніть, щоб показати лічильник для кожної соціальної кнопки (недоступно "
|
1107 |
"для Google+1)."
|
1108 |
|
1109 |
-
#: includes/class-gllr-settings.php:
|
1110 |
msgid "Demo Data"
|
1111 |
msgstr "Демо-дані"
|
1112 |
|
1113 |
-
#: includes/class-gllr-settings.php:
|
1114 |
msgid ""
|
1115 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1116 |
"page with a list of all galleries."
|
@@ -1118,11 +1143,11 @@ msgstr ""
|
|
1118 |
"Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
|
1119 |
"шорткодами і сторінку зі списком усіх галерей."
|
1120 |
|
1121 |
-
#: includes/class-gllr-settings.php:
|
1122 |
msgid "Gallery Post Type"
|
1123 |
msgstr "Тип запису галереї"
|
1124 |
|
1125 |
-
#: includes/class-gllr-settings.php:
|
1126 |
msgid ""
|
1127 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1128 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1134,27 +1159,23 @@ msgstr ""
|
|
1134 |
"перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
|
1135 |
"запису \"gallery\"."
|
1136 |
|
1137 |
-
#: includes/class-gllr-settings.php:
|
1138 |
msgid "Gallery Slug"
|
1139 |
msgstr "Слаґ галереї"
|
1140 |
|
1141 |
-
#: includes/class-gllr-settings.php:
|
1142 |
msgid "Enter the unique gallery slug."
|
1143 |
msgstr "Введіть унікальний слаґ галереї."
|
1144 |
|
1145 |
-
#: includes/class-gllr-settings.php:
|
1146 |
msgid "Activate Now"
|
1147 |
msgstr "Активувати зараз"
|
1148 |
|
1149 |
-
#: includes/class-gllr-settings.php:
|
1150 |
-
msgid "Install Now"
|
1151 |
-
msgstr "Встановити зараз"
|
1152 |
-
|
1153 |
-
#: includes/class-gllr-settings.php:972
|
1154 |
msgid "Enable to include galleries to your website search."
|
1155 |
msgstr "Включити галерею в пошук на вашому сайті."
|
1156 |
|
1157 |
-
#: includes/class-gllr-settings.php:
|
1158 |
#, php-format
|
1159 |
msgid "%s is required."
|
1160 |
msgstr "Потребується %s."
|
@@ -1248,13 +1269,11 @@ msgstr ""
|
|
1248 |
msgid "Yes, install demo now"
|
1249 |
msgstr "Так, встановити демо-дані зараз"
|
1250 |
|
1251 |
-
|
1252 |
-
|
1253 |
-
msgstr "Завантажити зображення у високій роздільності"
|
1254 |
|
1255 |
-
|
1256 |
-
|
1257 |
-
msgstr "Зображення"
|
1258 |
|
1259 |
#~ msgid "or"
|
1260 |
#~ msgstr "або"
|
@@ -1363,9 +1382,6 @@ msgstr "Зображення"
|
|
1363 |
#~ msgid "Learn more"
|
1364 |
#~ msgstr "Дізнатись більше"
|
1365 |
|
1366 |
-
#~ msgid "Activate"
|
1367 |
-
#~ msgstr "Активувати"
|
1368 |
-
|
1369 |
#~ msgid "Add multiple gallery categories"
|
1370 |
#~ msgstr "Додати декілька категорій галереї"
|
1371 |
|
@@ -1712,9 +1728,6 @@ msgstr "Зображення"
|
|
1712 |
#~ msgid "Full URL to custom page"
|
1713 |
#~ msgstr "Повне посилання на сторінку користувача"
|
1714 |
|
1715 |
-
#~ msgid "Add gallery to the search"
|
1716 |
-
#~ msgstr "Додати галерею до пошуку"
|
1717 |
-
|
1718 |
#~ msgid "Using"
|
1719 |
#~ msgstr "Використовуючи"
|
1720 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:53+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft <https://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "Налаштування Галерей"
|
22 |
|
23 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Загальні налаштування"
|
26 |
|
27 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Оновитися до Pro"
|
30 |
|
31 |
+
#: gallery-plugin.php:340
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Повернутись до всіх альбомів"
|
34 |
|
35 |
+
#: gallery-plugin.php:354
|
36 |
msgid "See images »"
|
37 |
msgstr "Переглянути фото »"
|
38 |
|
39 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереї"
|
42 |
|
43 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:444
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Додати нову галерею"
|
50 |
|
51 |
+
#: gallery-plugin.php:445
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редагувати галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:446
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Нова галерея"
|
58 |
|
59 |
+
#: gallery-plugin.php:447
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Переглянути галерею"
|
62 |
|
63 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Шукати галереї"
|
66 |
|
67 |
+
#: gallery-plugin.php:449
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Жодної галереї не знайдено"
|
70 |
|
71 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
72 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
73 |
+
#: gallery-plugin.php:3332
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категорії галерей"
|
76 |
|
77 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категорія галерей"
|
80 |
|
81 |
+
#: gallery-plugin.php:473
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Додати категорію галерей"
|
84 |
|
85 |
+
#: gallery-plugin.php:474
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Додати нову категорію галерей"
|
88 |
|
89 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редагувати категорію галерей"
|
92 |
|
93 |
+
#: gallery-plugin.php:477
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Нова категорія галерей"
|
96 |
|
97 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Переглянути категорію галерей"
|
100 |
|
101 |
+
#: gallery-plugin.php:480
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Знайти категорію галерей"
|
104 |
|
105 |
+
#: gallery-plugin.php:481
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Не знайдено жодної категорії галерей"
|
108 |
|
109 |
+
#: gallery-plugin.php:482
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "В кошику не знайдено жодної категорії галерей"
|
112 |
|
113 |
+
#: gallery-plugin.php:483
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Батьківська категорія галерей"
|
116 |
|
117 |
+
#: gallery-plugin.php:484
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навігація списку категорій галерей"
|
120 |
|
121 |
+
#: gallery-plugin.php:485
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорій галерей"
|
124 |
|
125 |
+
#: gallery-plugin.php:533
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереї"
|
128 |
|
129 |
+
#: gallery-plugin.php:542
|
130 |
msgid ""
|
131 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
132 |
"widgets by using the following shortcode:"
|
134 |
"Додайте одну галерею із зображеннями в ваші записи, сторінки, користувацьки "
|
135 |
"типи записів або віджети за допомогою наступного шорткода:"
|
136 |
|
137 |
+
#: gallery-plugin.php:546
|
138 |
msgid ""
|
139 |
"Add a gallery cover including featured image, description, and a link to "
|
140 |
"your single gallery using the following shortcode:"
|
142 |
"Додайте альбом галереї, включаючи головне зображення, опис і посилання на "
|
143 |
"повну галерею за допомогою наступного шорткода:"
|
144 |
|
145 |
+
#: gallery-plugin.php:659
|
146 |
msgid "Note"
|
147 |
msgstr "Примітка"
|
148 |
|
149 |
+
#: gallery-plugin.php:659
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"When deleting a category, the galleries that belong to this category will "
|
155 |
"Видалення категорії не призведе до видалення галерей з цієї категорії. "
|
156 |
"Замість цього галереї з видаленої категорії будуть переміщені в категорію %s."
|
157 |
|
158 |
+
#: gallery-plugin.php:670
|
159 |
msgid "Sort Galleries in Category by"
|
160 |
msgstr "Сортувати галереї в категорії по"
|
161 |
|
162 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
163 |
+
#: includes/class-gllr-settings.php:711
|
164 |
msgid "Gallery ID"
|
165 |
msgstr "ID галереї"
|
166 |
|
167 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
168 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
169 |
+
#: includes/class-gllr-settings.php:712
|
170 |
msgid "Title"
|
171 |
msgstr "Назва"
|
172 |
|
173 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
174 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
175 |
msgid "Date"
|
176 |
msgstr "Дата"
|
177 |
|
178 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
179 |
+
#: includes/class-gllr-settings.php:714
|
180 |
msgid "Last modified date"
|
181 |
msgstr "Дата останньої зміни"
|
182 |
|
183 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
184 |
+
#: includes/class-gllr-settings.php:715
|
185 |
msgid "Comment count"
|
186 |
msgstr "Кількість коментарів"
|
187 |
|
188 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
189 |
+
#: includes/class-gllr-settings.php:716
|
190 |
msgid "\"Order\" field on the gallery edit page"
|
191 |
msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
|
192 |
|
193 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
194 |
+
#: includes/class-gllr-settings.php:717
|
195 |
msgid "Author"
|
196 |
msgstr "Автор"
|
197 |
|
198 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
199 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
200 |
msgid "Random"
|
201 |
msgstr "Довільно"
|
202 |
|
203 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
204 |
msgid "Plugin Settings"
|
205 |
msgstr "Налаштування плагіна"
|
206 |
|
207 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
208 |
msgid "Select galleries sorting order in your category."
|
209 |
msgstr "Виберіть порядок сортування галерей у вашій категорії."
|
210 |
|
211 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
+
#: gallery-plugin.php:749
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Усі категорії галерей"
|
218 |
|
219 |
+
#: gallery-plugin.php:827
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Ви не можете видалити стандартну категорію галереї."
|
222 |
|
223 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
|
|
224 |
msgid "Sorry, nothing found."
|
225 |
msgstr "Вибачте, нічого не знайдено."
|
226 |
|
227 |
+
#: gallery-plugin.php:1717
|
228 |
msgid "Featured Image"
|
229 |
msgstr "Зображення альбому"
|
230 |
|
231 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
232 |
msgid "Images"
|
233 |
msgstr "Зображення"
|
234 |
|
235 |
+
#: gallery-plugin.php:1810
|
236 |
#, php-format
|
237 |
msgid "%s Settings"
|
238 |
msgstr "Налаштування %s"
|
239 |
|
240 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
241 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
242 |
msgid "Settings"
|
243 |
msgstr "Налаштування"
|
244 |
|
245 |
+
#: gallery-plugin.php:1838
|
246 |
msgid "FAQ"
|
247 |
msgstr "FAQ"
|
248 |
|
249 |
+
#: gallery-plugin.php:1839
|
250 |
msgid "Support"
|
251 |
msgstr "Техпідтримка"
|
252 |
|
253 |
+
#: gallery-plugin.php:1878
|
254 |
msgid "Updating images..."
|
255 |
msgstr "Оновлення зображень..."
|
256 |
|
257 |
+
#: gallery-plugin.php:1879
|
258 |
msgid "No images found."
|
259 |
msgstr "Зображення не знайдені."
|
260 |
|
261 |
+
#: gallery-plugin.php:1880
|
262 |
msgid "All images were updated."
|
263 |
msgstr "Усі зображення оновлено."
|
264 |
|
265 |
+
#: gallery-plugin.php:1881
|
266 |
msgid "Error."
|
267 |
msgstr "Помилка."
|
268 |
|
269 |
+
#: gallery-plugin.php:1893
|
270 |
msgid ""
|
271 |
"You are about to remove these items from this gallery.\n"
|
272 |
" 'Cancel' to stop, 'OK' to delete."
|
274 |
"Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
|
275 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
276 |
|
277 |
+
#: gallery-plugin.php:1894
|
278 |
msgid ""
|
279 |
"You are about to remove this image from the gallery.\n"
|
280 |
" 'Cancel' to stop, 'OK' to delete."
|
282 |
"Ви збираєтеся видалити це зображення з галереї.\n"
|
283 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
284 |
|
285 |
+
#: gallery-plugin.php:1895
|
286 |
msgid ""
|
287 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
288 |
"switching?"
|
290 |
"При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
|
291 |
"їх перед переходом?"
|
292 |
|
293 |
+
#: gallery-plugin.php:1896
|
294 |
msgid "Insert Media"
|
295 |
msgstr "Додати медіафайл"
|
296 |
|
297 |
+
#: gallery-plugin.php:1897
|
298 |
msgid "Insert"
|
299 |
msgstr "Додати"
|
300 |
|
301 |
+
#: gallery-plugin.php:1898
|
302 |
+
msgid "Gallery has been successfully added!"
|
303 |
+
msgstr "Галерея була успішно додана!"
|
304 |
+
|
305 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
306 |
msgid "Image size not defined"
|
307 |
msgstr "Неможливо визначити розмір зображення"
|
308 |
|
309 |
+
#: gallery-plugin.php:2455
|
310 |
msgid ""
|
311 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
312 |
"reload images manually."
|
314 |
"Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
|
315 |
"Для інших типів, будь ласка, перезавантажте зображення вручну."
|
316 |
|
317 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
318 |
msgid "Invalid path"
|
319 |
msgstr "Невірний шлях до зображення"
|
320 |
|
321 |
+
#: gallery-plugin.php:2607
|
322 |
msgid "List View"
|
323 |
msgstr "У вигляді списку"
|
324 |
|
325 |
+
#: gallery-plugin.php:2608
|
326 |
msgid "Grid View"
|
327 |
msgstr "У вигляді сітки"
|
328 |
|
329 |
+
#: gallery-plugin.php:2665
|
330 |
msgid "Filter"
|
331 |
msgstr "Фільтр"
|
332 |
|
333 |
+
#: gallery-plugin.php:2669
|
334 |
msgid "Empty Trash"
|
335 |
msgstr "Очистити кошик"
|
336 |
|
337 |
+
#: gallery-plugin.php:2692
|
338 |
msgid "No images found"
|
339 |
msgstr "Жодного зображення не знайдено"
|
340 |
|
341 |
+
#: gallery-plugin.php:2745
|
342 |
msgid "Select bulk action"
|
343 |
msgstr "Вибрати групову дію"
|
344 |
|
345 |
+
#: gallery-plugin.php:2747
|
346 |
msgid "Bulk Actions"
|
347 |
msgstr "Групові дії"
|
348 |
|
349 |
+
#: gallery-plugin.php:2757
|
350 |
msgid "Apply"
|
351 |
msgstr "Застосувати"
|
352 |
|
353 |
+
#: gallery-plugin.php:2764
|
354 |
msgid "Delete from Gallery"
|
355 |
msgstr "Видалити з галереї"
|
356 |
|
357 |
+
#: gallery-plugin.php:2773
|
358 |
msgid "Bulk Select"
|
359 |
msgstr "Вибір"
|
360 |
|
361 |
+
#: gallery-plugin.php:2774
|
362 |
msgid "Cancel Selection"
|
363 |
msgstr "Скасувати вибір"
|
364 |
|
365 |
+
#: gallery-plugin.php:2775
|
366 |
msgid "Delete Selected"
|
367 |
msgstr "Видалити вибране"
|
368 |
|
369 |
+
#: gallery-plugin.php:2786
|
370 |
msgid "File"
|
371 |
msgstr "Файл"
|
372 |
|
373 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
374 |
msgid "Dimensions"
|
375 |
msgstr "Розміри"
|
376 |
|
377 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
378 |
msgid "Alt Text"
|
379 |
msgstr "Альтернативний текст"
|
380 |
|
381 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
382 |
msgid "URL"
|
383 |
msgstr "Посилання"
|
384 |
|
385 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
386 |
msgid ""
|
387 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
388 |
"to open a full size image."
|
390 |
"Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
|
391 |
"файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
|
392 |
|
393 |
+
#: gallery-plugin.php:2872
|
394 |
msgid "Remove Image from Gallery"
|
395 |
msgstr "Видалити зображення з галереї"
|
396 |
|
397 |
+
#: gallery-plugin.php:2875
|
398 |
msgid "Edit Image Info"
|
399 |
msgstr "Редагувати інформацію зображення"
|
400 |
|
401 |
+
#: gallery-plugin.php:2876
|
402 |
msgid "Deselect"
|
403 |
msgstr "Скасувати вибір"
|
404 |
|
405 |
+
#: gallery-plugin.php:2888
|
406 |
msgid "File name"
|
407 |
msgstr "Назва файлу"
|
408 |
|
409 |
+
#: gallery-plugin.php:2889
|
410 |
msgid "File type"
|
411 |
msgstr "Тип файлу"
|
412 |
|
413 |
+
#: gallery-plugin.php:2914
|
414 |
msgid "Description"
|
415 |
msgstr "Опис"
|
416 |
|
417 |
+
#: gallery-plugin.php:2920
|
418 |
msgid "Lightbox Button URL"
|
419 |
msgstr "Посилання для кнопки в лайтбоксі"
|
420 |
|
421 |
+
#: gallery-plugin.php:2927
|
422 |
msgid "New Tab"
|
423 |
msgstr "Нова вкладка"
|
424 |
|
425 |
+
#: gallery-plugin.php:2929
|
426 |
msgid "Enable to open URLs above in a new tab."
|
427 |
msgstr "Увімкніть, щоб відкрити вказаний вище URL в новій вкладці."
|
428 |
|
429 |
+
#: gallery-plugin.php:2934
|
430 |
msgid "Go Pro"
|
431 |
msgstr "Оновитися до Pro"
|
432 |
|
433 |
+
#: gallery-plugin.php:2940
|
434 |
msgid "Edit more details"
|
435 |
msgstr "Змінити деталі"
|
436 |
|
437 |
+
#: gallery-plugin.php:2942
|
438 |
msgid "Remove from Gallery"
|
439 |
msgstr "Видалити з галереї"
|
440 |
|
441 |
+
#: gallery-plugin.php:2978
|
442 |
#, php-format
|
443 |
msgid "Select %s"
|
444 |
msgstr "Вибрати %s"
|
445 |
|
446 |
+
#: gallery-plugin.php:2991
|
447 |
#, php-format
|
448 |
msgid "Edit “%s”"
|
449 |
msgstr "Редагувати “%s”"
|
450 |
|
451 |
+
#: gallery-plugin.php:2999
|
452 |
msgid "Edit Attachment Info"
|
453 |
msgstr "Змінити інформацію зображення"
|
454 |
|
455 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
456 |
msgid "Edit"
|
457 |
msgstr "Змінити"
|
458 |
|
459 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
460 |
msgid "Trash"
|
461 |
msgstr "Кошик"
|
462 |
|
463 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
464 |
msgid "Delete Permanently"
|
465 |
msgstr "Видалити назавжди"
|
466 |
|
467 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
468 |
#, php-format
|
469 |
msgid "View “%s”"
|
470 |
msgstr "Перегляд “%s”"
|
471 |
|
472 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
473 |
msgid "View"
|
474 |
msgstr "Перегляд"
|
475 |
|
476 |
+
#: gallery-plugin.php:3048
|
477 |
msgid "Attach"
|
478 |
msgstr "Прикріпити"
|
479 |
|
480 |
+
#: gallery-plugin.php:3056
|
481 |
msgid "Restore"
|
482 |
msgstr "Відновити"
|
483 |
|
484 |
+
#: gallery-plugin.php:3086
|
485 |
msgid "A list or dropdown of Gallery categories."
|
486 |
msgstr "Список чи випадаюче меню категорій галерей."
|
487 |
|
488 |
+
#: gallery-plugin.php:3131
|
489 |
msgid "Select Gallery Category"
|
490 |
msgstr "Оберіть категорію галерей"
|
491 |
|
492 |
+
#: gallery-plugin.php:3189
|
493 |
msgid "Title:"
|
494 |
msgstr "Заголовок:"
|
495 |
|
496 |
+
#: gallery-plugin.php:3192
|
497 |
msgid "Display as dropdown"
|
498 |
msgstr "У вигляді випадаючого меню"
|
499 |
|
500 |
+
#: gallery-plugin.php:3194
|
501 |
msgid "Show gallery counts"
|
502 |
msgstr "Показати кількість галерей"
|
503 |
|
504 |
+
#: gallery-plugin.php:3196
|
505 |
msgid "Show hierarchy"
|
506 |
msgstr "Показати ієрархію"
|
507 |
|
508 |
+
#: gallery-plugin.php:3312
|
509 |
msgid "Warning"
|
510 |
msgstr "Увага"
|
511 |
|
512 |
+
#: gallery-plugin.php:3312
|
513 |
msgid "You can add only images to the gallery"
|
514 |
msgstr "В галерею можна додати лише зображення"
|
515 |
|
516 |
+
#: gallery-plugin.php:3367
|
517 |
msgid "no title"
|
518 |
msgstr "без назви"
|
519 |
|
520 |
+
#: gallery-plugin.php:3377
|
521 |
msgid ""
|
522 |
"Display an album image with the description and the link to a single gallery "
|
523 |
"page"
|
525 |
"Відобразити зображення альбому з описом і посиланням на окрему сторінку "
|
526 |
"галереї"
|
527 |
|
528 |
+
#: gallery-plugin.php:3381
|
529 |
msgid "Sorry, no gallery found."
|
530 |
msgstr "Вибачте, жодної галереї не знайдено."
|
531 |
|
557 |
msgid "License Key"
|
558 |
msgstr "Ліцензійний ключ"
|
559 |
|
560 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
msgid "Settings saved"
|
562 |
msgstr "Налаштування збережено"
|
563 |
|
564 |
+
#: includes/class-gllr-settings.php:256
|
565 |
msgid "Please, enable JavaScript in Your browser."
|
566 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
567 |
|
568 |
+
#: includes/class-gllr-settings.php:260
|
569 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
570 |
+
msgstr ""
|
571 |
+
"Користувацький розмір зображення був змінений. Вам необхідно оновити "
|
572 |
+
"зображення галерей."
|
573 |
+
|
574 |
+
#: includes/class-gllr-settings.php:261
|
575 |
msgid "Update Images"
|
576 |
msgstr "Оновити зображення"
|
577 |
|
578 |
+
#: includes/class-gllr-settings.php:276
|
579 |
msgid "Gallery Images"
|
580 |
msgstr "Зображення галереї"
|
581 |
|
582 |
+
#: includes/class-gllr-settings.php:281
|
583 |
msgid "Images adding requires JavaScript."
|
584 |
msgstr "Додавання зображень вимагає використання JavaScript."
|
585 |
|
586 |
+
#: includes/class-gllr-settings.php:284
|
587 |
msgid "Add Media"
|
588 |
msgstr "Додати медіафайл"
|
589 |
|
590 |
+
#: includes/class-gllr-settings.php:293
|
591 |
msgid "The grid view for the Gallery images requires JavaScript."
|
592 |
msgstr "Перегляд зображень у вигляді сітки вимагає використання JavaScript."
|
593 |
|
594 |
+
#: includes/class-gllr-settings.php:293
|
595 |
msgid "Switch to the list view"
|
596 |
msgstr "Переключитися на список"
|
597 |
|
598 |
+
#: includes/class-gllr-settings.php:320
|
599 |
+
msgid "Add Gallery to the Slider"
|
600 |
+
msgstr "Додати галерею в слайдер"
|
601 |
+
|
602 |
+
#: includes/class-gllr-settings.php:332
|
603 |
+
msgid "Activate"
|
604 |
+
msgstr "Активувати"
|
605 |
+
|
606 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
607 |
+
msgid "Install Now"
|
608 |
+
msgstr "Встановити зараз"
|
609 |
+
|
610 |
+
#: includes/class-gllr-settings.php:337
|
611 |
+
msgid "Add"
|
612 |
+
msgstr "Додати"
|
613 |
+
|
614 |
+
#: includes/class-gllr-settings.php:340
|
615 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
616 |
+
msgstr ""
|
617 |
+
"Натисніть, щоб додати поточну галерею в слайдер. Для цієї опції необхідно "
|
618 |
+
"використання плагіна Slider."
|
619 |
+
|
620 |
+
#: includes/class-gllr-settings.php:351
|
621 |
msgid "Single Gallery Settings"
|
622 |
msgstr "Налаштування галереї"
|
623 |
|
624 |
+
#: includes/class-gllr-settings.php:353
|
625 |
#, php-format
|
626 |
msgid "Enable to configure single gallery settings and disable %s."
|
627 |
msgstr "Увімкніть щоб налаштувати цю галерею і відключити %s."
|
628 |
|
629 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
630 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
631 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
632 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
633 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
634 |
msgid "Close"
|
635 |
msgstr "Закрити"
|
636 |
|
637 |
+
#: includes/class-gllr-settings.php:369
|
638 |
msgid "Gallery Layout"
|
639 |
msgstr "Макет галереї"
|
640 |
|
641 |
+
#: includes/class-gllr-settings.php:374
|
642 |
msgid "Grid"
|
643 |
msgstr "Сітка"
|
644 |
|
645 |
+
#: includes/class-gllr-settings.php:380
|
646 |
msgid "Masonry"
|
647 |
msgstr "Masonry"
|
648 |
|
649 |
+
#: includes/class-gllr-settings.php:393
|
650 |
msgid "Number of Columns"
|
651 |
msgstr "Кількість колонок"
|
652 |
|
653 |
+
#: includes/class-gllr-settings.php:396
|
654 |
#, php-format
|
655 |
msgid "Number of gallery columns (default is %s)."
|
656 |
msgstr "Кількість колонок галерей (за замовчуванням - %s)."
|
657 |
|
658 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
659 |
msgid "Image Size"
|
660 |
msgstr "Розмір зображення"
|
661 |
|
662 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
663 |
msgid "Custom"
|
664 |
msgstr "Користувацький"
|
665 |
|
666 |
+
#: includes/class-gllr-settings.php:408
|
667 |
msgid ""
|
668 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
669 |
msgstr ""
|
670 |
"Максимальний розмір зображень галереї. Користувацький використовує значення, "
|
671 |
"зазначені в полі Розміри зображення."
|
672 |
|
673 |
+
#: includes/class-gllr-settings.php:412
|
674 |
msgid "Custom Image Size"
|
675 |
msgstr "Користувацький розмір зображення"
|
676 |
|
677 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
678 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
679 |
msgid "px"
|
680 |
msgstr "пікс"
|
681 |
|
682 |
+
#: includes/class-gllr-settings.php:415
|
683 |
msgid ""
|
684 |
"Adjust these values based on the number of columns in your gallery. This "
|
685 |
"won't effect the full size of your images in the lightbox."
|
687 |
"Відрегулюйте ці значення з урахуванням числа колонок у вашій галереї. Це не "
|
688 |
"впливає на розміри повного зображення в лайтбоксі."
|
689 |
|
690 |
+
#: includes/class-gllr-settings.php:426
|
691 |
msgid "Crop Images"
|
692 |
msgstr "Обрізка зображень"
|
693 |
|
694 |
+
#: includes/class-gllr-settings.php:428
|
695 |
msgid ""
|
696 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
697 |
"to resize images automatically using their aspect ratio."
|
700 |
"користувацького розміру зображення. Вимкніть, щоб змінити розмір зображення "
|
701 |
"автоматично, використовуючи їх пропорції."
|
702 |
|
703 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
704 |
msgid "Crop Position"
|
705 |
msgstr "Позиція обрізки"
|
706 |
|
707 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
708 |
msgid "Select crop position base (by default: center)."
|
709 |
msgstr "Оберіть позицію обрізки (за замовчуванням: центр)."
|
710 |
|
711 |
+
#: includes/class-gllr-settings.php:457
|
712 |
msgid "Image Title"
|
713 |
msgstr "Назва зображення"
|
714 |
|
715 |
+
#: includes/class-gllr-settings.php:459
|
716 |
msgid "Enable to display image title along with the gallery image."
|
717 |
msgstr ""
|
718 |
"Увімкніть, щоб відобразити назву зображення разом із зображенням галереї."
|
719 |
|
720 |
+
#: includes/class-gllr-settings.php:470
|
721 |
msgid "Image Title Position"
|
722 |
msgstr "Розташування назви зображення"
|
723 |
|
724 |
+
#: includes/class-gllr-settings.php:475
|
725 |
msgid "Under image"
|
726 |
msgstr "Під зображенням"
|
727 |
|
728 |
+
#: includes/class-gllr-settings.php:481
|
729 |
msgid "On mouse hover"
|
730 |
msgstr "По наведенню миші"
|
731 |
|
732 |
+
#: includes/class-gllr-settings.php:494
|
733 |
msgid "Image Border"
|
734 |
msgstr "Рамка зображення"
|
735 |
|
736 |
+
#: includes/class-gllr-settings.php:496
|
737 |
msgid ""
|
738 |
"Enable images border using the styles defined for Image Border Size and "
|
739 |
"Color options."
|
741 |
"Увімкнути рамку зображення з використанням стилів, зазначених для Кольору і "
|
742 |
"Розміру рамки."
|
743 |
|
744 |
+
#: includes/class-gllr-settings.php:500
|
745 |
msgid "Image Border Size"
|
746 |
msgstr "Розмір рамки зображення"
|
747 |
|
748 |
+
#: includes/class-gllr-settings.php:503
|
749 |
#, php-format
|
750 |
msgid "Gallery image border width (default is %s)"
|
751 |
msgstr "Ширина рамки для зображень галереї (за замовчуванням %s)"
|
752 |
|
753 |
+
#: includes/class-gllr-settings.php:507
|
754 |
msgid "Image Border Color"
|
755 |
msgstr "Колір рамки зображень"
|
756 |
|
757 |
+
#: includes/class-gllr-settings.php:520
|
758 |
msgid "Pagination"
|
759 |
msgstr "Посторінкова навігація"
|
760 |
|
761 |
+
#: includes/class-gllr-settings.php:523
|
762 |
msgid ""
|
763 |
"Enable pagination for images to limit number of images displayed on a single "
|
764 |
"gallery page."
|
766 |
"Включити посторінкову навігацію для зображень, щоб обмежити кількість "
|
767 |
"зображень, що відображаються на одній сторінці галереї."
|
768 |
|
769 |
+
#: includes/class-gllr-settings.php:527
|
770 |
msgid "Number of Images"
|
771 |
msgstr "Кількість зображень"
|
772 |
|
773 |
+
#: includes/class-gllr-settings.php:530
|
774 |
#, php-format
|
775 |
msgid "Number of images displayed per page (default is %d)."
|
776 |
msgstr ""
|
777 |
"Кількість зображень, що відображаються на одній сторінці (за замовчуванням "
|
778 |
"%d)."
|
779 |
|
780 |
+
#: includes/class-gllr-settings.php:540
|
781 |
msgid "Sort Images by"
|
782 |
msgstr "Сортувати зображення за"
|
783 |
|
784 |
+
#: includes/class-gllr-settings.php:543
|
785 |
msgid "Manually (default)"
|
786 |
msgstr "Вручну (за замовчуванням)"
|
787 |
|
788 |
+
#: includes/class-gllr-settings.php:544
|
789 |
msgid "Image ID"
|
790 |
msgstr "ID зображення"
|
791 |
|
792 |
+
#: includes/class-gllr-settings.php:545
|
793 |
msgid "Name"
|
794 |
msgstr "Назва"
|
795 |
|
796 |
+
#: includes/class-gllr-settings.php:549
|
797 |
msgid ""
|
798 |
"Select images sorting order in your gallery. By default, you can sort images "
|
799 |
"manually in the images tab."
|
801 |
"Оберіть порядок сортування зображень у вашій галереї. За замовчуванням, це "
|
802 |
"ручне сортування зображення на вкладці зображень."
|
803 |
|
804 |
+
#: includes/class-gllr-settings.php:553
|
805 |
msgid "Arrange Images by"
|
806 |
msgstr "Сортувати зображення"
|
807 |
|
808 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
809 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
810 |
msgstr "За зростанням (наприклад, 1, 2, 3; а, б, в)"
|
811 |
|
812 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
813 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
814 |
msgstr "За зменшенням (наприклад, 3, 2, 1; в, б, а)"
|
815 |
|
816 |
+
#: includes/class-gllr-settings.php:562
|
817 |
msgid "Back Link"
|
818 |
msgstr "Зворотнє посилання"
|
819 |
|
820 |
+
#: includes/class-gllr-settings.php:564
|
821 |
msgid ""
|
822 |
"Enable to show a back link in a single gallery page which navigate to a "
|
823 |
"previous page."
|
825 |
"Включити, щоб показати зворотнє посилання на сторінці галереї, яке перейде "
|
826 |
"до попередньої сторінки."
|
827 |
|
828 |
+
#: includes/class-gllr-settings.php:568
|
829 |
msgid "Back Link URL"
|
830 |
msgstr "URL зворотнього посилання"
|
831 |
|
832 |
+
#: includes/class-gllr-settings.php:571
|
833 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
834 |
msgstr ""
|
835 |
"Користувацький URL для зворотнього посилання. Залиште порожнім, щоб "
|
836 |
"використовувати сторінку галерей."
|
837 |
|
838 |
+
#: includes/class-gllr-settings.php:575
|
839 |
msgid "Back Link Label"
|
840 |
msgstr "Текст зворотнього посилання"
|
841 |
|
842 |
+
#: includes/class-gllr-settings.php:581
|
843 |
msgid "Back Link with Shortcode"
|
844 |
msgstr "Зворотнє посилання у шорткоді"
|
845 |
|
846 |
+
#: includes/class-gllr-settings.php:584
|
847 |
msgid "Enable to display a back link on a page where shortcode is used."
|
848 |
msgstr ""
|
849 |
"Увімкніть, щоб відображати зворотнє посилання на сторінку при використанні "
|
850 |
"шорткода."
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:595
|
853 |
msgid "Cover Settings"
|
854 |
msgstr "Налаштування альбому"
|
855 |
|
856 |
+
#: includes/class-gllr-settings.php:600
|
857 |
msgid "Galleries Page"
|
858 |
msgstr "Сторінка галерей"
|
859 |
|
860 |
+
#: includes/class-gllr-settings.php:608
|
861 |
msgid "Base page where all existing galleries will be displayed."
|
862 |
msgstr "Базова сторінка, на якій будуть відображатися всі існуючі галереї."
|
863 |
|
864 |
+
#: includes/class-gllr-settings.php:612
|
865 |
msgid "Albums Displaying"
|
866 |
msgstr "Відображення альбомів"
|
867 |
|
868 |
+
#: includes/class-gllr-settings.php:615
|
869 |
msgid "Column"
|
870 |
msgstr "У колонку"
|
871 |
|
872 |
+
#: includes/class-gllr-settings.php:616
|
873 |
msgid "Rows"
|
874 |
msgstr "У ряд"
|
875 |
|
876 |
+
#: includes/class-gllr-settings.php:618
|
877 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
878 |
msgstr "Оберіть, як галереї відображатимуться на сторінці Галерей."
|
879 |
|
880 |
+
#: includes/class-gllr-settings.php:622
|
881 |
msgid "Column Alignment"
|
882 |
msgstr "Вирівнювання колонки"
|
883 |
|
884 |
+
#: includes/class-gllr-settings.php:625
|
885 |
msgid "Left"
|
886 |
msgstr "Ліво"
|
887 |
|
888 |
+
#: includes/class-gllr-settings.php:626
|
889 |
msgid "Right"
|
890 |
msgstr "Право"
|
891 |
|
892 |
+
#: includes/class-gllr-settings.php:627
|
893 |
msgid "Center"
|
894 |
msgstr "Центр"
|
895 |
|
896 |
+
#: includes/class-gllr-settings.php:629
|
897 |
msgid "Select the column alignment."
|
898 |
msgstr "Оберіть вирівнювання колонки."
|
899 |
|
900 |
+
#: includes/class-gllr-settings.php:633
|
901 |
msgid "Cover Image Size"
|
902 |
msgstr "Розмір зображення альбому"
|
903 |
|
904 |
+
#: includes/class-gllr-settings.php:641
|
905 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
906 |
msgstr ""
|
907 |
"Максимальний розмір зображення альбому. Користувацький використовує значення "
|
908 |
"Розмірів зображення."
|
909 |
|
910 |
+
#: includes/class-gllr-settings.php:645
|
911 |
msgid "Custom Cover Image Size"
|
912 |
msgstr "Користувацький розмір зображення альбому"
|
913 |
|
914 |
+
#: includes/class-gllr-settings.php:658
|
915 |
msgid "Crop Cover Images"
|
916 |
msgstr "Обрізка зображення альбому"
|
917 |
|
918 |
+
#: includes/class-gllr-settings.php:660
|
919 |
msgid ""
|
920 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
921 |
"Disable to resize images automatically using their aspect ratio."
|
924 |
"користувацького розміру зображення альбому. Вимкніть, щоб змінити розмір "
|
925 |
"зображення автоматично, використовуючи їх пропорції."
|
926 |
|
927 |
+
#: includes/class-gllr-settings.php:689
|
928 |
msgid "Cover Image Border"
|
929 |
msgstr "Рамка для зображення альбому"
|
930 |
|
931 |
+
#: includes/class-gllr-settings.php:691
|
932 |
msgid ""
|
933 |
"Enable cover images border using the styles defined for Image Border Size "
|
934 |
"and Color."
|
936 |
"Увімкнути рамку зображення альбому з використанням стилів, зазначених для "
|
937 |
"Кольору і Розміру рамки."
|
938 |
|
939 |
+
#: includes/class-gllr-settings.php:695
|
940 |
msgid "Cover Image Border Size"
|
941 |
msgstr "Розмір рамки зображення альбому"
|
942 |
|
943 |
+
#: includes/class-gllr-settings.php:698
|
944 |
#, php-format
|
945 |
msgid "Cover image border width (default is %s)"
|
946 |
msgstr "Ширина рамки для зображення альбому (за замовчуванням %s)"
|
947 |
|
948 |
+
#: includes/class-gllr-settings.php:702
|
949 |
msgid "Cover Image Border Color"
|
950 |
msgstr "Колір рамки зображення альбому"
|
951 |
|
952 |
+
#: includes/class-gllr-settings.php:708
|
953 |
msgid "Sort Albums by"
|
954 |
msgstr "Сортувати альбоми за"
|
955 |
|
956 |
+
#: includes/class-gllr-settings.php:720
|
957 |
msgid "Select galleries sorting order in your galleries page."
|
958 |
msgstr "Оберіть порядок сортування галерей на сторінці галерей."
|
959 |
|
960 |
+
#: includes/class-gllr-settings.php:724
|
961 |
msgid "Arrange Albums by"
|
962 |
msgstr "Сортування альбомів за"
|
963 |
|
964 |
+
#: includes/class-gllr-settings.php:733
|
965 |
msgid "Read More Link Label"
|
966 |
msgstr "Текст посилання Дізнатися більше"
|
967 |
|
968 |
+
#: includes/class-gllr-settings.php:746
|
969 |
msgid "Instant Lightbox"
|
970 |
msgstr "Миттєвий лайтбокс"
|
971 |
|
972 |
+
#: includes/class-gllr-settings.php:749
|
973 |
msgid ""
|
974 |
"Enable to display all images in the lightbox after clicking cover image or "
|
975 |
"URL instead of going to a single gallery page."
|
977 |
"Увімкніть, щоб відображати всі зображення в лайтбоксі після натискання на "
|
978 |
"зображення альбому або URL замість переходу на окрему сторінку галереї."
|
979 |
|
980 |
+
#: includes/class-gllr-settings.php:763
|
981 |
msgid "Lightbox Settings"
|
982 |
msgstr "Налаштування лайтбоксу"
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:768
|
985 |
msgid "Unclickable Thumbnail Images"
|
986 |
msgstr "Некликабельна картинка"
|
987 |
|
988 |
+
#: includes/class-gllr-settings.php:771
|
989 |
msgid ""
|
990 |
"Enable to make the images in a single gallery unclickable and hide their "
|
991 |
+
"URLs. This option also disables Lightbox."
|
992 |
msgstr ""
|
993 |
"Увімкніть, щоб зробити мініатюри зображень в галереї неклікабельнимі, а "
|
994 |
"також не відображати їх посилання. Ця опція також відключає лайтбокс."
|
995 |
|
996 |
+
#: includes/class-gllr-settings.php:775
|
997 |
msgid "Enable Lightbox"
|
998 |
msgstr "Увімкнути лайтбокс"
|
999 |
|
1000 |
+
#: includes/class-gllr-settings.php:778
|
1001 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1002 |
msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:796
|
1005 |
msgid ""
|
1006 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1007 |
"will display the original, full size image."
|
1009 |
"Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
|
1010 |
"замовчуванням буде відображатися оригінал, повний розмір."
|
1011 |
|
1012 |
+
#: includes/class-gllr-settings.php:800
|
1013 |
msgid "Overlay Color"
|
1014 |
msgstr "Колір підкладки"
|
1015 |
|
1016 |
+
#: includes/class-gllr-settings.php:806
|
1017 |
msgid "Overlay Opacity"
|
1018 |
msgstr "Прозорість підкладки"
|
1019 |
|
1020 |
+
#: includes/class-gllr-settings.php:809
|
1021 |
#, php-format
|
1022 |
msgid ""
|
1023 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1026 |
"Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
|
1027 |
"(за замовчуванням %s, максимум %s)."
|
1028 |
|
1029 |
+
#: includes/class-gllr-settings.php:819
|
1030 |
msgid "Slideshow"
|
1031 |
msgstr "Слайд-шоу"
|
1032 |
|
1033 |
+
#: includes/class-gllr-settings.php:821
|
1034 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1035 |
msgstr ""
|
1036 |
"Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
|
1037 |
|
1038 |
+
#: includes/class-gllr-settings.php:825
|
1039 |
msgid "Slideshow Duration"
|
1040 |
msgstr "Інтервал часу"
|
1041 |
|
1042 |
+
#: includes/class-gllr-settings.php:827
|
1043 |
msgid "ms"
|
1044 |
msgstr "мс"
|
1045 |
|
1046 |
+
#: includes/class-gllr-settings.php:828
|
1047 |
msgid "Slideshow interval duration between two images."
|
1048 |
msgstr "Інтервал перемикання між двома зображеннями."
|
1049 |
|
1050 |
+
#: includes/class-gllr-settings.php:839
|
1051 |
msgid "Lightbox Helpers"
|
1052 |
msgstr "Допоміжні елементи лайтбоксу"
|
1053 |
|
1054 |
+
#: includes/class-gllr-settings.php:841
|
1055 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1056 |
msgstr ""
|
1057 |
"Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
|
1058 |
|
1059 |
+
#: includes/class-gllr-settings.php:845
|
1060 |
msgid "Lightbox Thumbnails"
|
1061 |
msgstr "Мініатюри в лайтбоксі"
|
1062 |
|
1063 |
+
#: includes/class-gllr-settings.php:847
|
1064 |
msgid "Enable to use a lightbox helper navigation between images."
|
1065 |
msgstr ""
|
1066 |
"Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
|
1067 |
"зображеннями."
|
1068 |
|
1069 |
+
#: includes/class-gllr-settings.php:851
|
1070 |
msgid "Lightbox Thumbnails Position"
|
1071 |
msgstr "Розташування мініатюр в лайтбоксі"
|
1072 |
|
1073 |
+
#: includes/class-gllr-settings.php:854
|
1074 |
msgid "Top"
|
1075 |
msgstr "Верх"
|
1076 |
|
1077 |
+
#: includes/class-gllr-settings.php:859
|
1078 |
msgid "Lightbox Button Label"
|
1079 |
msgstr "Текст кнопки в лайтбоксі"
|
1080 |
|
1081 |
+
#: includes/class-gllr-settings.php:861
|
1082 |
msgid "Read More"
|
1083 |
msgstr "Дізнатися більше"
|
1084 |
|
1085 |
+
#: includes/class-gllr-settings.php:871
|
1086 |
msgid "Download Button"
|
1087 |
msgstr "Кнопка \"Завантажити\""
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:873
|
1090 |
msgid "Enable to display download button."
|
1091 |
msgstr ""
|
1092 |
"Увімкніть, щоб показати посилання на завантаження оригінального зображення."
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:877
|
1095 |
msgid "Single Lightbox"
|
1096 |
msgstr "Один лайтбокс"
|
1097 |
|
1098 |
+
#: includes/class-gllr-settings.php:879
|
1099 |
msgid ""
|
1100 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1101 |
"page."
|
1103 |
"Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
|
1104 |
"розташованих на одній сторінці."
|
1105 |
|
1106 |
+
#: includes/class-gllr-settings.php:889
|
1107 |
msgid "Social Sharing Buttons Settings"
|
1108 |
msgstr "Налаштування соціальних кнопок"
|
1109 |
|
1110 |
+
#: includes/class-gllr-settings.php:898
|
1111 |
msgid "Social Buttons"
|
1112 |
msgstr "Соціальні кнопки"
|
1113 |
|
1114 |
+
#: includes/class-gllr-settings.php:900
|
1115 |
msgid "Enable social sharing buttons in the lightbox."
|
1116 |
msgstr "Увімкніть соціальні кнопки в лайтбоксі."
|
1117 |
|
1118 |
+
#: includes/class-gllr-settings.php:904
|
1119 |
msgid "Social Networks"
|
1120 |
msgstr "Соціальні мережі"
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:915
|
1123 |
msgid "Counter"
|
1124 |
msgstr "Лічильник"
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:918
|
1127 |
msgid ""
|
1128 |
"Enable to show likes counter for each social button (not available for "
|
1129 |
"Google +1)."
|
1131 |
"Увімкніть, щоб показати лічильник для кожної соціальної кнопки (недоступно "
|
1132 |
"для Google+1)."
|
1133 |
|
1134 |
+
#: includes/class-gllr-settings.php:933
|
1135 |
msgid "Demo Data"
|
1136 |
msgstr "Демо-дані"
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:935
|
1139 |
msgid ""
|
1140 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1141 |
"page with a list of all galleries."
|
1143 |
"Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
|
1144 |
"шорткодами і сторінку зі списком усіх галерей."
|
1145 |
|
1146 |
+
#: includes/class-gllr-settings.php:973
|
1147 |
msgid "Gallery Post Type"
|
1148 |
msgstr "Тип запису галереї"
|
1149 |
|
1150 |
+
#: includes/class-gllr-settings.php:975
|
1151 |
msgid ""
|
1152 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1153 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1159 |
"перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
|
1160 |
"запису \"gallery\"."
|
1161 |
|
1162 |
+
#: includes/class-gllr-settings.php:987
|
1163 |
msgid "Gallery Slug"
|
1164 |
msgstr "Слаґ галереї"
|
1165 |
|
1166 |
+
#: includes/class-gllr-settings.php:991
|
1167 |
msgid "Enter the unique gallery slug."
|
1168 |
msgstr "Введіть унікальний слаґ галереї."
|
1169 |
|
1170 |
+
#: includes/class-gllr-settings.php:1007
|
1171 |
msgid "Activate Now"
|
1172 |
msgstr "Активувати зараз"
|
1173 |
|
1174 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
1175 |
msgid "Enable to include galleries to your website search."
|
1176 |
msgstr "Включити галерею в пошук на вашому сайті."
|
1177 |
|
1178 |
+
#: includes/class-gllr-settings.php:1025
|
1179 |
#, php-format
|
1180 |
msgid "%s is required."
|
1181 |
msgstr "Потребується %s."
|
1269 |
msgid "Yes, install demo now"
|
1270 |
msgstr "Так, встановити демо-дані зараз"
|
1271 |
|
1272 |
+
#~ msgid "Download high resolution image"
|
1273 |
+
#~ msgstr "Завантажити зображення у високій роздільності"
|
|
|
1274 |
|
1275 |
+
#~ msgid "Image"
|
1276 |
+
#~ msgstr "Зображення"
|
|
|
1277 |
|
1278 |
#~ msgid "or"
|
1279 |
#~ msgstr "або"
|
1382 |
#~ msgid "Learn more"
|
1383 |
#~ msgstr "Дізнатись більше"
|
1384 |
|
|
|
|
|
|
|
1385 |
#~ msgid "Add multiple gallery categories"
|
1386 |
#~ msgstr "Додати декілька категорій галереї"
|
1387 |
|
1728 |
#~ msgid "Full URL to custom page"
|
1729 |
#~ msgstr "Повне посилання на сторінку користувача"
|
1730 |
|
|
|
|
|
|
|
1731 |
#~ msgid "Using"
|
1732 |
#~ msgstr "Використовуючи"
|
1733 |
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -13,254 +13,301 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "画廊设置"
|
22 |
|
23 |
-
#: gallery-plugin.php:37 includes/class-gllr-settings.php:
|
24 |
#, fuzzy
|
25 |
msgid "Global Settings"
|
26 |
msgstr "画廊设置"
|
27 |
|
28 |
-
#: gallery-plugin.php:43 gallery-plugin.php:
|
29 |
msgid "Upgrade to Pro"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: gallery-plugin.php:
|
33 |
msgid "Return to all albums"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: gallery-plugin.php:
|
37 |
msgid "See images »"
|
38 |
msgstr "查看影像 »"
|
39 |
|
40 |
-
#: gallery-plugin.php:
|
41 |
msgid "Galleries"
|
42 |
msgstr "画廊"
|
43 |
|
44 |
-
#: gallery-plugin.php:
|
45 |
msgid "Gallery"
|
46 |
msgstr "画廊"
|
47 |
|
48 |
-
#: gallery-plugin.php:
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "新建画廊"
|
51 |
|
52 |
-
#: gallery-plugin.php:
|
53 |
msgid "Edit Gallery"
|
54 |
msgstr "编辑画廊"
|
55 |
|
56 |
-
#: gallery-plugin.php:
|
57 |
msgid "New Gallery"
|
58 |
msgstr "新画廊"
|
59 |
|
60 |
-
#: gallery-plugin.php:
|
61 |
msgid "View Gallery"
|
62 |
msgstr "浏览画廊"
|
63 |
|
64 |
-
#: gallery-plugin.php:
|
65 |
#, fuzzy
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "画廊"
|
68 |
|
69 |
-
#: gallery-plugin.php:
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "没有找到画廊"
|
72 |
|
73 |
-
#: gallery-plugin.php:
|
74 |
-
#: gallery-plugin.php:
|
75 |
-
#: gallery-plugin.php:
|
76 |
#, fuzzy
|
77 |
msgid "Gallery Categories"
|
78 |
msgstr "画廊中影像的尺寸"
|
79 |
|
80 |
-
#: gallery-plugin.php:
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Category"
|
83 |
msgstr "画廊中影像的尺寸"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "Add Gallery Category"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
#, fuzzy
|
91 |
msgid "Add New Gallery Category"
|
92 |
msgstr "新建画廊"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Edit Gallery Category"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "New Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
msgid "View Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "Find Gallery Category"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "No Gallery Categories found"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "No Gallery Categories found in Trash"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Parent Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Gallery Categories list navigation"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Gallery Categories list"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Gallery Shortcode"
|
132 |
msgstr "画廊代码"
|
133 |
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid ""
|
136 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
137 |
"widgets by using the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid ""
|
142 |
"Add a gallery cover including featured image, description, and a link to "
|
143 |
"your single gallery using the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
#, fuzzy
|
159 |
msgid "Shortcode"
|
160 |
msgstr "画廊代码"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "All Gallery Categories"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "You can't delete default gallery category."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Sorry, nothing found."
|
172 |
msgstr "对不起 - 没有找到。"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Featured Image"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:2843 includes/class-gllr-settings.php:679
|
180 |
-
msgid "Title"
|
181 |
-
msgstr "标题"
|
182 |
-
|
183 |
-
#: gallery-plugin.php:1598 includes/class-gllr-settings.php:41
|
184 |
#, fuzzy
|
185 |
msgid "Images"
|
186 |
msgstr "查看影像 »"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
msgid "Author"
|
190 |
-
msgstr "作者"
|
191 |
-
|
192 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
193 |
-
#: includes/class-gllr-settings.php:680
|
194 |
-
msgid "Date"
|
195 |
-
msgstr "日期"
|
196 |
-
|
197 |
-
#: gallery-plugin.php:1688
|
198 |
#, php-format
|
199 |
msgid "%s Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
204 |
msgid "Settings"
|
205 |
msgstr "设置"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "FAQ"
|
209 |
msgstr "常见问题"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "Support"
|
213 |
msgstr "支持"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "Updating images..."
|
217 |
msgstr "正在更新影像..."
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "No images found."
|
222 |
msgstr "没有找到影像"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
#, fuzzy
|
226 |
msgid "All images were updated."
|
227 |
msgstr "已更新全部影像"
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Error."
|
231 |
msgstr "错误。"
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid ""
|
235 |
"You are about to remove these items from this gallery.\n"
|
236 |
" 'Cancel' to stop, 'OK' to delete."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid ""
|
241 |
"You are about to remove this image from the gallery.\n"
|
242 |
" 'Cancel' to stop, 'OK' to delete."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid ""
|
247 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
248 |
"switching?"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Insert Media"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Insert"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
260 |
msgid "Image size not defined"
|
261 |
msgstr "影像尺寸未定义"
|
262 |
|
263 |
-
#: gallery-plugin.php:
|
264 |
#, fuzzy
|
265 |
msgid ""
|
266 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
@@ -269,231 +316,227 @@ msgstr ""
|
|
269 |
"我们仅可以更新 PNG,JPEG,GIF,WPMP 或 XBM 文件。对于其他文件类型,请手动重新"
|
270 |
"加载影像。"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Invalid path"
|
274 |
msgstr "无效的路径"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "List View"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Grid View"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Filter"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Empty Trash"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
#, fuzzy
|
294 |
msgid "No images found"
|
295 |
msgstr "没有找到影像"
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "Select bulk action"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "Bulk Actions"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Apply"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
#, fuzzy
|
311 |
msgid "Delete from Gallery"
|
312 |
msgstr "新画廊"
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Bulk Select"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "Cancel Selection"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Delete Selected"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "File"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Dimensions"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
#, fuzzy
|
336 |
msgid "Alt Text"
|
337 |
msgstr "Alt标签"
|
338 |
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "URL"
|
341 |
msgstr "URL"
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid ""
|
345 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
346 |
"to open a full size image."
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
#, fuzzy
|
351 |
msgid "Remove Image from Gallery"
|
352 |
msgstr "新画廊"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
#, fuzzy
|
356 |
msgid "Edit Image Info"
|
357 |
msgstr "附件ID"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "Deselect"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "File name"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "File type"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Description"
|
373 |
msgstr "描述"
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Lightbox Button URL"
|
378 |
msgstr "灯箱按钮链接"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "New Tab"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Enable to open URLs above in a new tab."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
#, fuzzy
|
390 |
msgid "Go Pro"
|
391 |
msgstr "转到高级版"
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
msgid "Edit more details"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
#, fuzzy
|
399 |
msgid "Remove from Gallery"
|
400 |
msgstr "新画廊"
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
#, php-format
|
404 |
msgid "Select %s"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
#, php-format
|
409 |
msgid "Edit “%s”"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
#, fuzzy
|
414 |
msgid "Edit Attachment Info"
|
415 |
msgstr "附件ID"
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Edit"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "Trash"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Delete Permanently"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
#, php-format
|
431 |
msgid "View “%s”"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "View"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
#, fuzzy
|
440 |
msgid "Attach"
|
441 |
msgstr "附件ID"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Restore"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "A list or dropdown of Gallery categories."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Select Gallery Category"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
#, fuzzy
|
457 |
msgid "Title:"
|
458 |
msgstr "标题"
|
459 |
|
460 |
-
#: gallery-plugin.php:
|
461 |
msgid "Display as dropdown"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
msgid "Show gallery counts"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Show hierarchy"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "Warning"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
msgid "You can add only images to the gallery"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: gallery-plugin.php:
|
481 |
-
msgid "or"
|
482 |
-
msgstr "或"
|
483 |
-
|
484 |
-
#: gallery-plugin.php:3181
|
485 |
#, fuzzy
|
486 |
msgid "no title"
|
487 |
msgstr "标题"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
#, fuzzy
|
491 |
msgid ""
|
492 |
"Display an album image with the description and the link to a single gallery "
|
493 |
"page"
|
494 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
#, fuzzy
|
498 |
msgid "Sorry, no gallery found."
|
499 |
msgstr "对不起 - 没有找到。"
|
@@ -527,582 +570,594 @@ msgstr ""
|
|
527 |
msgid "License Key"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: includes/class-gllr-settings.php:
|
531 |
-
msgid "Custom image size was changed. You need to update gallery images."
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: includes/class-gllr-settings.php:247
|
535 |
#, fuzzy
|
536 |
msgid "Settings saved"
|
537 |
msgstr "设置已保存。"
|
538 |
|
539 |
-
#: includes/class-gllr-settings.php:
|
540 |
#, fuzzy
|
541 |
msgid "Please, enable JavaScript in Your browser."
|
542 |
msgstr "请打开JavaScript以使用文件上传工具。"
|
543 |
|
544 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
545 |
#, fuzzy
|
546 |
msgid "Update Images"
|
547 |
msgstr "正在更新影像..."
|
548 |
|
549 |
-
#: includes/class-gllr-settings.php:
|
550 |
#, fuzzy
|
551 |
msgid "Gallery Images"
|
552 |
msgstr "画廊中影像的尺寸"
|
553 |
|
554 |
-
#: includes/class-gllr-settings.php:
|
555 |
msgid "Images adding requires JavaScript."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: includes/class-gllr-settings.php:
|
559 |
msgid "Add Media"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/class-gllr-settings.php:
|
563 |
msgid "The grid view for the Gallery images requires JavaScript."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: includes/class-gllr-settings.php:
|
567 |
msgid "Switch to the list view"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#, fuzzy
|
572 |
msgid "Single Gallery Settings"
|
573 |
msgstr "画廊设置"
|
574 |
|
575 |
-
#: includes/class-gllr-settings.php:
|
576 |
#, php-format
|
577 |
msgid "Enable to configure single gallery settings and disable %s."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/class-gllr-settings.php:
|
581 |
-
#: includes/class-gllr-settings.php:
|
582 |
-
#: includes/class-gllr-settings.php:
|
583 |
-
#: includes/class-gllr-settings.php:
|
584 |
-
#: includes/class-gllr-settings.php:
|
585 |
msgid "Close"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/class-gllr-settings.php:
|
589 |
#, fuzzy
|
590 |
msgid "Gallery Layout"
|
591 |
msgstr "没有找到画廊"
|
592 |
|
593 |
-
#: includes/class-gllr-settings.php:
|
594 |
msgid "Grid"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/class-gllr-settings.php:
|
598 |
msgid "Masonry"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/class-gllr-settings.php:
|
602 |
msgid "Number of Columns"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/class-gllr-settings.php:
|
606 |
#, php-format
|
607 |
msgid "Number of gallery columns (default is %s)."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: includes/class-gllr-settings.php:
|
611 |
#, fuzzy
|
612 |
msgid "Image Size"
|
613 |
msgstr "影像尺寸"
|
614 |
|
615 |
-
#: includes/class-gllr-settings.php:
|
616 |
msgid "Custom"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/class-gllr-settings.php:
|
620 |
msgid ""
|
621 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/class-gllr-settings.php:
|
625 |
#, fuzzy
|
626 |
msgid "Custom Image Size"
|
627 |
msgstr "影像尺寸"
|
628 |
|
629 |
-
#: includes/class-gllr-settings.php:
|
630 |
-
#: includes/class-gllr-settings.php:
|
631 |
msgid "px"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: includes/class-gllr-settings.php:
|
635 |
msgid ""
|
636 |
"Adjust these values based on the number of columns in your gallery. This "
|
637 |
"won't effect the full size of your images in the lightbox."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: includes/class-gllr-settings.php:
|
641 |
#, fuzzy
|
642 |
msgid "Crop Images"
|
643 |
msgstr "影像排序"
|
644 |
|
645 |
-
#: includes/class-gllr-settings.php:
|
646 |
msgid ""
|
647 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
648 |
"to resize images automatically using their aspect ratio."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/class-gllr-settings.php:
|
652 |
#, fuzzy
|
653 |
msgid "Crop Position"
|
654 |
msgstr "裁剪位置"
|
655 |
|
656 |
-
#: includes/class-gllr-settings.php:
|
657 |
msgid "Select crop position base (by default: center)."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: includes/class-gllr-settings.php:
|
661 |
#, fuzzy
|
662 |
msgid "Image Title"
|
663 |
msgstr "影像尺寸"
|
664 |
|
665 |
-
#: includes/class-gllr-settings.php:
|
666 |
msgid "Enable to display image title along with the gallery image."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/class-gllr-settings.php:
|
670 |
#, fuzzy
|
671 |
msgid "Image Title Position"
|
672 |
msgstr "影像尺寸未定义"
|
673 |
|
674 |
-
#: includes/class-gllr-settings.php:
|
675 |
#, fuzzy
|
676 |
msgid "Under image"
|
677 |
msgstr "更新影像"
|
678 |
|
679 |
-
#: includes/class-gllr-settings.php:
|
680 |
msgid "On mouse hover"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/class-gllr-settings.php:
|
684 |
#, fuzzy
|
685 |
msgid "Image Border"
|
686 |
msgstr "影像边缘"
|
687 |
|
688 |
-
#: includes/class-gllr-settings.php:
|
689 |
msgid ""
|
690 |
"Enable images border using the styles defined for Image Border Size and "
|
691 |
"Color options."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: includes/class-gllr-settings.php:
|
695 |
#, fuzzy
|
696 |
msgid "Image Border Size"
|
697 |
msgstr "影像尺寸"
|
698 |
|
699 |
-
#: includes/class-gllr-settings.php:
|
700 |
#, php-format
|
701 |
msgid "Gallery image border width (default is %s)"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: includes/class-gllr-settings.php:
|
705 |
#, fuzzy
|
706 |
msgid "Image Border Color"
|
707 |
msgstr "选择边框颜色"
|
708 |
|
709 |
-
#: includes/class-gllr-settings.php:
|
710 |
msgid "Pagination"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/class-gllr-settings.php:
|
714 |
msgid ""
|
715 |
"Enable pagination for images to limit number of images displayed on a single "
|
716 |
"gallery page."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/class-gllr-settings.php:
|
720 |
#, fuzzy
|
721 |
msgid "Number of Images"
|
722 |
msgstr "一行中图像的数量"
|
723 |
|
724 |
-
#: includes/class-gllr-settings.php:
|
725 |
#, php-format
|
726 |
msgid "Number of images displayed per page (default is %d)."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/class-gllr-settings.php:
|
730 |
#, fuzzy
|
731 |
msgid "Sort Images by"
|
732 |
msgstr "影像排序按"
|
733 |
|
734 |
-
#: includes/class-gllr-settings.php:
|
735 |
msgid "Manually (default)"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/class-gllr-settings.php:
|
739 |
#, fuzzy
|
740 |
msgid "Image ID"
|
741 |
msgstr "影像"
|
742 |
|
743 |
-
#: includes/class-gllr-settings.php:
|
744 |
msgid "Name"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/class-gllr-settings.php:
|
748 |
-
msgid "Random"
|
749 |
-
msgstr "随机"
|
750 |
-
|
751 |
-
#: includes/class-gllr-settings.php:516
|
752 |
msgid ""
|
753 |
"Select images sorting order in your gallery. By default, you can sort images "
|
754 |
"manually in the images tab."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/class-gllr-settings.php:
|
758 |
#, fuzzy
|
759 |
msgid "Arrange Images by"
|
760 |
msgstr "影像排序按"
|
761 |
|
762 |
-
#: includes/class-gllr-settings.php:
|
763 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: includes/class-gllr-settings.php:
|
767 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: includes/class-gllr-settings.php:
|
771 |
#, fuzzy
|
772 |
msgid "Back Link"
|
773 |
msgstr "返回链接URL"
|
774 |
|
775 |
-
#: includes/class-gllr-settings.php:
|
776 |
msgid ""
|
777 |
"Enable to show a back link in a single gallery page which navigate to a "
|
778 |
"previous page."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: includes/class-gllr-settings.php:
|
782 |
#, fuzzy
|
783 |
msgid "Back Link URL"
|
784 |
msgstr "返回链接URL"
|
785 |
|
786 |
-
#: includes/class-gllr-settings.php:
|
787 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: includes/class-gllr-settings.php:
|
791 |
#, fuzzy
|
792 |
msgid "Back Link Label"
|
793 |
msgstr "返回链接URL"
|
794 |
|
795 |
-
#: includes/class-gllr-settings.php:
|
796 |
#, fuzzy
|
797 |
msgid "Back Link with Shortcode"
|
798 |
msgstr "以代码方式显示返回链接"
|
799 |
|
800 |
-
#: includes/class-gllr-settings.php:
|
801 |
#, fuzzy
|
802 |
msgid "Enable to display a back link on a page where shortcode is used."
|
803 |
msgstr "以代码方式显示返回链接"
|
804 |
|
805 |
-
#: includes/class-gllr-settings.php:
|
806 |
#, fuzzy
|
807 |
msgid "Cover Settings"
|
808 |
msgstr "画廊设置"
|
809 |
|
810 |
-
#: includes/class-gllr-settings.php:
|
811 |
#, fuzzy
|
812 |
msgid "Galleries Page"
|
813 |
msgstr "画廊"
|
814 |
|
815 |
-
#: includes/class-gllr-settings.php:
|
816 |
#, fuzzy
|
817 |
msgid "Base page where all existing galleries will be displayed."
|
818 |
msgstr "如果您升级到高级版本,您的设置和画廊将被保存。"
|
819 |
|
820 |
-
#: includes/class-gllr-settings.php:
|
821 |
msgid "Albums Displaying"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/class-gllr-settings.php:
|
825 |
msgid "Column"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: includes/class-gllr-settings.php:
|
829 |
msgid "Rows"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: includes/class-gllr-settings.php:
|
833 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: includes/class-gllr-settings.php:
|
837 |
msgid "Column Alignment"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: includes/class-gllr-settings.php:
|
841 |
msgid "Left"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: includes/class-gllr-settings.php:
|
845 |
msgid "Right"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/class-gllr-settings.php:
|
849 |
msgid "Center"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/class-gllr-settings.php:
|
853 |
msgid "Select the column alignment."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: includes/class-gllr-settings.php:
|
857 |
#, fuzzy
|
858 |
msgid "Cover Image Size"
|
859 |
msgstr "影像尺寸"
|
860 |
|
861 |
-
#: includes/class-gllr-settings.php:
|
862 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/class-gllr-settings.php:
|
866 |
msgid "Custom Cover Image Size"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/class-gllr-settings.php:
|
870 |
msgid "Crop Cover Images"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/class-gllr-settings.php:
|
874 |
msgid ""
|
875 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
876 |
"Disable to resize images automatically using their aspect ratio."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-gllr-settings.php:
|
880 |
#, fuzzy
|
881 |
msgid "Cover Image Border"
|
882 |
msgstr "影像边缘"
|
883 |
|
884 |
-
#: includes/class-gllr-settings.php:
|
885 |
msgid ""
|
886 |
"Enable cover images border using the styles defined for Image Border Size "
|
887 |
"and Color."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/class-gllr-settings.php:
|
891 |
msgid "Cover Image Border Size"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/class-gllr-settings.php:
|
895 |
#, php-format
|
896 |
msgid "Cover image border width (default is %s)"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:
|
900 |
#, fuzzy
|
901 |
msgid "Cover Image Border Color"
|
902 |
msgstr "选择边框颜色"
|
903 |
|
904 |
-
#: includes/class-gllr-settings.php:
|
905 |
#, fuzzy
|
906 |
msgid "Sort Albums by"
|
907 |
msgstr "影像排序按"
|
908 |
|
909 |
-
#: includes/class-gllr-settings.php:
|
910 |
-
#, fuzzy
|
911 |
-
msgid "Gallery ID"
|
912 |
-
msgstr "画廊"
|
913 |
-
|
914 |
-
#: includes/class-gllr-settings.php:681
|
915 |
-
msgid "Last modified date"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: includes/class-gllr-settings.php:682
|
919 |
-
msgid "Comment count"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: includes/class-gllr-settings.php:683
|
923 |
-
msgid "\"Order\" field on the gallery edit page"
|
924 |
-
msgstr ""
|
925 |
-
|
926 |
-
#: includes/class-gllr-settings.php:687
|
927 |
msgid "Select galleries sorting order in your galleries page."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/class-gllr-settings.php:
|
931 |
msgid "Arrange Albums by"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/class-gllr-settings.php:
|
935 |
#, fuzzy
|
936 |
msgid "Read More Link Label"
|
937 |
msgstr "阅读更多链接的文本"
|
938 |
|
939 |
-
#: includes/class-gllr-settings.php:
|
940 |
msgid "Instant Lightbox"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/class-gllr-settings.php:
|
944 |
msgid ""
|
945 |
"Enable to display all images in the lightbox after clicking cover image or "
|
946 |
"URL instead of going to a single gallery page."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/class-gllr-settings.php:
|
950 |
#, fuzzy
|
951 |
msgid "Lightbox Settings"
|
952 |
msgstr "灯箱按钮链接"
|
953 |
|
954 |
-
#: includes/class-gllr-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
msgid "Enable Lightbox"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: includes/class-gllr-settings.php:
|
959 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/class-gllr-settings.php:
|
963 |
msgid ""
|
964 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
965 |
"will display the original, full size image."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/class-gllr-settings.php:
|
969 |
msgid "Overlay Color"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/class-gllr-settings.php:
|
973 |
msgid "Overlay Opacity"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/class-gllr-settings.php:
|
977 |
#, php-format
|
978 |
msgid ""
|
979 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
980 |
"is %s)."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/class-gllr-settings.php:
|
984 |
#, fuzzy
|
985 |
msgid "Slideshow"
|
986 |
msgstr "播放幻灯片"
|
987 |
|
988 |
-
#: includes/class-gllr-settings.php:
|
989 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/class-gllr-settings.php:
|
993 |
#, fuzzy
|
994 |
msgid "Slideshow Duration"
|
995 |
msgstr "幻灯片播放间隔"
|
996 |
|
997 |
-
#: includes/class-gllr-settings.php:
|
998 |
msgid "ms"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/class-gllr-settings.php:
|
1002 |
msgid "Slideshow interval duration between two images."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/class-gllr-settings.php:
|
1006 |
#, fuzzy
|
1007 |
msgid "Lightbox Helpers"
|
1008 |
msgstr "灯箱帮助"
|
1009 |
|
1010 |
-
#: includes/class-gllr-settings.php:
|
1011 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/class-gllr-settings.php:
|
1015 |
#, fuzzy
|
1016 |
msgid "Lightbox Thumbnails"
|
1017 |
msgstr "专辑封面的尺寸"
|
1018 |
|
1019 |
-
#: includes/class-gllr-settings.php:
|
1020 |
msgid "Enable to use a lightbox helper navigation between images."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/class-gllr-settings.php:
|
1024 |
msgid "Lightbox Thumbnails Position"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: includes/class-gllr-settings.php:
|
1028 |
#, fuzzy
|
1029 |
msgid "Top"
|
1030 |
msgstr "偏上"
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
#, fuzzy
|
1034 |
msgid "Lightbox Button Label"
|
1035 |
msgstr "灯箱按钮链接"
|
1036 |
|
1037 |
-
#: includes/class-gllr-settings.php:
|
1038 |
#, fuzzy
|
1039 |
msgid "Read More"
|
1040 |
msgstr "学习更多"
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
#, fuzzy
|
1044 |
msgid "Download Button"
|
1045 |
msgstr "下载自定义搜索"
|
1046 |
|
1047 |
-
#: includes/class-gllr-settings.php:
|
1048 |
msgid "Enable to display download button."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/class-gllr-settings.php:
|
1052 |
msgid "Single Lightbox"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/class-gllr-settings.php:
|
1056 |
#, fuzzy
|
1057 |
msgid ""
|
1058 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1059 |
"page."
|
1060 |
msgstr "在同一页面上为多个画廊使用同一个灯箱"
|
1061 |
|
1062 |
-
#: includes/class-gllr-settings.php:
|
1063 |
msgid "Social Sharing Buttons Settings"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/class-gllr-settings.php:
|
1067 |
msgid "Social Buttons"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: includes/class-gllr-settings.php:
|
1071 |
msgid "Enable social sharing buttons in the lightbox."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/class-gllr-settings.php:
|
1075 |
msgid "Social Networks"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: includes/class-gllr-settings.php:
|
1079 |
#, fuzzy
|
1080 |
msgid "Counter"
|
1081 |
msgstr "幻灯片播放间隔"
|
1082 |
|
1083 |
-
#: includes/class-gllr-settings.php:
|
1084 |
msgid ""
|
1085 |
"Enable to show likes counter for each social button (not available for "
|
1086 |
"Google +1)."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/class-gllr-settings.php:
|
1090 |
#, fuzzy
|
1091 |
msgid "Demo Data"
|
1092 |
msgstr "安装 %s"
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
msgid ""
|
1096 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1097 |
"page with a list of all galleries."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/class-gllr-settings.php:
|
1101 |
#, fuzzy
|
1102 |
msgid "Gallery Post Type"
|
1103 |
msgstr "画廊代码"
|
1104 |
|
1105 |
-
#: includes/class-gllr-settings.php:
|
1106 |
msgid ""
|
1107 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1108 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1110,30 +1165,25 @@ msgid ""
|
|
1110 |
"used."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/class-gllr-settings.php:
|
1114 |
#, fuzzy
|
1115 |
msgid "Gallery Slug"
|
1116 |
msgstr "画廊"
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
msgid "Enter the unique gallery slug."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/class-gllr-settings.php:
|
1123 |
#, fuzzy
|
1124 |
msgid "Activate Now"
|
1125 |
msgstr "激活"
|
1126 |
|
1127 |
-
#: includes/class-gllr-settings.php:
|
1128 |
-
#, fuzzy
|
1129 |
-
msgid "Install Now"
|
1130 |
-
msgstr "安装 %s"
|
1131 |
-
|
1132 |
-
#: includes/class-gllr-settings.php:965
|
1133 |
msgid "Enable to include galleries to your website search."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/class-gllr-settings.php:
|
1137 |
#, php-format
|
1138 |
msgid "%s is required."
|
1139 |
msgstr ""
|
@@ -1229,6 +1279,9 @@ msgstr ""
|
|
1229 |
msgid "Yes, install demo now"
|
1230 |
msgstr "安装 %s"
|
1231 |
|
|
|
|
|
|
|
1232 |
#, fuzzy
|
1233 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1234 |
#~ msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
@@ -1279,9 +1332,6 @@ msgstr "安装 %s"
|
|
1279 |
#~ msgid "Learn more"
|
1280 |
#~ msgstr "学习更多"
|
1281 |
|
1282 |
-
#~ msgid "Activate"
|
1283 |
-
#~ msgstr "激活"
|
1284 |
-
|
1285 |
#, fuzzy
|
1286 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1287 |
#~ msgstr "在灯箱中显示[喜欢]按钮"
|
@@ -1412,9 +1462,6 @@ msgstr "安装 %s"
|
|
1412 |
#~ msgid "(Full URL to custom page)"
|
1413 |
#~ msgstr "(到自定义页面的完整地址)"
|
1414 |
|
1415 |
-
#~ msgid "Add gallery to the search"
|
1416 |
-
#~ msgstr "将画廊添加到搜索"
|
1417 |
-
|
1418 |
#~ msgid "Using"
|
1419 |
#~ msgstr "试用"
|
1420 |
|
@@ -1494,10 +1541,6 @@ msgstr "安装 %s"
|
|
1494 |
#~ msgid "Select a background color"
|
1495 |
#~ msgstr "选择背景色"
|
1496 |
|
1497 |
-
#, fuzzy
|
1498 |
-
#~ msgid "Sort galleries by"
|
1499 |
-
#~ msgstr "影像排序按"
|
1500 |
-
|
1501 |
#~ msgid "Width (in px)"
|
1502 |
#~ msgstr "宽度(像素)"
|
1503 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-26 12:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-03-26 12:54+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"Language: zh_CN\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:314
|
20 |
msgid "Gallery Settings"
|
21 |
msgstr "画廊设置"
|
22 |
|
23 |
+
#: gallery-plugin.php:37 includes/class-gllr-settings.php:353
|
24 |
#, fuzzy
|
25 |
msgid "Global Settings"
|
26 |
msgstr "画廊设置"
|
27 |
|
28 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2934
|
29 |
msgid "Upgrade to Pro"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: gallery-plugin.php:340
|
33 |
msgid "Return to all albums"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: gallery-plugin.php:354
|
37 |
msgid "See images »"
|
38 |
msgstr "查看影像 »"
|
39 |
|
40 |
+
#: gallery-plugin.php:442 gallery-plugin.php:451
|
41 |
msgid "Galleries"
|
42 |
msgstr "画廊"
|
43 |
|
44 |
+
#: gallery-plugin.php:443 gallery-plugin.php:3360
|
45 |
msgid "Gallery"
|
46 |
msgstr "画廊"
|
47 |
|
48 |
+
#: gallery-plugin.php:444
|
49 |
msgid "Add New Gallery"
|
50 |
msgstr "新建画廊"
|
51 |
|
52 |
+
#: gallery-plugin.php:445
|
53 |
msgid "Edit Gallery"
|
54 |
msgstr "编辑画廊"
|
55 |
|
56 |
+
#: gallery-plugin.php:446
|
57 |
msgid "New Gallery"
|
58 |
msgstr "新画廊"
|
59 |
|
60 |
+
#: gallery-plugin.php:447
|
61 |
msgid "View Gallery"
|
62 |
msgstr "浏览画廊"
|
63 |
|
64 |
+
#: gallery-plugin.php:448 includes/class-gllr-settings.php:1001
|
65 |
#, fuzzy
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "画廊"
|
68 |
|
69 |
+
#: gallery-plugin.php:449
|
70 |
msgid "No Gallery found"
|
71 |
msgstr "没有找到画廊"
|
72 |
|
73 |
+
#: gallery-plugin.php:471 gallery-plugin.php:1721 gallery-plugin.php:3087
|
74 |
+
#: gallery-plugin.php:3095 gallery-plugin.php:3133 gallery-plugin.php:3156
|
75 |
+
#: gallery-plugin.php:3332
|
76 |
#, fuzzy
|
77 |
msgid "Gallery Categories"
|
78 |
msgstr "画廊中影像的尺寸"
|
79 |
|
80 |
+
#: gallery-plugin.php:472 gallery-plugin.php:917
|
81 |
#, fuzzy
|
82 |
msgid "Gallery Category"
|
83 |
msgstr "画廊中影像的尺寸"
|
84 |
|
85 |
+
#: gallery-plugin.php:473
|
86 |
msgid "Add Gallery Category"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:474
|
90 |
#, fuzzy
|
91 |
msgid "Add New Gallery Category"
|
92 |
msgstr "新建画廊"
|
93 |
|
94 |
+
#: gallery-plugin.php:475 gallery-plugin.php:476
|
95 |
msgid "Edit Gallery Category"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: gallery-plugin.php:477
|
99 |
msgid "New Gallery Category"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: gallery-plugin.php:478 gallery-plugin.php:479
|
103 |
msgid "View Gallery Category"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: gallery-plugin.php:480
|
107 |
msgid "Find Gallery Category"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:481
|
111 |
msgid "No Gallery Categories found"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: gallery-plugin.php:482
|
115 |
msgid "No Gallery Categories found in Trash"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: gallery-plugin.php:483
|
119 |
msgid "Parent Gallery Category"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: gallery-plugin.php:484
|
123 |
msgid "Gallery Categories list navigation"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: gallery-plugin.php:485
|
127 |
msgid "Gallery Categories list"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: gallery-plugin.php:533
|
131 |
msgid "Gallery Shortcode"
|
132 |
msgstr "画廊代码"
|
133 |
|
134 |
+
#: gallery-plugin.php:542
|
135 |
msgid ""
|
136 |
"Add a single gallery with images to your posts, pages, custom post types or "
|
137 |
"widgets by using the following shortcode:"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: gallery-plugin.php:546
|
141 |
msgid ""
|
142 |
"Add a gallery cover including featured image, description, and a link to "
|
143 |
"your single gallery using the following shortcode:"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: gallery-plugin.php:659
|
147 |
msgid "Note"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: gallery-plugin.php:659
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
"When deleting a category, the galleries that belong to this category will "
|
154 |
"not be deleted. These galleries will be moved to the category %s."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: gallery-plugin.php:670
|
158 |
+
#, fuzzy
|
159 |
+
msgid "Sort Galleries in Category by"
|
160 |
+
msgstr "影像排序按"
|
161 |
+
|
162 |
+
#: gallery-plugin.php:673 gallery-plugin.php:3346
|
163 |
+
#: includes/class-gllr-settings.php:711
|
164 |
+
#, fuzzy
|
165 |
+
msgid "Gallery ID"
|
166 |
+
msgstr "画廊"
|
167 |
+
|
168 |
+
#: gallery-plugin.php:674 gallery-plugin.php:1718 gallery-plugin.php:2788
|
169 |
+
#: gallery-plugin.php:2895 gallery-plugin.php:3008 gallery-plugin.php:3347
|
170 |
+
#: includes/class-gllr-settings.php:712
|
171 |
+
msgid "Title"
|
172 |
+
msgstr "标题"
|
173 |
+
|
174 |
+
#: gallery-plugin.php:675 gallery-plugin.php:1723 gallery-plugin.php:3348
|
175 |
+
#: includes/class-gllr-settings.php:546 includes/class-gllr-settings.php:713
|
176 |
+
msgid "Date"
|
177 |
+
msgstr "日期"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676 gallery-plugin.php:3349
|
180 |
+
#: includes/class-gllr-settings.php:714
|
181 |
+
msgid "Last modified date"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: gallery-plugin.php:677 gallery-plugin.php:3350
|
185 |
+
#: includes/class-gllr-settings.php:715
|
186 |
+
msgid "Comment count"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: gallery-plugin.php:678 gallery-plugin.php:3351
|
190 |
+
#: includes/class-gllr-settings.php:716
|
191 |
+
msgid "\"Order\" field on the gallery edit page"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: gallery-plugin.php:679 gallery-plugin.php:1722 gallery-plugin.php:3352
|
195 |
+
#: includes/class-gllr-settings.php:717
|
196 |
+
msgid "Author"
|
197 |
+
msgstr "作者"
|
198 |
+
|
199 |
+
#: gallery-plugin.php:680 gallery-plugin.php:3353
|
200 |
+
#: includes/class-gllr-settings.php:547 includes/class-gllr-settings.php:718
|
201 |
+
msgid "Random"
|
202 |
+
msgstr "随机"
|
203 |
+
|
204 |
+
#: gallery-plugin.php:681 gallery-plugin.php:3354
|
205 |
+
#, fuzzy
|
206 |
+
#| msgid "Settings"
|
207 |
+
msgid "Plugin Settings"
|
208 |
+
msgstr "设置"
|
209 |
+
|
210 |
+
#: gallery-plugin.php:683 gallery-plugin.php:3356
|
211 |
+
msgid "Select galleries sorting order in your category."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:703 gallery-plugin.php:1720
|
215 |
#, fuzzy
|
216 |
msgid "Shortcode"
|
217 |
msgstr "画廊代码"
|
218 |
|
219 |
+
#: gallery-plugin.php:749
|
220 |
msgid "All Gallery Categories"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:827
|
224 |
msgid "You can't delete default gallery category."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:1209 gallery-plugin.php:1317 gallery-plugin.php:2243
|
228 |
msgid "Sorry, nothing found."
|
229 |
msgstr "对不起 - 没有找到。"
|
230 |
|
231 |
+
#: gallery-plugin.php:1717
|
232 |
msgid "Featured Image"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:1719 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "Images"
|
238 |
msgstr "查看影像 »"
|
239 |
|
240 |
+
#: gallery-plugin.php:1810
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
#, php-format
|
242 |
msgid "%s Settings"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:1837 gallery-plugin.php:1855
|
246 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
247 |
msgid "Settings"
|
248 |
msgstr "设置"
|
249 |
|
250 |
+
#: gallery-plugin.php:1838
|
251 |
msgid "FAQ"
|
252 |
msgstr "常见问题"
|
253 |
|
254 |
+
#: gallery-plugin.php:1839
|
255 |
msgid "Support"
|
256 |
msgstr "支持"
|
257 |
|
258 |
+
#: gallery-plugin.php:1878
|
259 |
msgid "Updating images..."
|
260 |
msgstr "正在更新影像..."
|
261 |
|
262 |
+
#: gallery-plugin.php:1879
|
263 |
#, fuzzy
|
264 |
msgid "No images found."
|
265 |
msgstr "没有找到影像"
|
266 |
|
267 |
+
#: gallery-plugin.php:1880
|
268 |
#, fuzzy
|
269 |
msgid "All images were updated."
|
270 |
msgstr "已更新全部影像"
|
271 |
|
272 |
+
#: gallery-plugin.php:1881
|
273 |
msgid "Error."
|
274 |
msgstr "错误。"
|
275 |
|
276 |
+
#: gallery-plugin.php:1893
|
277 |
msgid ""
|
278 |
"You are about to remove these items from this gallery.\n"
|
279 |
" 'Cancel' to stop, 'OK' to delete."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: gallery-plugin.php:1894
|
283 |
msgid ""
|
284 |
"You are about to remove this image from the gallery.\n"
|
285 |
" 'Cancel' to stop, 'OK' to delete."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: gallery-plugin.php:1895
|
289 |
msgid ""
|
290 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
291 |
"switching?"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: gallery-plugin.php:1896
|
295 |
msgid "Insert Media"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: gallery-plugin.php:1897
|
299 |
msgid "Insert"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: gallery-plugin.php:1898
|
303 |
+
msgid "Gallery has been successfully added!"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:2435 gallery-plugin.php:2468
|
307 |
msgid "Image size not defined"
|
308 |
msgstr "影像尺寸未定义"
|
309 |
|
310 |
+
#: gallery-plugin.php:2455
|
311 |
#, fuzzy
|
312 |
msgid ""
|
313 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
316 |
"我们仅可以更新 PNG,JPEG,GIF,WPMP 或 XBM 文件。对于其他文件类型,请手动重新"
|
317 |
"加载影像。"
|
318 |
|
319 |
+
#: gallery-plugin.php:2501 gallery-plugin.php:2505 gallery-plugin.php:2511
|
320 |
msgid "Invalid path"
|
321 |
msgstr "无效的路径"
|
322 |
|
323 |
+
#: gallery-plugin.php:2607
|
324 |
msgid "List View"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: gallery-plugin.php:2608
|
328 |
msgid "Grid View"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: gallery-plugin.php:2665
|
332 |
msgid "Filter"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: gallery-plugin.php:2669
|
336 |
msgid "Empty Trash"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: gallery-plugin.php:2692
|
340 |
#, fuzzy
|
341 |
msgid "No images found"
|
342 |
msgstr "没有找到影像"
|
343 |
|
344 |
+
#: gallery-plugin.php:2745
|
345 |
msgid "Select bulk action"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: gallery-plugin.php:2747
|
349 |
msgid "Bulk Actions"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: gallery-plugin.php:2757
|
353 |
msgid "Apply"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: gallery-plugin.php:2764
|
357 |
#, fuzzy
|
358 |
msgid "Delete from Gallery"
|
359 |
msgstr "新画廊"
|
360 |
|
361 |
+
#: gallery-plugin.php:2773
|
362 |
msgid "Bulk Select"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: gallery-plugin.php:2774
|
366 |
msgid "Cancel Selection"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: gallery-plugin.php:2775
|
370 |
msgid "Delete Selected"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: gallery-plugin.php:2786
|
374 |
msgid "File"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: gallery-plugin.php:2787 gallery-plugin.php:2890 gallery-plugin.php:3003
|
378 |
msgid "Dimensions"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: gallery-plugin.php:2789 gallery-plugin.php:2901 gallery-plugin.php:3013
|
382 |
#, fuzzy
|
383 |
msgid "Alt Text"
|
384 |
msgstr "Alt标签"
|
385 |
|
386 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2905 gallery-plugin.php:3018
|
387 |
msgid "URL"
|
388 |
msgstr "URL"
|
389 |
|
390 |
+
#: gallery-plugin.php:2790 gallery-plugin.php:2907
|
391 |
msgid ""
|
392 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
393 |
"to open a full size image."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: gallery-plugin.php:2872
|
397 |
#, fuzzy
|
398 |
msgid "Remove Image from Gallery"
|
399 |
msgstr "新画廊"
|
400 |
|
401 |
+
#: gallery-plugin.php:2875
|
402 |
#, fuzzy
|
403 |
msgid "Edit Image Info"
|
404 |
msgstr "附件ID"
|
405 |
|
406 |
+
#: gallery-plugin.php:2876
|
407 |
msgid "Deselect"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: gallery-plugin.php:2888
|
411 |
msgid "File name"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: gallery-plugin.php:2889
|
415 |
msgid "File type"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: gallery-plugin.php:2914
|
419 |
msgid "Description"
|
420 |
msgstr "描述"
|
421 |
|
422 |
+
#: gallery-plugin.php:2920
|
423 |
#, fuzzy
|
424 |
msgid "Lightbox Button URL"
|
425 |
msgstr "灯箱按钮链接"
|
426 |
|
427 |
+
#: gallery-plugin.php:2927
|
428 |
msgid "New Tab"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: gallery-plugin.php:2929
|
432 |
msgid "Enable to open URLs above in a new tab."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: gallery-plugin.php:2934
|
436 |
#, fuzzy
|
437 |
msgid "Go Pro"
|
438 |
msgstr "转到高级版"
|
439 |
|
440 |
+
#: gallery-plugin.php:2940
|
441 |
msgid "Edit more details"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: gallery-plugin.php:2942
|
445 |
#, fuzzy
|
446 |
msgid "Remove from Gallery"
|
447 |
msgstr "新画廊"
|
448 |
|
449 |
+
#: gallery-plugin.php:2978
|
450 |
#, php-format
|
451 |
msgid "Select %s"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: gallery-plugin.php:2991
|
455 |
#, php-format
|
456 |
msgid "Edit “%s”"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:2999
|
460 |
#, fuzzy
|
461 |
msgid "Edit Attachment Info"
|
462 |
msgstr "附件ID"
|
463 |
|
464 |
+
#: gallery-plugin.php:3036 gallery-plugin.php:3052
|
465 |
msgid "Edit"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: gallery-plugin.php:3040 gallery-plugin.php:3058
|
469 |
msgid "Trash"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: gallery-plugin.php:3043 gallery-plugin.php:3062
|
473 |
msgid "Delete Permanently"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068
|
477 |
#, php-format
|
478 |
msgid "View “%s”"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:3046 gallery-plugin.php:3068 gallery-plugin.php:3151
|
482 |
msgid "View"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:3048
|
486 |
#, fuzzy
|
487 |
msgid "Attach"
|
488 |
msgstr "附件ID"
|
489 |
|
490 |
+
#: gallery-plugin.php:3056
|
491 |
msgid "Restore"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:3086
|
495 |
msgid "A list or dropdown of Gallery categories."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:3131
|
499 |
msgid "Select Gallery Category"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:3189
|
503 |
#, fuzzy
|
504 |
msgid "Title:"
|
505 |
msgstr "标题"
|
506 |
|
507 |
+
#: gallery-plugin.php:3192
|
508 |
msgid "Display as dropdown"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:3194
|
512 |
msgid "Show gallery counts"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:3196
|
516 |
msgid "Show hierarchy"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:3312
|
520 |
msgid "Warning"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:3312
|
524 |
msgid "You can add only images to the gallery"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:3367
|
|
|
|
|
|
|
|
|
528 |
#, fuzzy
|
529 |
msgid "no title"
|
530 |
msgstr "标题"
|
531 |
|
532 |
+
#: gallery-plugin.php:3377
|
533 |
#, fuzzy
|
534 |
msgid ""
|
535 |
"Display an album image with the description and the link to a single gallery "
|
536 |
"page"
|
537 |
msgstr "如果您想显示一个简述,其包含屏幕截图且具有指向一个图集的链接"
|
538 |
|
539 |
+
#: gallery-plugin.php:3381
|
540 |
#, fuzzy
|
541 |
msgid "Sorry, no gallery found."
|
542 |
msgstr "对不起 - 没有找到。"
|
570 |
msgid "License Key"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/class-gllr-settings.php:244
|
|
|
|
|
|
|
|
|
574 |
#, fuzzy
|
575 |
msgid "Settings saved"
|
576 |
msgstr "设置已保存。"
|
577 |
|
578 |
+
#: includes/class-gllr-settings.php:256
|
579 |
#, fuzzy
|
580 |
msgid "Please, enable JavaScript in Your browser."
|
581 |
msgstr "请打开JavaScript以使用文件上传工具。"
|
582 |
|
583 |
+
#: includes/class-gllr-settings.php:260
|
584 |
+
msgid "Custom image size was changed. You need to update gallery images."
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: includes/class-gllr-settings.php:261
|
588 |
#, fuzzy
|
589 |
msgid "Update Images"
|
590 |
msgstr "正在更新影像..."
|
591 |
|
592 |
+
#: includes/class-gllr-settings.php:276
|
593 |
#, fuzzy
|
594 |
msgid "Gallery Images"
|
595 |
msgstr "画廊中影像的尺寸"
|
596 |
|
597 |
+
#: includes/class-gllr-settings.php:281
|
598 |
msgid "Images adding requires JavaScript."
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: includes/class-gllr-settings.php:284
|
602 |
msgid "Add Media"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/class-gllr-settings.php:293
|
606 |
msgid "The grid view for the Gallery images requires JavaScript."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/class-gllr-settings.php:293
|
610 |
msgid "Switch to the list view"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/class-gllr-settings.php:320
|
614 |
+
#, fuzzy
|
615 |
+
#| msgid "Add gallery to the search"
|
616 |
+
msgid "Add Gallery to the Slider"
|
617 |
+
msgstr "将画廊添加到搜索"
|
618 |
+
|
619 |
+
#: includes/class-gllr-settings.php:332
|
620 |
+
msgid "Activate"
|
621 |
+
msgstr "激活"
|
622 |
+
|
623 |
+
#: includes/class-gllr-settings.php:335 includes/class-gllr-settings.php:1022
|
624 |
+
#, fuzzy
|
625 |
+
msgid "Install Now"
|
626 |
+
msgstr "安装 %s"
|
627 |
+
|
628 |
+
#: includes/class-gllr-settings.php:337
|
629 |
+
msgid "Add"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/class-gllr-settings.php:340
|
633 |
+
msgid "Click to add current gallery to the slider. Slider plugin is required."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/class-gllr-settings.php:351
|
637 |
#, fuzzy
|
638 |
msgid "Single Gallery Settings"
|
639 |
msgstr "画廊设置"
|
640 |
|
641 |
+
#: includes/class-gllr-settings.php:353
|
642 |
#, php-format
|
643 |
msgid "Enable to configure single gallery settings and disable %s."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: includes/class-gllr-settings.php:365 includes/class-gllr-settings.php:422
|
647 |
+
#: includes/class-gllr-settings.php:466 includes/class-gllr-settings.php:516
|
648 |
+
#: includes/class-gllr-settings.php:654 includes/class-gllr-settings.php:742
|
649 |
+
#: includes/class-gllr-settings.php:785 includes/class-gllr-settings.php:835
|
650 |
+
#: includes/class-gllr-settings.php:894 includes/class-gllr-settings.php:983
|
651 |
msgid "Close"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/class-gllr-settings.php:369
|
655 |
#, fuzzy
|
656 |
msgid "Gallery Layout"
|
657 |
msgstr "没有找到画廊"
|
658 |
|
659 |
+
#: includes/class-gllr-settings.php:374
|
660 |
msgid "Grid"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/class-gllr-settings.php:380
|
664 |
msgid "Masonry"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/class-gllr-settings.php:393
|
668 |
msgid "Number of Columns"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: includes/class-gllr-settings.php:396
|
672 |
#, php-format
|
673 |
msgid "Number of gallery columns (default is %s)."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/class-gllr-settings.php:400 includes/class-gllr-settings.php:789
|
677 |
#, fuzzy
|
678 |
msgid "Image Size"
|
679 |
msgstr "影像尺寸"
|
680 |
|
681 |
+
#: includes/class-gllr-settings.php:406 includes/class-gllr-settings.php:639
|
682 |
msgid "Custom"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: includes/class-gllr-settings.php:408
|
686 |
msgid ""
|
687 |
"Maximum gallery image size. \"Custom\" uses the Image Dimensions values."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: includes/class-gllr-settings.php:412
|
691 |
#, fuzzy
|
692 |
msgid "Custom Image Size"
|
693 |
msgstr "影像尺寸"
|
694 |
|
695 |
+
#: includes/class-gllr-settings.php:414 includes/class-gllr-settings.php:502
|
696 |
+
#: includes/class-gllr-settings.php:647 includes/class-gllr-settings.php:697
|
697 |
msgid "px"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/class-gllr-settings.php:415
|
701 |
msgid ""
|
702 |
"Adjust these values based on the number of columns in your gallery. This "
|
703 |
"won't effect the full size of your images in the lightbox."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/class-gllr-settings.php:426
|
707 |
#, fuzzy
|
708 |
msgid "Crop Images"
|
709 |
msgstr "影像排序"
|
710 |
|
711 |
+
#: includes/class-gllr-settings.php:428
|
712 |
msgid ""
|
713 |
"Enable to crop images using the sizes defined for Custom Image Size. Disable "
|
714 |
"to resize images automatically using their aspect ratio."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-gllr-settings.php:432 includes/class-gllr-settings.php:664
|
718 |
#, fuzzy
|
719 |
msgid "Crop Position"
|
720 |
msgstr "裁剪位置"
|
721 |
|
722 |
+
#: includes/class-gllr-settings.php:447 includes/class-gllr-settings.php:679
|
723 |
msgid "Select crop position base (by default: center)."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/class-gllr-settings.php:457
|
727 |
#, fuzzy
|
728 |
msgid "Image Title"
|
729 |
msgstr "影像尺寸"
|
730 |
|
731 |
+
#: includes/class-gllr-settings.php:459
|
732 |
msgid "Enable to display image title along with the gallery image."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/class-gllr-settings.php:470
|
736 |
#, fuzzy
|
737 |
msgid "Image Title Position"
|
738 |
msgstr "影像尺寸未定义"
|
739 |
|
740 |
+
#: includes/class-gllr-settings.php:475
|
741 |
#, fuzzy
|
742 |
msgid "Under image"
|
743 |
msgstr "更新影像"
|
744 |
|
745 |
+
#: includes/class-gllr-settings.php:481
|
746 |
msgid "On mouse hover"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/class-gllr-settings.php:494
|
750 |
#, fuzzy
|
751 |
msgid "Image Border"
|
752 |
msgstr "影像边缘"
|
753 |
|
754 |
+
#: includes/class-gllr-settings.php:496
|
755 |
msgid ""
|
756 |
"Enable images border using the styles defined for Image Border Size and "
|
757 |
"Color options."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/class-gllr-settings.php:500
|
761 |
#, fuzzy
|
762 |
msgid "Image Border Size"
|
763 |
msgstr "影像尺寸"
|
764 |
|
765 |
+
#: includes/class-gllr-settings.php:503
|
766 |
#, php-format
|
767 |
msgid "Gallery image border width (default is %s)"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/class-gllr-settings.php:507
|
771 |
#, fuzzy
|
772 |
msgid "Image Border Color"
|
773 |
msgstr "选择边框颜色"
|
774 |
|
775 |
+
#: includes/class-gllr-settings.php:520
|
776 |
msgid "Pagination"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/class-gllr-settings.php:523
|
780 |
msgid ""
|
781 |
"Enable pagination for images to limit number of images displayed on a single "
|
782 |
"gallery page."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: includes/class-gllr-settings.php:527
|
786 |
#, fuzzy
|
787 |
msgid "Number of Images"
|
788 |
msgstr "一行中图像的数量"
|
789 |
|
790 |
+
#: includes/class-gllr-settings.php:530
|
791 |
#, php-format
|
792 |
msgid "Number of images displayed per page (default is %d)."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/class-gllr-settings.php:540
|
796 |
#, fuzzy
|
797 |
msgid "Sort Images by"
|
798 |
msgstr "影像排序按"
|
799 |
|
800 |
+
#: includes/class-gllr-settings.php:543
|
801 |
msgid "Manually (default)"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/class-gllr-settings.php:544
|
805 |
#, fuzzy
|
806 |
msgid "Image ID"
|
807 |
msgstr "影像"
|
808 |
|
809 |
+
#: includes/class-gllr-settings.php:545
|
810 |
msgid "Name"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/class-gllr-settings.php:549
|
|
|
|
|
|
|
|
|
814 |
msgid ""
|
815 |
"Select images sorting order in your gallery. By default, you can sort images "
|
816 |
"manually in the images tab."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/class-gllr-settings.php:553
|
820 |
#, fuzzy
|
821 |
msgid "Arrange Images by"
|
822 |
msgstr "影像排序按"
|
823 |
|
824 |
+
#: includes/class-gllr-settings.php:556 includes/class-gllr-settings.php:727
|
825 |
msgid "Ascending (e.g. 1, 2, 3; a, b, c)"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/class-gllr-settings.php:557 includes/class-gllr-settings.php:728
|
829 |
msgid "Descending (e.g. 3, 2, 1; c, b, a)"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/class-gllr-settings.php:562
|
833 |
#, fuzzy
|
834 |
msgid "Back Link"
|
835 |
msgstr "返回链接URL"
|
836 |
|
837 |
+
#: includes/class-gllr-settings.php:564
|
838 |
msgid ""
|
839 |
"Enable to show a back link in a single gallery page which navigate to a "
|
840 |
"previous page."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/class-gllr-settings.php:568
|
844 |
#, fuzzy
|
845 |
msgid "Back Link URL"
|
846 |
msgstr "返回链接URL"
|
847 |
|
848 |
+
#: includes/class-gllr-settings.php:571
|
849 |
msgid "Back link custom page URL. Leave blank to use Gallery page template."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: includes/class-gllr-settings.php:575
|
853 |
#, fuzzy
|
854 |
msgid "Back Link Label"
|
855 |
msgstr "返回链接URL"
|
856 |
|
857 |
+
#: includes/class-gllr-settings.php:581
|
858 |
#, fuzzy
|
859 |
msgid "Back Link with Shortcode"
|
860 |
msgstr "以代码方式显示返回链接"
|
861 |
|
862 |
+
#: includes/class-gllr-settings.php:584
|
863 |
#, fuzzy
|
864 |
msgid "Enable to display a back link on a page where shortcode is used."
|
865 |
msgstr "以代码方式显示返回链接"
|
866 |
|
867 |
+
#: includes/class-gllr-settings.php:595
|
868 |
#, fuzzy
|
869 |
msgid "Cover Settings"
|
870 |
msgstr "画廊设置"
|
871 |
|
872 |
+
#: includes/class-gllr-settings.php:600
|
873 |
#, fuzzy
|
874 |
msgid "Galleries Page"
|
875 |
msgstr "画廊"
|
876 |
|
877 |
+
#: includes/class-gllr-settings.php:608
|
878 |
#, fuzzy
|
879 |
msgid "Base page where all existing galleries will be displayed."
|
880 |
msgstr "如果您升级到高级版本,您的设置和画廊将被保存。"
|
881 |
|
882 |
+
#: includes/class-gllr-settings.php:612
|
883 |
msgid "Albums Displaying"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/class-gllr-settings.php:615
|
887 |
msgid "Column"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: includes/class-gllr-settings.php:616
|
891 |
msgid "Rows"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/class-gllr-settings.php:618
|
895 |
msgid "Select the way galleries will be displayed on the Galleries Page."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/class-gllr-settings.php:622
|
899 |
msgid "Column Alignment"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/class-gllr-settings.php:625
|
903 |
msgid "Left"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/class-gllr-settings.php:626
|
907 |
msgid "Right"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/class-gllr-settings.php:627
|
911 |
msgid "Center"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/class-gllr-settings.php:629
|
915 |
msgid "Select the column alignment."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/class-gllr-settings.php:633
|
919 |
#, fuzzy
|
920 |
msgid "Cover Image Size"
|
921 |
msgstr "影像尺寸"
|
922 |
|
923 |
+
#: includes/class-gllr-settings.php:641
|
924 |
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/class-gllr-settings.php:645
|
928 |
msgid "Custom Cover Image Size"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/class-gllr-settings.php:658
|
932 |
msgid "Crop Cover Images"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/class-gllr-settings.php:660
|
936 |
msgid ""
|
937 |
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
938 |
"Disable to resize images automatically using their aspect ratio."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/class-gllr-settings.php:689
|
942 |
#, fuzzy
|
943 |
msgid "Cover Image Border"
|
944 |
msgstr "影像边缘"
|
945 |
|
946 |
+
#: includes/class-gllr-settings.php:691
|
947 |
msgid ""
|
948 |
"Enable cover images border using the styles defined for Image Border Size "
|
949 |
"and Color."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/class-gllr-settings.php:695
|
953 |
msgid "Cover Image Border Size"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/class-gllr-settings.php:698
|
957 |
#, php-format
|
958 |
msgid "Cover image border width (default is %s)"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/class-gllr-settings.php:702
|
962 |
#, fuzzy
|
963 |
msgid "Cover Image Border Color"
|
964 |
msgstr "选择边框颜色"
|
965 |
|
966 |
+
#: includes/class-gllr-settings.php:708
|
967 |
#, fuzzy
|
968 |
msgid "Sort Albums by"
|
969 |
msgstr "影像排序按"
|
970 |
|
971 |
+
#: includes/class-gllr-settings.php:720
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
msgid "Select galleries sorting order in your galleries page."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/class-gllr-settings.php:724
|
976 |
msgid "Arrange Albums by"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/class-gllr-settings.php:733
|
980 |
#, fuzzy
|
981 |
msgid "Read More Link Label"
|
982 |
msgstr "阅读更多链接的文本"
|
983 |
|
984 |
+
#: includes/class-gllr-settings.php:746
|
985 |
msgid "Instant Lightbox"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: includes/class-gllr-settings.php:749
|
989 |
msgid ""
|
990 |
"Enable to display all images in the lightbox after clicking cover image or "
|
991 |
"URL instead of going to a single gallery page."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/class-gllr-settings.php:763
|
995 |
#, fuzzy
|
996 |
msgid "Lightbox Settings"
|
997 |
msgstr "灯箱按钮链接"
|
998 |
|
999 |
+
#: includes/class-gllr-settings.php:768
|
1000 |
+
msgid "Unclickable Thumbnail Images"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: includes/class-gllr-settings.php:771
|
1004 |
+
msgid ""
|
1005 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
1006 |
+
"URLs. This option also disables Lightbox."
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/class-gllr-settings.php:775
|
1010 |
msgid "Enable Lightbox"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/class-gllr-settings.php:778
|
1014 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/class-gllr-settings.php:796
|
1018 |
msgid ""
|
1019 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
1020 |
"will display the original, full size image."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/class-gllr-settings.php:800
|
1024 |
msgid "Overlay Color"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: includes/class-gllr-settings.php:806
|
1028 |
msgid "Overlay Opacity"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/class-gllr-settings.php:809
|
1032 |
#, php-format
|
1033 |
msgid ""
|
1034 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1035 |
"is %s)."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/class-gllr-settings.php:819
|
1039 |
#, fuzzy
|
1040 |
msgid "Slideshow"
|
1041 |
msgstr "播放幻灯片"
|
1042 |
|
1043 |
+
#: includes/class-gllr-settings.php:821
|
1044 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/class-gllr-settings.php:825
|
1048 |
#, fuzzy
|
1049 |
msgid "Slideshow Duration"
|
1050 |
msgstr "幻灯片播放间隔"
|
1051 |
|
1052 |
+
#: includes/class-gllr-settings.php:827
|
1053 |
msgid "ms"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/class-gllr-settings.php:828
|
1057 |
msgid "Slideshow interval duration between two images."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/class-gllr-settings.php:839
|
1061 |
#, fuzzy
|
1062 |
msgid "Lightbox Helpers"
|
1063 |
msgstr "灯箱帮助"
|
1064 |
|
1065 |
+
#: includes/class-gllr-settings.php:841
|
1066 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/class-gllr-settings.php:845
|
1070 |
#, fuzzy
|
1071 |
msgid "Lightbox Thumbnails"
|
1072 |
msgstr "专辑封面的尺寸"
|
1073 |
|
1074 |
+
#: includes/class-gllr-settings.php:847
|
1075 |
msgid "Enable to use a lightbox helper navigation between images."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/class-gllr-settings.php:851
|
1079 |
msgid "Lightbox Thumbnails Position"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/class-gllr-settings.php:854
|
1083 |
#, fuzzy
|
1084 |
msgid "Top"
|
1085 |
msgstr "偏上"
|
1086 |
|
1087 |
+
#: includes/class-gllr-settings.php:859
|
1088 |
#, fuzzy
|
1089 |
msgid "Lightbox Button Label"
|
1090 |
msgstr "灯箱按钮链接"
|
1091 |
|
1092 |
+
#: includes/class-gllr-settings.php:861
|
1093 |
#, fuzzy
|
1094 |
msgid "Read More"
|
1095 |
msgstr "学习更多"
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:871
|
1098 |
#, fuzzy
|
1099 |
msgid "Download Button"
|
1100 |
msgstr "下载自定义搜索"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:873
|
1103 |
msgid "Enable to display download button."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/class-gllr-settings.php:877
|
1107 |
msgid "Single Lightbox"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: includes/class-gllr-settings.php:879
|
1111 |
#, fuzzy
|
1112 |
msgid ""
|
1113 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1114 |
"page."
|
1115 |
msgstr "在同一页面上为多个画廊使用同一个灯箱"
|
1116 |
|
1117 |
+
#: includes/class-gllr-settings.php:889
|
1118 |
msgid "Social Sharing Buttons Settings"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/class-gllr-settings.php:898
|
1122 |
msgid "Social Buttons"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/class-gllr-settings.php:900
|
1126 |
msgid "Enable social sharing buttons in the lightbox."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/class-gllr-settings.php:904
|
1130 |
msgid "Social Networks"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/class-gllr-settings.php:915
|
1134 |
#, fuzzy
|
1135 |
msgid "Counter"
|
1136 |
msgstr "幻灯片播放间隔"
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:918
|
1139 |
msgid ""
|
1140 |
"Enable to show likes counter for each social button (not available for "
|
1141 |
"Google +1)."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/class-gllr-settings.php:933
|
1145 |
#, fuzzy
|
1146 |
msgid "Demo Data"
|
1147 |
msgstr "安装 %s"
|
1148 |
|
1149 |
+
#: includes/class-gllr-settings.php:935
|
1150 |
msgid ""
|
1151 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1152 |
"page with a list of all galleries."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/class-gllr-settings.php:973
|
1156 |
#, fuzzy
|
1157 |
msgid "Gallery Post Type"
|
1158 |
msgstr "画廊代码"
|
1159 |
|
1160 |
+
#: includes/class-gllr-settings.php:975
|
1161 |
msgid ""
|
1162 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1163 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
1165 |
"used."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/class-gllr-settings.php:987
|
1169 |
#, fuzzy
|
1170 |
msgid "Gallery Slug"
|
1171 |
msgstr "画廊"
|
1172 |
|
1173 |
+
#: includes/class-gllr-settings.php:991
|
1174 |
msgid "Enter the unique gallery slug."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/class-gllr-settings.php:1007
|
1178 |
#, fuzzy
|
1179 |
msgid "Activate Now"
|
1180 |
msgstr "激活"
|
1181 |
|
1182 |
+
#: includes/class-gllr-settings.php:1025
|
|
|
|
|
|
|
|
|
|
|
1183 |
msgid "Enable to include galleries to your website search."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/class-gllr-settings.php:1025
|
1187 |
#, php-format
|
1188 |
msgid "%s is required."
|
1189 |
msgstr ""
|
1279 |
msgid "Yes, install demo now"
|
1280 |
msgstr "安装 %s"
|
1281 |
|
1282 |
+
#~ msgid "or"
|
1283 |
+
#~ msgstr "或"
|
1284 |
+
|
1285 |
#, fuzzy
|
1286 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1287 |
#~ msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
1332 |
#~ msgid "Learn more"
|
1333 |
#~ msgstr "学习更多"
|
1334 |
|
|
|
|
|
|
|
1335 |
#, fuzzy
|
1336 |
#~ msgid "Enable social sharing buttons in the Lightbox."
|
1337 |
#~ msgstr "在灯箱中显示[喜欢]按钮"
|
1462 |
#~ msgid "(Full URL to custom page)"
|
1463 |
#~ msgstr "(到自定义页面的完整地址)"
|
1464 |
|
|
|
|
|
|
|
1465 |
#~ msgid "Using"
|
1466 |
#~ msgstr "试用"
|
1467 |
|
1541 |
#~ msgid "Select a background color"
|
1542 |
#~ msgstr "选择背景色"
|
1543 |
|
|
|
|
|
|
|
|
|
1544 |
#~ msgid "Width (in px)"
|
1545 |
#~ msgstr "宽度(像素)"
|
1546 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://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: 4.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -27,6 +27,7 @@ https://www.youtube.com/watch?v=aydaTdOpaRM
|
|
27 |
* Albums to gallery
|
28 |
* Images to album
|
29 |
* Gallery categories
|
|
|
30 |
* Choose albums layout:
|
31 |
* Column
|
32 |
* Rows
|
@@ -226,6 +227,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
226 |
|
227 |
== Changelog ==
|
228 |
|
|
|
|
|
|
|
|
|
229 |
= V4.5.9 - 08.02.2019 =
|
230 |
* Bugfix : The bug with the rename post type 'gallery' to the 'bws-gallery' has been fixed.
|
231 |
* Bugfix : Compatibility with WPML has been fixed.
|
@@ -661,6 +666,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
661 |
|
662 |
== Upgrade Notice ==
|
663 |
|
|
|
|
|
|
|
|
|
664 |
= V4.5.9 =
|
665 |
* Bugs fixed.
|
666 |
* The compatibility with new WordPress version updated.
|
3 |
Donate link: https://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: 4.0
|
6 |
+
Tested up to: 5.1.1
|
7 |
+
Stable tag: 4.6.0
|
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 |
* Gallery categories
|
30 |
+
* Add Gallery to the [Slider](https://bestwebsoft.com/products/wordpress/plugins/slider/) [NEW]
|
31 |
* Choose albums layout:
|
32 |
* Column
|
33 |
* Rows
|
227 |
|
228 |
== Changelog ==
|
229 |
|
230 |
+
= V4.6.0 - 29.03.2019 =
|
231 |
+
* NEW : Ability to add a gallery to the slider has been added.
|
232 |
+
* Update : All functionality was updated for WordPress 5.1.1.
|
233 |
+
|
234 |
= V4.5.9 - 08.02.2019 =
|
235 |
* Bugfix : The bug with the rename post type 'gallery' to the 'bws-gallery' has been fixed.
|
236 |
* Bugfix : Compatibility with WPML has been fixed.
|
666 |
|
667 |
== Upgrade Notice ==
|
668 |
|
669 |
+
= V4.6.0 =
|
670 |
+
* New features added.
|
671 |
+
* The compatibility with new WordPress version updated.
|
672 |
+
|
673 |
= V4.5.9 =
|
674 |
* Bugs fixed.
|
675 |
* The compatibility with new WordPress version updated.
|
screenshot-7.png
CHANGED
Binary file
|
screenshot-8.png
CHANGED
Binary file
|
screenshot-9.png
CHANGED
Binary file
|