Version Description
- 08.03.2018 =
- NEW : Ability to disable the opening of the image from the thumbnail in a single gallery.
- NEW : Ability to sort galleries in a category has been added.
- NEW : Ability to sort galleries displayed by a shortcode has been added.
- Update : The compatibility with new WordPress version updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 4.5.5 |
Comparing to | |
See all releases |
Code changes from version 4.5.4 to 4.5.5
- css/style.css +5 -6
- gallery-plugin.php +154 -81
- includes/class-gllr-settings.php +17 -10
- js/frontend_script.js +2 -2
- js/script.js +63 -53
- languages/gallery-plugin-fr_FR.mo +0 -0
- languages/gallery-plugin-fr_FR.po +1567 -1987
- languages/gallery-plugin-ru_RU.mo +0 -0
- languages/gallery-plugin-ru_RU.po +231 -190
- languages/gallery-plugin-uk.mo +0 -0
- languages/gallery-plugin-uk.po +223 -190
- readme.txt +16 -4
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
- screenshot-8.png +0 -0
- screenshot-9.png +0 -0
css/style.css
CHANGED
@@ -208,12 +208,11 @@
|
|
208 |
background-color: #eee;
|
209 |
padding: 4px;
|
210 |
text-align: left;
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
|
217 |
}
|
218 |
/* Media TB_inline*/
|
219 |
.post-type-gallery #TB_window,
|
208 |
background-color: #eee;
|
209 |
padding: 4px;
|
210 |
text-align: left;
|
211 |
+
overflow: hidden;
|
212 |
+
position: absolute;
|
213 |
+
bottom: 0;
|
214 |
+
width: calc(100% - 8px);
|
215 |
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
|
|
|
216 |
}
|
217 |
/* Media TB_inline*/
|
218 |
.post-type-gallery #TB_window,
|
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.5.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -105,14 +105,14 @@ if ( ! function_exists( 'gllr_init' ) ) {
|
|
105 |
/* Add media button to the gallery post type */
|
106 |
if (
|
107 |
( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == $gllr_options['post_type_name'] ) ||
|
108 |
-
(
|
109 |
) {
|
110 |
add_action( 'edit_form_after_title', 'gllr_media_custom_box' );
|
111 |
}
|
112 |
|
113 |
/* demo data */
|
114 |
$demo_options = get_option( 'gllr_demo_options' );
|
115 |
-
if ( ! empty( $demo_options ) || ( isset( $_GET['page'] ) && $_GET['page']
|
116 |
gllr_include_demo_data();
|
117 |
}
|
118 |
}
|
@@ -164,15 +164,8 @@ if ( ! function_exists( 'gllr_settings' ) ) {
|
|
164 |
/* Get options from the database */
|
165 |
$gllr_options = get_option( 'gllr_options' );
|
166 |
|
167 |
-
/**
|
168 |
-
* Function check if plugin gallery_categories is/was active
|
169 |
-
* @deprecated since 4.5.1
|
170 |
-
* @todo remove after 18.01.2018
|
171 |
-
*/
|
172 |
-
deactivate_plugins( 'gallery-categories/gallery-categories.php' );
|
173 |
-
|
174 |
/* Array merge incase this version has added new options */
|
175 |
-
if ( $gllr_options['plugin_option_version'] != $gllr_plugin_info["Version"] ) {
|
176 |
|
177 |
$option_defaults = gllr_get_options_default();
|
178 |
|
@@ -181,14 +174,6 @@ if ( ! function_exists( 'gllr_settings' ) ) {
|
|
181 |
$gllr_options = array_merge( $option_defaults, $gllr_options );
|
182 |
$gllr_options['plugin_option_version'] = $gllr_plugin_info["Version"];
|
183 |
|
184 |
-
/**
|
185 |
-
* @deprecated since 4.5.2
|
186 |
-
* @todo remove after 1.02.2018
|
187 |
-
*/
|
188 |
-
if ( array_key_exists( 'lightbox_download_link_label', $gllr_options ) )
|
189 |
-
unset( $gllr_options['lightbox_download_link_label'] );
|
190 |
-
/* @todo end */
|
191 |
-
|
192 |
/* show pro features */
|
193 |
$gllr_options['hide_premium_options'] = array();
|
194 |
|
@@ -245,10 +230,13 @@ if ( ! function_exists( 'gllr_get_options_default' ) ) {
|
|
245 |
'cover_border_images_width' => 10,
|
246 |
'cover_border_images_color' => '#F1F1F1',
|
247 |
'album_order_by' => 'date',
|
|
|
|
|
248 |
'album_order' => 'DESC',
|
249 |
'read_more_link_text' => __( 'See images »', 'gallery-plugin' ),
|
250 |
/* lightbox */
|
251 |
'enable_lightbox' => 1,
|
|
|
252 |
'start_slideshow' => 0,
|
253 |
'slideshow_interval' => 2000,
|
254 |
'lightbox_download_link' => 0,
|
@@ -485,8 +473,8 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
485 |
update_post_meta( $post->ID, '_gallery_images', implode( ',', array_keys( $_POST['_gallery_order_' . $post->ID ] ) ) );
|
486 |
}
|
487 |
|
488 |
-
if ( ( isset( $_POST['action-top'] ) && $_POST['action-top']
|
489 |
-
( isset( $_POST['action-bottom'] ) && $_POST['action-bottom']
|
490 |
$gallery_images = get_post_meta( $post_id, '_gallery_images', true );
|
491 |
$gallery_images_array = explode( ',', $gallery_images );
|
492 |
$gallery_images_array = array_flip( $gallery_images_array );
|
@@ -585,6 +573,37 @@ if ( ! function_exists( 'gllr_add_notice_below_table' ) ) {
|
|
585 |
}
|
586 |
}
|
587 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
588 |
/**
|
589 |
* Function for adding column in taxonomy
|
590 |
*
|
@@ -602,7 +621,7 @@ if ( ! function_exists( 'gllr_add_column' ) ) {
|
|
602 |
*/
|
603 |
if ( ! function_exists( 'gllr_fill_column' ) ) {
|
604 |
function gllr_fill_column( $out, $column, $id ) {
|
605 |
-
if (
|
606 |
$out = bws_shortcode_output( '[print_gllr cat_id=' . $id . ']' );
|
607 |
}
|
608 |
return $out;
|
@@ -1012,7 +1031,7 @@ if ( ! function_exists( 'gllr_single_template_content' ) ) {
|
|
1012 |
"post_mime_type" => "image/jpeg,image/gif,image/jpg,image/png",
|
1013 |
'post__in' => explode( ',', $images_id ),
|
1014 |
'meta_key' => '_gallery_order_' . $post->ID
|
1015 |
-
));
|
1016 |
if ( count( $posts ) > 0 ) {
|
1017 |
$count_image_block = 0; ?>
|
1018 |
<div class="gallery clearfix gllr_grid" data-gllr-columns="<?php echo $gllr_options["custom_image_row_count"]; ?>" data-gllr-border-width="<?php echo $gllr_options['border_images_width']; ?>">
|
@@ -1040,11 +1059,17 @@ if ( ! function_exists( 'gllr_single_template_content' ) ) {
|
|
1040 |
<a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
|
1041 |
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
|
1042 |
</a>
|
1043 |
-
<?php } else {
|
1044 |
-
|
1045 |
-
<
|
1046 |
-
|
1047 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
</p>
|
1049 |
<?php if ( 1 == $gllr_options["image_text"] ) { ?>
|
1050 |
<div <?php if ( $width ) echo 'style="width:' . ( $width + $border_images ) . 'px;"'; ?> class="gllr_single_image_text"><?php echo $image_text; ?> </div>
|
@@ -1271,7 +1296,7 @@ if ( ! function_exists( 'gllr_add_pdf_print_content' ) ) {
|
|
1271 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1272 |
'post__in' => explode( ',', $images_id ),
|
1273 |
'meta_key' => '_gallery_order_' . $post->ID
|
1274 |
-
));
|
1275 |
if ( ! empty( $attachments[0] ) ) {
|
1276 |
$first_attachment = $attachments[0];
|
1277 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
@@ -1428,7 +1453,7 @@ if ( ! function_exists( 'gllr_add_pdf_print_content' ) ) {
|
|
1428 |
);
|
1429 |
$second_query = new WP_Query( $args );
|
1430 |
|
1431 |
-
if (
|
1432 |
if ( $second_query->have_posts() ) {
|
1433 |
$second_query->the_post();
|
1434 |
$attachments = get_post_thumbnail_id( $post->ID );
|
@@ -1444,7 +1469,7 @@ if ( ! function_exists( 'gllr_add_pdf_print_content' ) ) {
|
|
1444 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1445 |
'post__in' => explode( ',', $images_id ),
|
1446 |
'meta_key' => '_gallery_order_' . $post->ID
|
1447 |
-
));
|
1448 |
if ( ! empty( $attachments[0] ) ) {
|
1449 |
$first_attachment = $attachments[0];
|
1450 |
$image_attributes_featured = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
@@ -1759,8 +1784,8 @@ if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
|
1759 |
'img_error' => __( 'Error.', 'gallery-plugin' )
|
1760 |
) );
|
1761 |
} else if (
|
1762 |
-
(
|
1763 |
-
(
|
1764 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
1765 |
bws_enqueue_settings_scripts();
|
1766 |
wp_enqueue_script( 'gllr_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
|
@@ -1843,26 +1868,30 @@ if ( ! function_exists( 'gllr_pagination_callback' ) ) {
|
|
1843 |
if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
1844 |
function gllr_shortcode( $attr ) {
|
1845 |
global $gllr_options, $gllr_vars_for_inline_script;
|
1846 |
-
|
1847 |
wp_register_script( 'gllr_js', plugins_url( 'js/frontend_script.js', __FILE__ ), array( 'jquery' ) );
|
1848 |
|
1849 |
-
/**
|
1850 |
-
* @deprecated since 4.5.2
|
1851 |
-
* @todo test and remove after #4234 (M) will be resolved
|
1852 |
-
*/
|
1853 |
-
if ( isset( $_GET['print'] ) )
|
1854 |
-
return gllr_add_pdf_print_content( '', $attr );
|
1855 |
-
/** @todo end */
|
1856 |
-
|
1857 |
extract( shortcode_atts( array(
|
1858 |
'id' => '',
|
1859 |
'display' => 'full',
|
1860 |
-
'cat_id' =>
|
|
|
1861 |
), $attr )
|
1862 |
);
|
1863 |
ob_start();
|
1864 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
1865 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1866 |
if ( ! empty( $cat_id ) ) {
|
1867 |
global $post, $wp_query;
|
1868 |
|
@@ -1876,7 +1905,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
1876 |
'post_status' => 'publish',
|
1877 |
'posts_per_page' => -1,
|
1878 |
'gallery_categories'=> $term->slug,
|
1879 |
-
'orderby' => $
|
1880 |
'order' => $gllr_options['album_order']
|
1881 |
);
|
1882 |
$second_query = new WP_Query( $args ); ?>
|
@@ -1911,7 +1940,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
1911 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1912 |
'post__in' => explode( ',', $images_id ),
|
1913 |
'meta_key' => '_gallery_order_' . $post->ID
|
1914 |
-
));
|
1915 |
if ( ! empty( $attachments[0] ) ) {
|
1916 |
$first_attachment = $attachments[0];
|
1917 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
@@ -1949,7 +1978,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
1949 |
'posts_per_page' => 1
|
1950 |
);
|
1951 |
$second_query = new WP_Query( $args );
|
1952 |
-
if (
|
1953 |
<div class="gallery_box">
|
1954 |
<ul>
|
1955 |
<?php if ( $second_query->have_posts() ) {
|
@@ -1976,7 +2005,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
1976 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1977 |
'post__in' => explode( ',', $images_id ),
|
1978 |
'meta_key' => '_gallery_order_' . $post->ID
|
1979 |
-
));
|
1980 |
if ( ! empty( $attachments[0] ) ) {
|
1981 |
$first_attachment = $attachments[0];
|
1982 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
@@ -2039,7 +2068,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2039 |
"post_mime_type" => "image/jpeg,image/gif,image/jpg,image/png",
|
2040 |
'post__in' => explode( ',', $images_id ),
|
2041 |
'meta_key' => '_gallery_order_' . $post->ID
|
2042 |
-
));
|
2043 |
|
2044 |
if ( 0 < count( $posts ) ) {
|
2045 |
$count_image_block = 0; ?>
|
@@ -2061,11 +2090,17 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
2061 |
<a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
|
2062 |
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
|
2063 |
</a>
|
|
|
|
|
|
|
|
|
|
|
2064 |
<?php } else { ?>
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
<?php }
|
|
|
2069 |
</p>
|
2070 |
<?php if ( 1 == $gllr_options["image_text"] ) { ?>
|
2071 |
<div <?php if ( $width ) echo 'style="width:' . ( $width + $border_images ) . 'px;"'; ?> class="gllr_single_image_text"><?php echo $image_text; ?> </div>
|
@@ -2257,7 +2292,7 @@ if ( ! function_exists ( 'gllr_wp_generate_attachment_metadata' ) ) {
|
|
2257 |
else
|
2258 |
$sizes[ $s ]['height'] = get_option( "{$s}_size_h" ); /* For default sizes set in options */
|
2259 |
if ( isset( $_wp_additional_image_sizes[ $s ]['crop'] ) )
|
2260 |
-
$sizes[ $s ]['crop'] = intval( $_wp_additional_image_sizes[$s]['crop'] ); /* For theme-added sizes */
|
2261 |
else
|
2262 |
$sizes[ $s ]['crop'] = get_option( "{$s}_crop" ); /* For default sizes set in options */
|
2263 |
}
|
@@ -2265,7 +2300,7 @@ if ( ! function_exists ( 'gllr_wp_generate_attachment_metadata' ) ) {
|
|
2265 |
foreach ( $sizes as $size => $size_data ) {
|
2266 |
$resized = gllr_image_make_intermediate_size( $file, $size_data['width'], $size_data['height'], $size_data['crop'] );
|
2267 |
if ( $resized )
|
2268 |
-
$metadata['sizes'][$size] = $resized;
|
2269 |
}
|
2270 |
/* Fetch additional metadata from exif/iptc */
|
2271 |
$image_meta = wp_read_image_metadata( $file );
|
@@ -2320,7 +2355,7 @@ if ( ! function_exists ( 'gllr_image_resize' ) ) {
|
|
2320 |
/*$size = @getimagesize( $file );*/
|
2321 |
list( $orig_w, $orig_h, $orig_type ) = $size;
|
2322 |
|
2323 |
-
$dims = gllr_image_resize_dimensions($orig_w, $orig_h, $max_w, $max_h, $crop);
|
2324 |
|
2325 |
if ( ! $dims )
|
2326 |
return new WP_Error( 'error_getting_dimensions', __( 'Image size not defined', 'gallery-plugin' ) );
|
@@ -2341,7 +2376,7 @@ if ( ! function_exists ( 'gllr_image_resize' ) ) {
|
|
2341 |
if ( ! $suffix )
|
2342 |
$suffix = "{$dst_w}x{$dst_h}";
|
2343 |
|
2344 |
-
$info = pathinfo($file);
|
2345 |
$dir = $info['dirname'];
|
2346 |
$ext = $info['extension'];
|
2347 |
$name = wp_basename( $file, ".$ext" );
|
@@ -2365,7 +2400,7 @@ if ( ! function_exists ( 'gllr_image_resize' ) ) {
|
|
2365 |
imagedestroy( $newimage );
|
2366 |
|
2367 |
/* Set correct file permissions */
|
2368 |
-
$stat = stat( dirname( $destfilename ));
|
2369 |
$perms = $stat['mode'] & 0000666; /* Same permissions as parent folder, strip off the executable bits */
|
2370 |
@chmod( $destfilename, $perms );
|
2371 |
return $destfilename;
|
@@ -2412,7 +2447,7 @@ if ( ! function_exists ( 'gllr_image_resize_dimensions' ) ) {
|
|
2412 |
return false;
|
2413 |
/* The return array matches the parameters to imagecopyresampled() */
|
2414 |
/* Int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h */
|
2415 |
-
return array( 0, 0, (int) $s_x, (int) $s_y, (int) $new_w, (int) $new_h, (int) $crop_w, (int) $crop_h );
|
2416 |
}
|
2417 |
}
|
2418 |
|
@@ -2439,7 +2474,6 @@ if ( ! function_exists( 'gllr_media_custom_box' ) ) {
|
|
2439 |
}
|
2440 |
|
2441 |
if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
2442 |
-
|
2443 |
if ( ! class_exists( 'WP_List_Table' ) )
|
2444 |
require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
|
2445 |
if ( ! class_exists( 'WP_Media_List_Table' ) )
|
@@ -2609,7 +2643,7 @@ if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
2609 |
public function views() {
|
2610 |
global $gllr_mode, $original_post; ?>
|
2611 |
<div class="gllr-wp-filter hide-if-no-js">
|
2612 |
-
<?php if (
|
2613 |
<a href="#" class="button media-button gllr-media-bulk-select-button hide-if-no-js"><?php _e( 'Bulk Select', 'gallery-plugin' ); ?></a>
|
2614 |
<a href="#" class="button media-button gllr-media-bulk-cansel-select-button hide-if-no-js"><?php _e( 'Cancel Selection', 'gallery-plugin' ); ?></a>
|
2615 |
<a href="#" class="button media-button button-primary gllr-media-bulk-delete-selected-button hide-if-no-js" disabled="disabled"><?php _e( 'Delete Selected', 'gallery-plugin' ); ?></a>
|
@@ -2692,7 +2726,7 @@ if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
2692 |
gllr_settings();
|
2693 |
|
2694 |
$attachment_metadata = wp_get_attachment_metadata( $post->ID );
|
2695 |
-
if (
|
2696 |
$image_attributes = wp_get_attachment_image_src( $post->ID, 'medium' ); ?>
|
2697 |
<li tabindex="0" id="post-<?php echo $post->ID; ?>" class="gllr-media-attachment">
|
2698 |
<div class="gllr-media-attachment-preview">
|
@@ -2703,6 +2737,8 @@ if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
2703 |
</div>
|
2704 |
</div>
|
2705 |
<div class="gllr-media-attachment-details">
|
|
|
|
|
2706 |
<?php the_title(); ?>
|
2707 |
</div>
|
2708 |
</div>
|
@@ -3036,7 +3072,7 @@ if ( ! function_exists( 'gllr_delete_image' ) ) {
|
|
3036 |
$delete_id_array = isset( $_POST['delete_id_array'] ) ? $_POST['delete_id_array'] : "";
|
3037 |
$post_id = $_POST['post_id'];
|
3038 |
|
3039 |
-
if (
|
3040 |
if ( is_array( $delete_id_array ) )
|
3041 |
$delete_id = explode( ',', trim( $delete_id_array, ',' ) );
|
3042 |
else
|
@@ -3158,6 +3194,8 @@ if ( ! function_exists( 'gllr_shortcode_button_content' ) ) {
|
|
3158 |
$query = new WP_Query( 'post_type=' . $gllr_options['post_type_name'] . '&post_status=publish&posts_per_page=-1&order=DESC&orderby=date' );
|
3159 |
if ( $query->have_posts() ) { ?>
|
3160 |
<label>
|
|
|
|
|
3161 |
<?php $cat_args = array(
|
3162 |
'orderby' => 'date',
|
3163 |
'order' => 'DESC',
|
@@ -3168,10 +3206,24 @@ if ( ! function_exists( 'gllr_shortcode_button_content' ) ) {
|
|
3168 |
'id' => 'gllr_gallery_categories'
|
3169 |
);
|
3170 |
wp_dropdown_categories( apply_filters( 'widget_categories_dropdown_args', $cat_args ) ); ?>
|
3171 |
-
<span class="title"><?php _e( 'Gallery Categories', 'gallery-plugin' ); ?></span>
|
3172 |
</label><br/>
|
3173 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3174 |
<label>
|
|
|
|
|
3175 |
<select name="gllr_list" id="gllr_shortcode_list" style="max-width: 350px;">
|
3176 |
<?php while ( $query->have_posts() ) {
|
3177 |
$query->the_post();
|
@@ -3184,9 +3236,8 @@ if ( ! function_exists( 'gllr_shortcode_button_content' ) ) {
|
|
3184 |
wp_reset_postdata();
|
3185 |
$post = $old_post; ?>
|
3186 |
</select>
|
3187 |
-
<span class="title"><?php _e( 'Gallery', 'gallery-plugin' ); ?></span>
|
3188 |
</label><br/>
|
3189 |
-
<label>
|
3190 |
<input type="checkbox" value="1" name="gllr_display_short" id="gllr_display_short" />
|
3191 |
<span class="checkbox-title">
|
3192 |
<?php _e( 'Display an album image with the description and the link to a single gallery page', 'gallery-plugin' ); ?>
|
@@ -3202,20 +3253,38 @@ if ( ! function_exists( 'gllr_shortcode_button_content' ) ) {
|
|
3202 |
<script type="text/javascript">
|
3203 |
function gllr_shortcode_init() {
|
3204 |
(function($) {
|
3205 |
-
$( '.mce-reset #gllr_shortcode_list, .mce-reset #
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3217 |
$( '.mce-reset #bws_shortcode_display' ).text( shortcode );
|
3218 |
-
});
|
3219 |
})(jQuery);
|
3220 |
}
|
3221 |
</script>
|
@@ -3244,8 +3313,7 @@ if ( ! function_exists ( 'gllr_admin_notices' ) ) {
|
|
3244 |
function gllr_admin_notices() {
|
3245 |
global $hook_suffix, $gllr_plugin_info, $gllr_BWS_demo_data, $gllr_options;
|
3246 |
|
3247 |
-
|
3248 |
-
if ( 'plugins.php' == $hook_suffix || ( isset( $_GET['page'] ) && $_GET['page'] == 'gallery-plugin.php' ) ) {
|
3249 |
|
3250 |
if ( ! $gllr_BWS_demo_data )
|
3251 |
gllr_include_demo_data();
|
@@ -3346,6 +3414,11 @@ add_action( 'pre_get_posts', 'gllr_manage_pre_get_posts', 1 );
|
|
3346 |
|
3347 |
add_action( 'widgets_init', 'gllr_register_widget' );
|
3348 |
|
|
|
|
|
|
|
|
|
|
|
3349 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
3350 |
add_action( 'wp_head', 'gllr_wp_head' );
|
3351 |
add_action( 'wp_footer', 'gllr_wp_footer' );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: gallery-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 4.5.5
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
105 |
/* Add media button to the gallery post type */
|
106 |
if (
|
107 |
( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) == $gllr_options['post_type_name'] ) ||
|
108 |
+
( 'post-new.php' ==$pagenow && isset( $_GET['post_type'] ) && $_GET['post_type'] == $gllr_options['post_type_name'] )
|
109 |
) {
|
110 |
add_action( 'edit_form_after_title', 'gllr_media_custom_box' );
|
111 |
}
|
112 |
|
113 |
/* demo data */
|
114 |
$demo_options = get_option( 'gllr_demo_options' );
|
115 |
+
if ( ! empty( $demo_options ) || ( isset( $_GET['page'] ) && 'gallery-plugin.php' == $_GET['page'] ) ) {
|
116 |
gllr_include_demo_data();
|
117 |
}
|
118 |
}
|
164 |
/* Get options from the database */
|
165 |
$gllr_options = get_option( 'gllr_options' );
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
/* Array merge incase this version has added new options */
|
168 |
+
if ( isset( $gllr_options['plugin_option_version'] ) && $gllr_options['plugin_option_version'] != $gllr_plugin_info["Version"] ) {
|
169 |
|
170 |
$option_defaults = gllr_get_options_default();
|
171 |
|
174 |
$gllr_options = array_merge( $option_defaults, $gllr_options );
|
175 |
$gllr_options['plugin_option_version'] = $gllr_plugin_info["Version"];
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
/* show pro features */
|
178 |
$gllr_options['hide_premium_options'] = array();
|
179 |
|
230 |
'cover_border_images_width' => 10,
|
231 |
'cover_border_images_color' => '#F1F1F1',
|
232 |
'album_order_by' => 'date',
|
233 |
+
'album_order_by_category_option' => 'default',
|
234 |
+
'album_order_by_shortcode_option' => 'default',
|
235 |
'album_order' => 'DESC',
|
236 |
'read_more_link_text' => __( 'See images »', 'gallery-plugin' ),
|
237 |
/* lightbox */
|
238 |
'enable_lightbox' => 1,
|
239 |
+
'enable_image_opening' => 0,
|
240 |
'start_slideshow' => 0,
|
241 |
'slideshow_interval' => 2000,
|
242 |
'lightbox_download_link' => 0,
|
473 |
update_post_meta( $post->ID, '_gallery_images', implode( ',', array_keys( $_POST['_gallery_order_' . $post->ID ] ) ) );
|
474 |
}
|
475 |
|
476 |
+
if ( ( isset( $_POST['action-top'] ) && 'delete' == $_POST['action-top'] ) ||
|
477 |
+
( isset( $_POST['action-bottom'] ) && 'delete' == $_POST['action-bottom'] ) ) {
|
478 |
$gallery_images = get_post_meta( $post_id, '_gallery_images', true );
|
479 |
$gallery_images_array = explode( ',', $gallery_images );
|
480 |
$gallery_images_array = array_flip( $gallery_images_array );
|
573 |
}
|
574 |
}
|
575 |
|
576 |
+
if ( ! function_exists( 'gllr_additive_field_in_category' ) ) {
|
577 |
+
function gllr_additive_field_in_category() {
|
578 |
+
global $gllr_options, $gllr_plugin_info; ?>
|
579 |
+
<tr valign="top">
|
580 |
+
<th scope="row"><?php _e( 'Sort Galleries in Category by', 'gallery-plugin' ); ?></th>
|
581 |
+
<td>
|
582 |
+
<select name="album_order_by_category_option">
|
583 |
+
<option value="ID" <?php selected( 'ID', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Gallery ID', 'gallery-plugin' ); ?></option>
|
584 |
+
<option value="title" <?php selected( 'title', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Title', 'gallery-plugin' ); ?></option>
|
585 |
+
<option value="date" <?php selected( 'date', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Date', 'gallery-plugin' ); ?></option>
|
586 |
+
<option value="modified" <?php selected( 'modified', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Last modified date', 'gallery-plugin' ); ?></option>
|
587 |
+
<option value="comment_count" <?php selected( 'comment_count', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Comment count', 'gallery-plugin' ); ?></option>
|
588 |
+
<option value="menu_order" <?php selected( 'menu_order', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( '"Order" field on the gallery edit page', 'gallery-plugin' ); ?></option>
|
589 |
+
<option value="author" <?php selected( 'author', $gllr_options["album_order_by_category_option"] ); ?>><?php _e( 'Author', 'gallery-plugin' ); ?></option>
|
590 |
+
<option value="rand" <?php selected( 'rand', $gllr_options["album_order_by_category_option"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_album_order"><?php _e( 'Random', 'gallery-plugin' ); ?></option>
|
591 |
+
<option value="default" <?php selected( 'default', $gllr_options["album_order_by_category_option"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_album_order"><?php _e( 'Plugin Settings', 'gallery-plugin' ); ?></option>
|
592 |
+
</select>
|
593 |
+
<div class="bws_info"><?php _e( 'Select galleries sorting order in your category.', 'gallery-plugin' ); ?></div>
|
594 |
+
</td>
|
595 |
+
</tr>
|
596 |
+
<?php }
|
597 |
+
}
|
598 |
+
|
599 |
+
if ( ! function_exists( 'gllr_save_caegory_additive_field' ) ) {
|
600 |
+
function gllr_save_caegory_additive_field() {
|
601 |
+
global $gllr_options, $gllr_plugin_info;
|
602 |
+
$gllr_options["album_order_by_category_option"] = esc_attr( $_POST['album_order_by_category_option'] );
|
603 |
+
update_option( 'gllr_options', $gllr_options );
|
604 |
+
}
|
605 |
+
}
|
606 |
+
|
607 |
/**
|
608 |
* Function for adding column in taxonomy
|
609 |
*
|
621 |
*/
|
622 |
if ( ! function_exists( 'gllr_fill_column' ) ) {
|
623 |
function gllr_fill_column( $out, $column, $id ) {
|
624 |
+
if ( 'shortcode' == $column ) {
|
625 |
$out = bws_shortcode_output( '[print_gllr cat_id=' . $id . ']' );
|
626 |
}
|
627 |
return $out;
|
1031 |
"post_mime_type" => "image/jpeg,image/gif,image/jpg,image/png",
|
1032 |
'post__in' => explode( ',', $images_id ),
|
1033 |
'meta_key' => '_gallery_order_' . $post->ID
|
1034 |
+
) );
|
1035 |
if ( count( $posts ) > 0 ) {
|
1036 |
$count_image_block = 0; ?>
|
1037 |
<div class="gallery clearfix gllr_grid" data-gllr-columns="<?php echo $gllr_options["custom_image_row_count"]; ?>" data-gllr-border-width="<?php echo $gllr_options['border_images_width']; ?>">
|
1059 |
<a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
|
1060 |
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
|
1061 |
</a>
|
1062 |
+
<?php } else {
|
1063 |
+
if( ! $gllr_options['enable_image_opening'] == 1 ) { ?>
|
1064 |
+
<a data-fancybox="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo $image_text; ?>" >
|
1065 |
+
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
|
1066 |
+
</a>
|
1067 |
+
<?php } else { ?>
|
1068 |
+
<a data-fancybox="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="#" style="pointer-events: none;" title="<?php echo $image_text; ?>" >
|
1069 |
+
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" rel="#" />
|
1070 |
+
</a>
|
1071 |
+
<?php }
|
1072 |
+
} ?>
|
1073 |
</p>
|
1074 |
<?php if ( 1 == $gllr_options["image_text"] ) { ?>
|
1075 |
<div <?php if ( $width ) echo 'style="width:' . ( $width + $border_images ) . 'px;"'; ?> class="gllr_single_image_text"><?php echo $image_text; ?> </div>
|
1296 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1297 |
'post__in' => explode( ',', $images_id ),
|
1298 |
'meta_key' => '_gallery_order_' . $post->ID
|
1299 |
+
) );
|
1300 |
if ( ! empty( $attachments[0] ) ) {
|
1301 |
$first_attachment = $attachments[0];
|
1302 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
1453 |
);
|
1454 |
$second_query = new WP_Query( $args );
|
1455 |
|
1456 |
+
if ( 'short' == $display ) {
|
1457 |
if ( $second_query->have_posts() ) {
|
1458 |
$second_query->the_post();
|
1459 |
$attachments = get_post_thumbnail_id( $post->ID );
|
1469 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1470 |
'post__in' => explode( ',', $images_id ),
|
1471 |
'meta_key' => '_gallery_order_' . $post->ID
|
1472 |
+
) );
|
1473 |
if ( ! empty( $attachments[0] ) ) {
|
1474 |
$first_attachment = $attachments[0];
|
1475 |
$image_attributes_featured = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
1784 |
'img_error' => __( 'Error.', 'gallery-plugin' )
|
1785 |
) );
|
1786 |
} else if (
|
1787 |
+
( 'post.php' == $pagenow && isset( $_GET['action'] ) && 'edit' == $_GET['action'] && get_post_type( get_the_ID() ) == $gllr_options['post_type_name'] ) ||
|
1788 |
+
( 'post-new.php' == $pagenow && isset( $_GET['post_type'] ) && $_GET['post_type'] == $gllr_options['post_type_name'] ) ) {
|
1789 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
1790 |
bws_enqueue_settings_scripts();
|
1791 |
wp_enqueue_script( 'gllr_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
|
1868 |
if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
1869 |
function gllr_shortcode( $attr ) {
|
1870 |
global $gllr_options, $gllr_vars_for_inline_script;
|
|
|
1871 |
wp_register_script( 'gllr_js', plugins_url( 'js/frontend_script.js', __FILE__ ), array( 'jquery' ) );
|
1872 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1873 |
extract( shortcode_atts( array(
|
1874 |
'id' => '',
|
1875 |
'display' => 'full',
|
1876 |
+
'cat_id' => '',
|
1877 |
+
'sort_by' => ''
|
1878 |
), $attr )
|
1879 |
);
|
1880 |
ob_start();
|
1881 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
1882 |
|
1883 |
+
$galleries_order =
|
1884 |
+
( ! empty( $sort_by ) && 'default' != $sort_by )
|
1885 |
+
?
|
1886 |
+
$sort_by
|
1887 |
+
: (
|
1888 |
+
( ! empty( $gllr_options['album_order_by_category_option'] ) && 'default' != $gllr_options['album_order_by_category_option'] )
|
1889 |
+
?
|
1890 |
+
$gllr_options['album_order_by_category_option']
|
1891 |
+
:
|
1892 |
+
$gllr_options['album_order_by']
|
1893 |
+
);
|
1894 |
+
|
1895 |
if ( ! empty( $cat_id ) ) {
|
1896 |
global $post, $wp_query;
|
1897 |
|
1905 |
'post_status' => 'publish',
|
1906 |
'posts_per_page' => -1,
|
1907 |
'gallery_categories'=> $term->slug,
|
1908 |
+
'orderby' => $galleries_order,
|
1909 |
'order' => $gllr_options['album_order']
|
1910 |
);
|
1911 |
$second_query = new WP_Query( $args ); ?>
|
1940 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
1941 |
'post__in' => explode( ',', $images_id ),
|
1942 |
'meta_key' => '_gallery_order_' . $post->ID
|
1943 |
+
) );
|
1944 |
if ( ! empty( $attachments[0] ) ) {
|
1945 |
$first_attachment = $attachments[0];
|
1946 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
1978 |
'posts_per_page' => 1
|
1979 |
);
|
1980 |
$second_query = new WP_Query( $args );
|
1981 |
+
if ( 'short' == $display ) { ?>
|
1982 |
<div class="gallery_box">
|
1983 |
<ul>
|
1984 |
<?php if ( $second_query->have_posts() ) {
|
2005 |
'post_mime_type' => 'image/jpeg,image/gif,image/jpg,image/png',
|
2006 |
'post__in' => explode( ',', $images_id ),
|
2007 |
'meta_key' => '_gallery_order_' . $post->ID
|
2008 |
+
) );
|
2009 |
if ( ! empty( $attachments[0] ) ) {
|
2010 |
$first_attachment = $attachments[0];
|
2011 |
$image_attributes = wp_get_attachment_image_src( $first_attachment->ID, $gllr_options['image_size_album'] );
|
2068 |
"post_mime_type" => "image/jpeg,image/gif,image/jpg,image/png",
|
2069 |
'post__in' => explode( ',', $images_id ),
|
2070 |
'meta_key' => '_gallery_order_' . $post->ID
|
2071 |
+
) );
|
2072 |
|
2073 |
if ( 0 < count( $posts ) ) {
|
2074 |
$count_image_block = 0; ?>
|
2090 |
<a href="<?php echo $url_for_link; ?>" title="<?php echo $image_text; ?>" target="_blank">
|
2091 |
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" />
|
2092 |
</a>
|
2093 |
+
<?php } else {
|
2094 |
+
if( ! $gllr_options['enable_image_opening'] == 1 ) { ?>
|
2095 |
+
<a data-fancybox="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo $image_text; ?>" >
|
2096 |
+
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" />
|
2097 |
+
</a>
|
2098 |
<?php } else { ?>
|
2099 |
+
<a data-fancybox="gallery_fancybox<?php if ( 0 == $gllr_options['single_lightbox_for_multiple_galleries'] ) echo '_' . $post->ID; ?>" href="#" style="pointer-events: none;" title="<?php echo $image_text; ?>" >
|
2100 |
+
<img <?php if ( $width ) echo 'width="' . $width . '"'; if ( $height ) echo 'height="' . $height . '"'; ?> style="<?php if ( $width ) echo 'width:' . $width . 'px;'; if ( $height ) echo 'height:' . $height . 'px;'; echo $border; ?>" alt="<?php echo $image_alt_tag; ?>" title="<?php echo $image_text; ?>" src="<?php echo $image_attributes[0]; ?>" rel="#" />
|
2101 |
+
</a>
|
2102 |
+
<?php }
|
2103 |
+
} ?>
|
2104 |
</p>
|
2105 |
<?php if ( 1 == $gllr_options["image_text"] ) { ?>
|
2106 |
<div <?php if ( $width ) echo 'style="width:' . ( $width + $border_images ) . 'px;"'; ?> class="gllr_single_image_text"><?php echo $image_text; ?> </div>
|
2292 |
else
|
2293 |
$sizes[ $s ]['height'] = get_option( "{$s}_size_h" ); /* For default sizes set in options */
|
2294 |
if ( isset( $_wp_additional_image_sizes[ $s ]['crop'] ) )
|
2295 |
+
$sizes[ $s ]['crop'] = intval( $_wp_additional_image_sizes[ $s ]['crop'] ); /* For theme-added sizes */
|
2296 |
else
|
2297 |
$sizes[ $s ]['crop'] = get_option( "{$s}_crop" ); /* For default sizes set in options */
|
2298 |
}
|
2300 |
foreach ( $sizes as $size => $size_data ) {
|
2301 |
$resized = gllr_image_make_intermediate_size( $file, $size_data['width'], $size_data['height'], $size_data['crop'] );
|
2302 |
if ( $resized )
|
2303 |
+
$metadata['sizes'][ $size ] = $resized;
|
2304 |
}
|
2305 |
/* Fetch additional metadata from exif/iptc */
|
2306 |
$image_meta = wp_read_image_metadata( $file );
|
2355 |
/*$size = @getimagesize( $file );*/
|
2356 |
list( $orig_w, $orig_h, $orig_type ) = $size;
|
2357 |
|
2358 |
+
$dims = gllr_image_resize_dimensions( $orig_w, $orig_h, $max_w, $max_h, $crop );
|
2359 |
|
2360 |
if ( ! $dims )
|
2361 |
return new WP_Error( 'error_getting_dimensions', __( 'Image size not defined', 'gallery-plugin' ) );
|
2376 |
if ( ! $suffix )
|
2377 |
$suffix = "{$dst_w}x{$dst_h}";
|
2378 |
|
2379 |
+
$info = pathinfo( $file );
|
2380 |
$dir = $info['dirname'];
|
2381 |
$ext = $info['extension'];
|
2382 |
$name = wp_basename( $file, ".$ext" );
|
2400 |
imagedestroy( $newimage );
|
2401 |
|
2402 |
/* Set correct file permissions */
|
2403 |
+
$stat = stat( dirname( $destfilename ) );
|
2404 |
$perms = $stat['mode'] & 0000666; /* Same permissions as parent folder, strip off the executable bits */
|
2405 |
@chmod( $destfilename, $perms );
|
2406 |
return $destfilename;
|
2447 |
return false;
|
2448 |
/* The return array matches the parameters to imagecopyresampled() */
|
2449 |
/* Int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h */
|
2450 |
+
return array( 0, 0, ( int ) $s_x, ( int ) $s_y, ( int ) $new_w, ( int ) $new_h, ( int ) $crop_w, ( int ) $crop_h );
|
2451 |
}
|
2452 |
}
|
2453 |
|
2474 |
}
|
2475 |
|
2476 |
if ( ! class_exists( 'Gllr_Media_Table' ) ) {
|
|
|
2477 |
if ( ! class_exists( 'WP_List_Table' ) )
|
2478 |
require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
|
2479 |
if ( ! class_exists( 'WP_Media_List_Table' ) )
|
2643 |
public function views() {
|
2644 |
global $gllr_mode, $original_post; ?>
|
2645 |
<div class="gllr-wp-filter hide-if-no-js">
|
2646 |
+
<?php if ( 'grid' == $gllr_mode ) { ?>
|
2647 |
<a href="#" class="button media-button gllr-media-bulk-select-button hide-if-no-js"><?php _e( 'Bulk Select', 'gallery-plugin' ); ?></a>
|
2648 |
<a href="#" class="button media-button gllr-media-bulk-cansel-select-button hide-if-no-js"><?php _e( 'Cancel Selection', 'gallery-plugin' ); ?></a>
|
2649 |
<a href="#" class="button media-button button-primary gllr-media-bulk-delete-selected-button hide-if-no-js" disabled="disabled"><?php _e( 'Delete Selected', 'gallery-plugin' ); ?></a>
|
2726 |
gllr_settings();
|
2727 |
|
2728 |
$attachment_metadata = wp_get_attachment_metadata( $post->ID );
|
2729 |
+
if ( 'grid' == $gllr_mode ) {
|
2730 |
$image_attributes = wp_get_attachment_image_src( $post->ID, 'medium' ); ?>
|
2731 |
<li tabindex="0" id="post-<?php echo $post->ID; ?>" class="gllr-media-attachment">
|
2732 |
<div class="gllr-media-attachment-preview">
|
2737 |
</div>
|
2738 |
</div>
|
2739 |
<div class="gllr-media-attachment-details">
|
2740 |
+
<strong><?php echo get_post_meta( $post->ID, 'gllr_image_text', true ); ?></strong>
|
2741 |
+
<br />
|
2742 |
<?php the_title(); ?>
|
2743 |
</div>
|
2744 |
</div>
|
3072 |
$delete_id_array = isset( $_POST['delete_id_array'] ) ? $_POST['delete_id_array'] : "";
|
3073 |
$post_id = $_POST['post_id'];
|
3074 |
|
3075 |
+
if ( 'gllr_delete_image' == $action && ! empty( $delete_id_array ) && ! empty( $post_id ) ) {
|
3076 |
if ( is_array( $delete_id_array ) )
|
3077 |
$delete_id = explode( ',', trim( $delete_id_array, ',' ) );
|
3078 |
else
|
3194 |
$query = new WP_Query( 'post_type=' . $gllr_options['post_type_name'] . '&post_status=publish&posts_per_page=-1&order=DESC&orderby=date' );
|
3195 |
if ( $query->have_posts() ) { ?>
|
3196 |
<label>
|
3197 |
+
<input name="gllr_shortcode_radio" class="gllr_shortcode_radio_category" type="radio"/>
|
3198 |
+
<span class="title"><?php _e( 'Gallery Categories', 'gallery-plugin' ); ?></span>
|
3199 |
<?php $cat_args = array(
|
3200 |
'orderby' => 'date',
|
3201 |
'order' => 'DESC',
|
3206 |
'id' => 'gllr_gallery_categories'
|
3207 |
);
|
3208 |
wp_dropdown_categories( apply_filters( 'widget_categories_dropdown_args', $cat_args ) ); ?>
|
|
|
3209 |
</label><br/>
|
3210 |
+
<label class="gllr_shortcode_selectbox">
|
3211 |
+
<select name="album_order_by_shortcode_option" id="gllr_album_order_by_shortcode_option">
|
3212 |
+
<option value="ID" <?php selected( 'ID', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Gallery ID', 'gallery-plugin' ); ?></option>
|
3213 |
+
<option value="title" <?php selected( 'title', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Title', 'gallery-plugin' ); ?></option>
|
3214 |
+
<option value="date" <?php selected( 'date', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Date', 'gallery-plugin' ); ?></option>
|
3215 |
+
<option value="modified" <?php selected( 'modified', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Last modified date', 'gallery-plugin' ); ?></option>
|
3216 |
+
<option value="comment_count" <?php selected( 'comment_count', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Comment count', 'gallery-plugin' ); ?></option>
|
3217 |
+
<option value="menu_order" <?php selected( 'menu_order', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( '"Order" field on the gallery edit page', 'gallery-plugin' ); ?></option>
|
3218 |
+
<option value="author" <?php selected( 'author', $gllr_options["album_order_by_shortcode_option"] ); ?>><?php _e( 'Author', 'gallery-plugin' ); ?></option>
|
3219 |
+
<option value="rand" <?php selected( 'rand', $gllr_options["album_order_by_shortcode_option"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_album_order"><?php _e( 'Random', 'gallery-plugin' ); ?></option>
|
3220 |
+
<option value="default" <?php selected( 'default', $gllr_options["album_order_by_shortcode_option"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_album_order"><?php _e( 'Plugin Settings', 'gallery-plugin' ); ?></option>
|
3221 |
+
</select>
|
3222 |
+
<div class="bws_info"><?php _e( 'Select galleries sorting order in your category.', 'gallery-plugin' ); ?></div>
|
3223 |
+
</label>
|
3224 |
<label>
|
3225 |
+
<input name="gllr_shortcode_radio" class="gllr_shortcode_radio_single" type="radio" checked/>
|
3226 |
+
<span class="title"><?php _e( 'Gallery', 'gallery-plugin' ); ?></span>
|
3227 |
<select name="gllr_list" id="gllr_shortcode_list" style="max-width: 350px;">
|
3228 |
<?php while ( $query->have_posts() ) {
|
3229 |
$query->the_post();
|
3236 |
wp_reset_postdata();
|
3237 |
$post = $old_post; ?>
|
3238 |
</select>
|
|
|
3239 |
</label><br/>
|
3240 |
+
<label class="gllr_shortcode_checkbox">
|
3241 |
<input type="checkbox" value="1" name="gllr_display_short" id="gllr_display_short" />
|
3242 |
<span class="checkbox-title">
|
3243 |
<?php _e( 'Display an album image with the description and the link to a single gallery page', 'gallery-plugin' ); ?>
|
3253 |
<script type="text/javascript">
|
3254 |
function gllr_shortcode_init() {
|
3255 |
(function($) {
|
3256 |
+
$( '.mce-reset input[name="gllr_shortcode_radio"], .mce-reset #gllr_display_short, .mce-reset #gllr_album_order_by_shortcode_option, .mce-reset #gllr_shortcode_list, .mce-reset #gllr_gallery_categories' ).on( 'change', function() {
|
3257 |
+
if ( $( '.mce-reset #gllr_shortcode_list' ).is( ":focus" ) ) {
|
3258 |
+
$( '.mce-reset input[class="gllr_shortcode_radio_single"]' ).prop( 'checked', true );
|
3259 |
+
} else if ( $( '.mce-reset #gllr_gallery_categories' ).is( ":focus" ) ) {
|
3260 |
+
$( '.mce-reset input[class=gllr_shortcode_radio_category]' ).prop( 'checked', true );
|
3261 |
+
}
|
3262 |
+
var shortcode = '[print_gllr ',
|
3263 |
+
id = '',
|
3264 |
+
sort_by = '';
|
3265 |
+
if( $( '.mce-reset input[class=gllr_shortcode_radio_category]' ).is( ':checked' ) ) {
|
3266 |
+
id = 'gllr_gallery_categories';
|
3267 |
+
shortcode += 'cat_id=';
|
3268 |
+
$( '.gllr_shortcode_checkbox' ).hide();
|
3269 |
+
$( '.gllr_shortcode_selectbox' ).show();
|
3270 |
+
} else if ( $( '.mce-reset input[class="gllr_shortcode_radio_single"]' ).is( ':checked' ) ) {
|
3271 |
+
id = 'gllr_shortcode_list';
|
3272 |
+
shortcode += 'id=';
|
3273 |
+
$( '.gllr_shortcode_checkbox' ).show();
|
3274 |
+
$( '.gllr_shortcode_selectbox' ).hide();
|
3275 |
+
}
|
3276 |
+
var gllr_list = $( '.mce-reset #' + id + ' option:selected' ).val();
|
3277 |
+
shortcode += gllr_list;
|
3278 |
+
if ( $( '.mce-reset #gllr_display_short' ).is( ':checked' ) && $( '.mce-reset input[class="gllr_shortcode_radio_single"]' ).is( ':checked' ) ) {
|
3279 |
+
shortcode += ' display=short';
|
3280 |
+
}
|
3281 |
+
if ( $( '.mce-reset input[class="gllr_shortcode_radio_category"]' ).is( ':checked' ) ) {
|
3282 |
+
sort_by = ' sort_by=' + $( '.mce-reset #gllr_album_order_by_shortcode_option option:selected' ).val();
|
3283 |
+
}
|
3284 |
+
shortcode += sort_by;
|
3285 |
+
shortcode += ']';
|
3286 |
$( '.mce-reset #bws_shortcode_display' ).text( shortcode );
|
3287 |
+
} ).trigger( 'change' );
|
3288 |
})(jQuery);
|
3289 |
}
|
3290 |
</script>
|
3313 |
function gllr_admin_notices() {
|
3314 |
global $hook_suffix, $gllr_plugin_info, $gllr_BWS_demo_data, $gllr_options;
|
3315 |
|
3316 |
+
if ( 'plugins.php' == $hook_suffix || ( isset( $_GET['page'] ) && 'gallery-plugin.php' == $_GET['page'] ) ) {
|
|
|
3317 |
|
3318 |
if ( ! $gllr_BWS_demo_data )
|
3319 |
gllr_include_demo_data();
|
3414 |
|
3415 |
add_action( 'widgets_init', 'gllr_register_widget' );
|
3416 |
|
3417 |
+
add_action( 'gallery_categories_add_form_fields', 'gllr_additive_field_in_category', 10, 2 );
|
3418 |
+
add_action( 'gallery_categories_edit_form_fields', 'gllr_additive_field_in_category', 10, 2 );
|
3419 |
+
add_action( 'edited_gallery_categories', 'gllr_save_caegory_additive_field', 10, 2 );
|
3420 |
+
add_action( 'create_gallery_categories', 'gllr_save_caegory_additive_field', 10, 2 );
|
3421 |
+
|
3422 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
3423 |
add_action( 'wp_head', 'gllr_wp_head' );
|
3424 |
add_action( 'wp_footer', 'gllr_wp_footer' );
|
includes/class-gllr-settings.php
CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
63 |
|
64 |
$wp_sizes = get_intermediate_image_sizes();
|
65 |
|
66 |
-
foreach ( (array) $wp_sizes as $size ) {
|
67 |
if ( ! array_key_exists( $size, $gllr_options['custom_size_px'] ) ) {
|
68 |
if ( isset( $_wp_additional_image_sizes[ $size ] ) ) {
|
69 |
$width = absint( $_wp_additional_image_sizes[ $size ]['width'] );
|
@@ -91,7 +91,6 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
91 |
|
92 |
$this->cstmsrch_options = get_option( 'cstmsrch_options' );
|
93 |
|
94 |
-
|
95 |
add_action( get_parent_class( $this ) . '_display_custom_messages', array( $this, 'display_custom_messages' ) );
|
96 |
add_action( get_parent_class( $this ) . '_additional_misc_options_affected', array( $this, 'additional_misc_options_affected' ) );
|
97 |
add_action( get_parent_class( $this ) . '_additional_import_export_options', array( $this, 'additional_import_export_options' ) );
|
@@ -183,6 +182,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
183 |
|
184 |
/* Lightbox Tab */
|
185 |
$this->options["enable_lightbox"] = ( isset( $_POST['gllr_enable_lightbox'] ) ) ? 1 : 0;
|
|
|
186 |
$this->options["start_slideshow"] = ( isset( $_POST['gllr_start_slideshow'] ) ) ? 1 : 0;
|
187 |
$this->options["slideshow_interval"] = empty( $_POST['gllr_slideshow_interval'] ) ? 2000 : intval( $_POST['gllr_slideshow_interval'] );
|
188 |
$this->options["lightbox_download_link"] = ( isset( $_POST['gllr_lightbox_download_link'] ) ) ? 1 : 0;
|
@@ -214,7 +214,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
214 |
$is_enabled = isset( $_POST['gllr_add_to_search'] ) ? 1 : 0;
|
215 |
$post_type_exist = false;
|
216 |
foreach ( $this->cstmsrch_options['output_order'] as $key => $item ) {
|
217 |
-
if ( $item['name'] == $this->options['post_type_name'] && $item['type']
|
218 |
$post_type_exist = true;
|
219 |
if ( $item['enabled'] != $is_enabled ) {
|
220 |
$this->cstmsrch_options['output_order'][ $key ]['enabled'] = $is_enabled;
|
@@ -289,7 +289,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
289 |
<?php $wp_gallery_media_table->views(); ?>
|
290 |
</div>
|
291 |
<div class="clear"></div>
|
292 |
-
<?php if (
|
293 |
$wp_gallery_media_table->display();
|
294 |
} else { ?>
|
295 |
<div class="error hide-if-js">
|
@@ -528,14 +528,14 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
528 |
<tr valign="top">
|
529 |
<th scope="row"><?php _e( 'Back Link', 'gallery-plugin' ); ?></th>
|
530 |
<td>
|
531 |
-
<input type="checkbox" name="gllr_return_link" value="1" <?php if ( 1 == $this->options["return_link"] ) echo 'checked="checked"'; ?> class="bws_option_affect" data-affect-show=".gllr_for_return_link" /> <span class="bws_info"><?php _e( 'Enable to show a back link in a single gallery page which navigate to a previous page.' , 'gallery-plugin'); ?></span>
|
532 |
</td>
|
533 |
</tr>
|
534 |
<tr valign="top" class="gllr_for_return_link">
|
535 |
<th scope="row"><?php _e( 'Back Link URL', 'gallery-plugin' ); ?></th>
|
536 |
<td>
|
537 |
<input type="text" value="<?php echo $this->options["return_link_url"]; ?>" name="gllr_return_link_url" maxlength="250" />
|
538 |
-
<div class="bws_info"><?php _e( 'Back link custom page URL. Leave blank to use Gallery page template.' , 'gallery-plugin'); ?></div>
|
539 |
</td>
|
540 |
</tr>
|
541 |
<tr valign="top" class="gllr_for_return_link">
|
@@ -548,7 +548,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
548 |
<th scope="row"><?php _e( 'Back Link with Shortcode', 'gallery-plugin' ); ?> </th>
|
549 |
<td>
|
550 |
<input type="checkbox" name="gllr_return_link_shortcode" value="1" <?php if ( 1 == $this->options["return_link_shortcode"] ) echo 'checked="checked"'; ?> />
|
551 |
-
<span class="bws_info"><?php _e( 'Enable to display a back link on a page where shortcode is used.' , 'gallery-plugin'); ?></span>
|
552 |
</td>
|
553 |
</tr>
|
554 |
</table>
|
@@ -572,7 +572,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
572 |
'name' => 'gllr_page_id_gallery_template',
|
573 |
'show_option_none' => '...'
|
574 |
) ); ?>
|
575 |
-
<div class="bws_info"><?php _e( 'Base page where all existing galleries will be displayed.' , 'gallery-plugin'); ?></div>
|
576 |
</td>
|
577 |
</tr>
|
578 |
<tr valign="top">
|
@@ -582,7 +582,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
582 |
<label><input type="radio" name="gllr_layout" value="column" id="gllr_column" <?php checked( 'column' == $this->options["galleries_layout"] ); ?> class="bws_option_affect" data-affect-show=".gllr_column_alignment" /> <?php _e( 'Column', 'gallery-plugin' ); ?></label><br/>
|
583 |
<label><input type="radio" name="gllr_layout" value="rows" id="gllr_rows" <?php checked( 'rows' == $this->options["galleries_layout"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_column_alignment" /> <?php _e( 'Rows', 'gallery-plugin' ); ?></label>
|
584 |
</fieldset>
|
585 |
-
<div class="bws_info"><?php _e( 'Select the way galleries will be displayed on the Galleries Page.' , 'gallery-plugin'); ?></div>
|
586 |
</td>
|
587 |
</tr>
|
588 |
<tr valign="top" class="gllr_column_alignment">
|
@@ -593,7 +593,7 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
593 |
<label><input type="radio" name="gllr_column_align" value="right" <?php checked( 'right' == $this->options["galleries_column_alignment"] ); ?> /> <?php _e( 'Right', 'gallery-plugin' ); ?></label><br/>
|
594 |
<label><input type="radio" name="gllr_column_align" value="center" <?php checked( 'center' == $this->options["galleries_column_alignment"] ); ?> /> <?php _e( 'Center', 'gallery-plugin' ); ?></label>
|
595 |
</fieldset>
|
596 |
-
<div class="bws_info"><?php _e( 'Select the column alignment.' , 'gallery-plugin'); ?></div>
|
597 |
</td>
|
598 |
</tr>
|
599 |
<tr valign="top">
|
@@ -732,6 +732,13 @@ if ( ! class_exists( 'Gllr_Settings_Tabs' ) ) {
|
|
732 |
<hr>
|
733 |
<table class="form-table">
|
734 |
<tr valign="top">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
<th scope="row"><?php _e( 'Enable Lightbox', 'gallery-plugin' ); ?> </th>
|
736 |
<td>
|
737 |
<input type="checkbox" name="gllr_enable_lightbox" <?php if ( 1 == $this->options["enable_lightbox"] ) echo 'checked="checked"'; ?> class="bws_option_affect" data-affect-show=".gllr_for_enable_lightbox" />
|
63 |
|
64 |
$wp_sizes = get_intermediate_image_sizes();
|
65 |
|
66 |
+
foreach ( ( array ) $wp_sizes as $size ) {
|
67 |
if ( ! array_key_exists( $size, $gllr_options['custom_size_px'] ) ) {
|
68 |
if ( isset( $_wp_additional_image_sizes[ $size ] ) ) {
|
69 |
$width = absint( $_wp_additional_image_sizes[ $size ]['width'] );
|
91 |
|
92 |
$this->cstmsrch_options = get_option( 'cstmsrch_options' );
|
93 |
|
|
|
94 |
add_action( get_parent_class( $this ) . '_display_custom_messages', array( $this, 'display_custom_messages' ) );
|
95 |
add_action( get_parent_class( $this ) . '_additional_misc_options_affected', array( $this, 'additional_misc_options_affected' ) );
|
96 |
add_action( get_parent_class( $this ) . '_additional_import_export_options', array( $this, 'additional_import_export_options' ) );
|
182 |
|
183 |
/* Lightbox Tab */
|
184 |
$this->options["enable_lightbox"] = ( isset( $_POST['gllr_enable_lightbox'] ) ) ? 1 : 0;
|
185 |
+
$this->options["enable_image_opening"] = ( isset( $_POST['gllr_enable_image_opening'] ) ) ? 1 : 0;
|
186 |
$this->options["start_slideshow"] = ( isset( $_POST['gllr_start_slideshow'] ) ) ? 1 : 0;
|
187 |
$this->options["slideshow_interval"] = empty( $_POST['gllr_slideshow_interval'] ) ? 2000 : intval( $_POST['gllr_slideshow_interval'] );
|
188 |
$this->options["lightbox_download_link"] = ( isset( $_POST['gllr_lightbox_download_link'] ) ) ? 1 : 0;
|
214 |
$is_enabled = isset( $_POST['gllr_add_to_search'] ) ? 1 : 0;
|
215 |
$post_type_exist = false;
|
216 |
foreach ( $this->cstmsrch_options['output_order'] as $key => $item ) {
|
217 |
+
if ( $item['name'] == $this->options['post_type_name'] && 'post_type' == $item['type'] ) {
|
218 |
$post_type_exist = true;
|
219 |
if ( $item['enabled'] != $is_enabled ) {
|
220 |
$this->cstmsrch_options['output_order'][ $key ]['enabled'] = $is_enabled;
|
289 |
<?php $wp_gallery_media_table->views(); ?>
|
290 |
</div>
|
291 |
<div class="clear"></div>
|
292 |
+
<?php if ( 'list' == $gllr_mode ) {
|
293 |
$wp_gallery_media_table->display();
|
294 |
} else { ?>
|
295 |
<div class="error hide-if-js">
|
528 |
<tr valign="top">
|
529 |
<th scope="row"><?php _e( 'Back Link', 'gallery-plugin' ); ?></th>
|
530 |
<td>
|
531 |
+
<input type="checkbox" name="gllr_return_link" value="1" <?php if ( 1 == $this->options["return_link"] ) echo 'checked="checked"'; ?> class="bws_option_affect" data-affect-show=".gllr_for_return_link" /> <span class="bws_info"><?php _e( 'Enable to show a back link in a single gallery page which navigate to a previous page.' , 'gallery-plugin' ); ?></span>
|
532 |
</td>
|
533 |
</tr>
|
534 |
<tr valign="top" class="gllr_for_return_link">
|
535 |
<th scope="row"><?php _e( 'Back Link URL', 'gallery-plugin' ); ?></th>
|
536 |
<td>
|
537 |
<input type="text" value="<?php echo $this->options["return_link_url"]; ?>" name="gllr_return_link_url" maxlength="250" />
|
538 |
+
<div class="bws_info"><?php _e( 'Back link custom page URL. Leave blank to use Gallery page template.' , 'gallery-plugin' ); ?></div>
|
539 |
</td>
|
540 |
</tr>
|
541 |
<tr valign="top" class="gllr_for_return_link">
|
548 |
<th scope="row"><?php _e( 'Back Link with Shortcode', 'gallery-plugin' ); ?> </th>
|
549 |
<td>
|
550 |
<input type="checkbox" name="gllr_return_link_shortcode" value="1" <?php if ( 1 == $this->options["return_link_shortcode"] ) echo 'checked="checked"'; ?> />
|
551 |
+
<span class="bws_info"><?php _e( 'Enable to display a back link on a page where shortcode is used.' , 'gallery-plugin' ); ?></span>
|
552 |
</td>
|
553 |
</tr>
|
554 |
</table>
|
572 |
'name' => 'gllr_page_id_gallery_template',
|
573 |
'show_option_none' => '...'
|
574 |
) ); ?>
|
575 |
+
<div class="bws_info"><?php _e( 'Base page where all existing galleries will be displayed.' , 'gallery-plugin' ); ?></div>
|
576 |
</td>
|
577 |
</tr>
|
578 |
<tr valign="top">
|
582 |
<label><input type="radio" name="gllr_layout" value="column" id="gllr_column" <?php checked( 'column' == $this->options["galleries_layout"] ); ?> class="bws_option_affect" data-affect-show=".gllr_column_alignment" /> <?php _e( 'Column', 'gallery-plugin' ); ?></label><br/>
|
583 |
<label><input type="radio" name="gllr_layout" value="rows" id="gllr_rows" <?php checked( 'rows' == $this->options["galleries_layout"] ); ?> class="bws_option_affect" data-affect-hide=".gllr_column_alignment" /> <?php _e( 'Rows', 'gallery-plugin' ); ?></label>
|
584 |
</fieldset>
|
585 |
+
<div class="bws_info"><?php _e( 'Select the way galleries will be displayed on the Galleries Page.' , 'gallery-plugin' ); ?></div>
|
586 |
</td>
|
587 |
</tr>
|
588 |
<tr valign="top" class="gllr_column_alignment">
|
593 |
<label><input type="radio" name="gllr_column_align" value="right" <?php checked( 'right' == $this->options["galleries_column_alignment"] ); ?> /> <?php _e( 'Right', 'gallery-plugin' ); ?></label><br/>
|
594 |
<label><input type="radio" name="gllr_column_align" value="center" <?php checked( 'center' == $this->options["galleries_column_alignment"] ); ?> /> <?php _e( 'Center', 'gallery-plugin' ); ?></label>
|
595 |
</fieldset>
|
596 |
+
<div class="bws_info"><?php _e( 'Select the column alignment.' , 'gallery-plugin' ); ?></div>
|
597 |
</td>
|
598 |
</tr>
|
599 |
<tr valign="top">
|
732 |
<hr>
|
733 |
<table class="form-table">
|
734 |
<tr valign="top">
|
735 |
+
<th scope="row"><?php _e( 'Unclickable Thumbnail Images', 'gallery-plugin' ); ?> </th>
|
736 |
+
<td>
|
737 |
+
<input type="checkbox" name="gllr_enable_image_opening" <?php if ( 1 == $this->options["enable_image_opening"] ) echo 'checked="checked"'; ?> />
|
738 |
+
<span class="bws_info"><?php _e( 'Enable to make the images in a single gallery unclickable and hide their URLs. This option also disables Lightbox.', 'gallery-plugin' ); ?></span>
|
739 |
+
</td>
|
740 |
+
</tr>
|
741 |
+
<tr valign="top" class="gllr_for_enable_opening_images">
|
742 |
<th scope="row"><?php _e( 'Enable Lightbox', 'gallery-plugin' ); ?> </th>
|
743 |
<td>
|
744 |
<input type="checkbox" name="gllr_enable_lightbox" <?php if ( 1 == $this->options["enable_lightbox"] ) echo 'checked="checked"'; ?> class="bws_option_affect" data-affect-show=".gllr_for_enable_lightbox" />
|
js/frontend_script.js
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
for( var i = 1; i <= count_rows; i++ ) {
|
25 |
var $new_row = $( '<div/>', {
|
26 |
'class' : 'gllr_image_row'
|
27 |
-
}),
|
28 |
$new_images_in_row = $images.splice( 0, count_images_in_row );
|
29 |
$new_row.append( $new_images_in_row );
|
30 |
$gallery.append( $new_row );
|
@@ -42,7 +42,7 @@
|
|
42 |
/* initial item width */
|
43 |
init_width = $inline_list_items.data( 'gllr-width' ),
|
44 |
parent_width = $( '.gllr-display-inline' ).innerWidth(),
|
45 |
-
cols = Math.floor( parent_width/(init_width + col_margins ) ),
|
46 |
/* recalculate column width so the columns take all the available width */
|
47 |
calc_width = Math.floor( parent_width / cols ) - col_margins;
|
48 |
|
24 |
for( var i = 1; i <= count_rows; i++ ) {
|
25 |
var $new_row = $( '<div/>', {
|
26 |
'class' : 'gllr_image_row'
|
27 |
+
} ),
|
28 |
$new_images_in_row = $images.splice( 0, count_images_in_row );
|
29 |
$new_row.append( $new_images_in_row );
|
30 |
$gallery.append( $new_row );
|
42 |
/* initial item width */
|
43 |
init_width = $inline_list_items.data( 'gllr-width' ),
|
44 |
parent_width = $( '.gllr-display-inline' ).innerWidth(),
|
45 |
+
cols = Math.floor( parent_width/( init_width + col_margins ) ),
|
46 |
/* recalculate column width so the columns take all the available width */
|
47 |
calc_width = Math.floor( parent_width / cols ) - col_margins;
|
48 |
|
js/script.js
CHANGED
@@ -1,28 +1,38 @@
|
|
1 |
function gllr_setMessage( msg ) {
|
2 |
-
(function($) {
|
3 |
$( ".error" ).hide();
|
4 |
$( ".gllr_image_update_message" ).html( msg ).show();
|
5 |
-
})(jQuery);
|
6 |
}
|
7 |
|
8 |
function gllr_setError( msg ) {
|
9 |
-
(function($) {
|
10 |
$( ".gllr_image_update_message" ).hide();
|
11 |
$( ".error" ).html( msg ).show();
|
12 |
-
})(jQuery);
|
13 |
}
|
14 |
|
15 |
-
(function($) {
|
16 |
-
$(document).ready( function() {
|
17 |
/* include color-picker */
|
18 |
if ( $.fn.wpColorPicker ) {
|
19 |
$( '.gllr_color_field' ).wpColorPicker();
|
20 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
$( '#gllr_ajax_update_images' ).click( function() {
|
23 |
gllr_setMessage( "<p>" + gllr_vars.update_img_message + "</p>" );
|
24 |
var curr = 0;
|
25 |
-
$.ajax({
|
26 |
/* update_img_url */
|
27 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
28 |
type: "POST",
|
@@ -38,30 +48,30 @@ function gllr_setError( msg ) {
|
|
38 |
var curr = 0,
|
39 |
all_count = Object.keys( list ).length;
|
40 |
$.each( list, function( index, value ) {
|
41 |
-
$.ajax({
|
42 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
43 |
type: "POST",
|
44 |
data: "action1=update_image&id=" + value + '&gllr_ajax_nonce_field=' + gllr_vars.gllr_nonce,
|
45 |
success: function( result ) {
|
46 |
curr = curr + 1;
|
47 |
if ( curr >= all_count ) {
|
48 |
-
$.ajax({
|
49 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
50 |
type: "POST",
|
51 |
data: "action1=update_options&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
52 |
-
});
|
53 |
gllr_setMessage( "<p>" + gllr_vars.img_success + "</p>" );
|
54 |
$( '.gllr_loader' ).hide();
|
55 |
}
|
56 |
}
|
57 |
-
});
|
58 |
-
});
|
59 |
},
|
60 |
error: function( request, status, error ) {
|
61 |
gllr_setError( "<p>" + gllr_vars.img_error + request.status + "</p>" );
|
62 |
}
|
63 |
-
});
|
64 |
-
});
|
65 |
|
66 |
if ( $( window ).width() < 800 ) {
|
67 |
$.each( $( '.gllr_add_responsive_column' ), function() {
|
@@ -69,11 +79,11 @@ function gllr_setError( msg ) {
|
|
69 |
$.each( $( this ).find( 'td:hidden' ).not( '.column-order' ), function() {
|
70 |
content = content + '<label>' + $( this ).attr( 'data-colname' ) + '</label><br/>' + $( this ).html() + '<br/>';
|
71 |
$( this ).html( '' );
|
72 |
-
});
|
73 |
content = content + '</div>';
|
74 |
$( this ).find( '.column-title' ).append( content );
|
75 |
$( this ).find( '.gllr_info_show' ).show();
|
76 |
-
});
|
77 |
$( '.gllr_info_show' ).on( 'click', function( event ) {
|
78 |
event.preventDefault();
|
79 |
if ( $( this ).next( '.gllr_info' ).is( ':hidden' ) ) {
|
@@ -81,7 +91,7 @@ function gllr_setError( msg ) {
|
|
81 |
} else {
|
82 |
$( this ).next( '.gllr_info' ).hide();
|
83 |
}
|
84 |
-
});
|
85 |
}
|
86 |
|
87 |
if ( ! $( '#post-body-content .attachments li' ).length )
|
@@ -89,12 +99,12 @@ function gllr_setError( msg ) {
|
|
89 |
|
90 |
$( '#gllr-media-insert' ).click( function open_media_window() {
|
91 |
if ( this.window === undefined ) {
|
92 |
-
this.window = wp.media({
|
93 |
title: gllr_vars.wp_media_title,
|
94 |
library: { type: 'image' },
|
95 |
multiple: true,
|
96 |
button: { text: gllr_vars.wp_media_button }
|
97 |
-
});
|
98 |
|
99 |
var self = this; /* Needed to retrieve our variable in the anonymous function below */
|
100 |
this.window.on( 'select', function() {
|
@@ -114,9 +124,9 @@ function gllr_setError( msg ) {
|
|
114 |
gllr_add_sortable();
|
115 |
}
|
116 |
}
|
117 |
-
});
|
118 |
-
$('<input type="hidden" name="gllr_new_image[]" id="gllr_new_image" value="' + item.id + '" />').appendTo( '#hidden' );
|
119 |
-
});
|
120 |
} else {
|
121 |
var all = self.window.state().get( 'selection' ).toJSON();
|
122 |
all.forEach( function( item, i, arr ) {
|
@@ -132,16 +142,16 @@ function gllr_setError( msg ) {
|
|
132 |
gllr_add_sortable();
|
133 |
}
|
134 |
}
|
135 |
-
});
|
136 |
-
$('<input type="hidden" name="gllr_new_image[]" id="gllr_new_image" value="' + item.id + '" />').appendTo( '#hidden' );
|
137 |
-
});
|
138 |
}
|
139 |
-
});
|
140 |
}
|
141 |
|
142 |
this.window.open();
|
143 |
return false;
|
144 |
-
});
|
145 |
|
146 |
function gllr_add_sortable() {
|
147 |
if ( $.fn.sortable ) {
|
@@ -156,10 +166,10 @@ function gllr_setError( msg ) {
|
|
156 |
}
|
157 |
)
|
158 |
}
|
159 |
-
});
|
160 |
-
$( "#the-list input" ).on( 'click', function() { $(this).focus(); });
|
161 |
} else if ( $( ".attachments li" ).length > 1 ) {
|
162 |
-
$( '.attachments' ).sortable({
|
163 |
stop: function( event, ui ) {
|
164 |
var g = $( '.attachments' ).sortable( 'toArray' );
|
165 |
var f = g.length;
|
@@ -169,7 +179,7 @@ function gllr_setError( msg ) {
|
|
169 |
}
|
170 |
)
|
171 |
}
|
172 |
-
});
|
173 |
}
|
174 |
}
|
175 |
}
|
@@ -187,7 +197,7 @@ function gllr_setError( msg ) {
|
|
187 |
$( '.gllr-media-bulk-delete-selected-button' ).removeAttr( 'disabled' );
|
188 |
else
|
189 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
190 |
-
});
|
191 |
$( '.gllr-media-check' ).on( 'click', function(){
|
192 |
if ( $( this ).parent().hasClass( 'details' ) )
|
193 |
$( this ).parent().removeClass( 'details' ).removeClass( 'selected' );
|
@@ -198,9 +208,9 @@ function gllr_setError( msg ) {
|
|
198 |
else
|
199 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
200 |
return false;
|
201 |
-
});
|
202 |
return false;
|
203 |
-
});
|
204 |
|
205 |
$( '.gllr-media-bulk-cansel-select-button' ).on( 'click', function() {
|
206 |
$( '.attachments' ).sortable().removeClass( 'bulk-selected' );
|
@@ -210,19 +220,19 @@ function gllr_setError( msg ) {
|
|
210 |
$( '.gllr-media-attachment' ).off( 'click' );
|
211 |
$( '.gllr-media-check' ).off( 'click' );
|
212 |
return false;
|
213 |
-
});
|
214 |
|
215 |
$( document ).on( 'click', '.gllr-media-actions-delete', function() {
|
216 |
if ( window.confirm( gllr_vars.warnSingleDelete ) ) {
|
217 |
var gllr_attachment_id = $( this ).parent().find( '.gllr_attachment_id' ).val();
|
218 |
var gllr_post_id = $( this ).parent().find( '.gllr_post_id' ).val();
|
219 |
|
220 |
-
$.ajax({
|
221 |
url: '../wp-admin/admin-ajax.php',
|
222 |
type: "POST",
|
223 |
data: "action=gllr_delete_image&delete_id_array=" + gllr_attachment_id + "&post_id=" + gllr_post_id + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
224 |
success: function( result ) {
|
225 |
-
if (
|
226 |
$( '#post-' + gllr_attachment_id ).remove();
|
227 |
tb_remove();
|
228 |
if ( ! $( '#post-body-content .attachments li' ).length ) {
|
@@ -230,9 +240,9 @@ function gllr_setError( msg ) {
|
|
230 |
}
|
231 |
}
|
232 |
}
|
233 |
-
});
|
234 |
}
|
235 |
-
});
|
236 |
|
237 |
$( '.gllr-media-bulk-delete-selected-button' ).on( 'click', function() {
|
238 |
if ( 'disabled' != $( this ).attr( 'disabled' ) ) {
|
@@ -240,15 +250,15 @@ function gllr_setError( msg ) {
|
|
240 |
var delete_id_array = '';
|
241 |
$( '.attachments li.selected' ).each( function() {
|
242 |
delete_id_array += $( this ).attr( 'id' ).replace( 'post-', '' ) + ',';
|
243 |
-
});
|
244 |
$( '.gllr-media-spinner' ).css( 'display', 'inline-block' );
|
245 |
$( '.attachments' ).attr( 'disabled', 'disabled' );
|
246 |
-
$.ajax({
|
247 |
url: '../wp-admin/admin-ajax.php',
|
248 |
type: "POST",
|
249 |
data: "action=gllr_delete_image&delete_id_array=" + delete_id_array + "&post_id=" + $( '#post_ID' ).val() + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
250 |
success: function( result ) {
|
251 |
-
if (
|
252 |
$( '.gllr-media-attachment.selected' ).remove();
|
253 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
254 |
if ( ! $( '#post-body-content .attachments li' ).length ) {
|
@@ -259,36 +269,36 @@ function gllr_setError( msg ) {
|
|
259 |
$( '.gllr-media-spinner' ).css( 'display', 'none' );
|
260 |
$( '.attachments' ).removeAttr( 'disabled' );
|
261 |
}
|
262 |
-
});
|
263 |
}
|
264 |
}
|
265 |
return false;
|
266 |
-
});
|
267 |
|
268 |
$( '.post-type-gallery .view-switch a' ).on( 'click', function( event ) {
|
269 |
if ( window.confirm( gllr_vars.confirm_update_gallery ) ) {
|
270 |
event.preventDefault();
|
271 |
var mode = $( 'input[name="gllr_mode"]' ).val();
|
272 |
/* change view mode */
|
273 |
-
$.ajax({
|
274 |
url: "../wp-admin/admin-ajax.php",
|
275 |
type: "POST",
|
276 |
data: "action=gllr_change_view_mode&mode=" + mode + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
277 |
success: function( result ) {
|
278 |
$( '#publishing-action .button-primary' ).click();
|
279 |
}
|
280 |
-
});
|
281 |
}
|
282 |
-
});
|
283 |
-
});
|
284 |
-
})(jQuery);
|
285 |
|
286 |
/* Create notice on a gallery page */
|
287 |
function gllr_notice_wiev( data_id ) {
|
288 |
-
(function( $ ) {
|
289 |
/* function to send Ajax request to gallery notice */
|
290 |
gllr_notice_media_attach = function( post_id, thumb_id, typenow ) {
|
291 |
-
$.ajax({
|
292 |
url: "../wp-admin/admin-ajax.php",
|
293 |
type: "POST",
|
294 |
data: "action=gllr_media_check&thumbnail_id=" + thumb_id + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce + "&post_type=" + typenow,
|
@@ -300,8 +310,8 @@ function gllr_notice_wiev( data_id ) {
|
|
300 |
$( '.button.media-button-select' ).removeAttr( 'disabled' );
|
301 |
}
|
302 |
}
|
303 |
-
});
|
304 |
}
|
305 |
gllr_notice_media_attach( wp.media.view.settings.post.id, data_id, typenow );
|
306 |
-
})( jQuery );
|
307 |
}
|
1 |
function gllr_setMessage( msg ) {
|
2 |
+
( function( $ ) {
|
3 |
$( ".error" ).hide();
|
4 |
$( ".gllr_image_update_message" ).html( msg ).show();
|
5 |
+
} )( jQuery );
|
6 |
}
|
7 |
|
8 |
function gllr_setError( msg ) {
|
9 |
+
( function( $ ) {
|
10 |
$( ".gllr_image_update_message" ).hide();
|
11 |
$( ".error" ).html( msg ).show();
|
12 |
+
} )( jQuery );
|
13 |
}
|
14 |
|
15 |
+
( function( $ ) {
|
16 |
+
$( document ).ready( function() {
|
17 |
/* include color-picker */
|
18 |
if ( $.fn.wpColorPicker ) {
|
19 |
$( '.gllr_color_field' ).wpColorPicker();
|
20 |
}
|
21 |
+
|
22 |
+
$( 'input[name="gllr_enable_image_opening"]' ).on( 'change', function() {
|
23 |
+
if( $( 'input[name="gllr_enable_image_opening"]' ).prop( 'checked' ) ) {
|
24 |
+
$( 'input[name="gllr_enable_lightbox"]' ).prop( 'checked', false );
|
25 |
+
$( 'input[name="gllr_enable_lightbox"]' ).attr( 'disabled', true );
|
26 |
+
$( 'input[name="gllr_enable_lightbox"]' ).trigger( 'change' );
|
27 |
+
} else {
|
28 |
+
$('input[name="gllr_enable_lightbox"]').removeAttr("disabled");
|
29 |
+
}
|
30 |
+
} ).trigger( 'change' );
|
31 |
|
32 |
$( '#gllr_ajax_update_images' ).click( function() {
|
33 |
gllr_setMessage( "<p>" + gllr_vars.update_img_message + "</p>" );
|
34 |
var curr = 0;
|
35 |
+
$.ajax( {
|
36 |
/* update_img_url */
|
37 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
38 |
type: "POST",
|
48 |
var curr = 0,
|
49 |
all_count = Object.keys( list ).length;
|
50 |
$.each( list, function( index, value ) {
|
51 |
+
$.ajax( {
|
52 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
53 |
type: "POST",
|
54 |
data: "action1=update_image&id=" + value + '&gllr_ajax_nonce_field=' + gllr_vars.gllr_nonce,
|
55 |
success: function( result ) {
|
56 |
curr = curr + 1;
|
57 |
if ( curr >= all_count ) {
|
58 |
+
$.ajax( {
|
59 |
url: '../wp-admin/admin-ajax.php?action=gllr_update_image',
|
60 |
type: "POST",
|
61 |
data: "action1=update_options&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
62 |
+
} );
|
63 |
gllr_setMessage( "<p>" + gllr_vars.img_success + "</p>" );
|
64 |
$( '.gllr_loader' ).hide();
|
65 |
}
|
66 |
}
|
67 |
+
} );
|
68 |
+
} );
|
69 |
},
|
70 |
error: function( request, status, error ) {
|
71 |
gllr_setError( "<p>" + gllr_vars.img_error + request.status + "</p>" );
|
72 |
}
|
73 |
+
} );
|
74 |
+
} );
|
75 |
|
76 |
if ( $( window ).width() < 800 ) {
|
77 |
$.each( $( '.gllr_add_responsive_column' ), function() {
|
79 |
$.each( $( this ).find( 'td:hidden' ).not( '.column-order' ), function() {
|
80 |
content = content + '<label>' + $( this ).attr( 'data-colname' ) + '</label><br/>' + $( this ).html() + '<br/>';
|
81 |
$( this ).html( '' );
|
82 |
+
} );
|
83 |
content = content + '</div>';
|
84 |
$( this ).find( '.column-title' ).append( content );
|
85 |
$( this ).find( '.gllr_info_show' ).show();
|
86 |
+
} );
|
87 |
$( '.gllr_info_show' ).on( 'click', function( event ) {
|
88 |
event.preventDefault();
|
89 |
if ( $( this ).next( '.gllr_info' ).is( ':hidden' ) ) {
|
91 |
} else {
|
92 |
$( this ).next( '.gllr_info' ).hide();
|
93 |
}
|
94 |
+
} );
|
95 |
}
|
96 |
|
97 |
if ( ! $( '#post-body-content .attachments li' ).length )
|
99 |
|
100 |
$( '#gllr-media-insert' ).click( function open_media_window() {
|
101 |
if ( this.window === undefined ) {
|
102 |
+
this.window = wp.media( {
|
103 |
title: gllr_vars.wp_media_title,
|
104 |
library: { type: 'image' },
|
105 |
multiple: true,
|
106 |
button: { text: gllr_vars.wp_media_button }
|
107 |
+
} );
|
108 |
|
109 |
var self = this; /* Needed to retrieve our variable in the anonymous function below */
|
110 |
this.window.on( 'select', function() {
|
124 |
gllr_add_sortable();
|
125 |
}
|
126 |
}
|
127 |
+
} );
|
128 |
+
$( '<input type="hidden" name="gllr_new_image[]" id="gllr_new_image" value="' + item.id + '" />' ).appendTo( '#hidden' );
|
129 |
+
} );
|
130 |
} else {
|
131 |
var all = self.window.state().get( 'selection' ).toJSON();
|
132 |
all.forEach( function( item, i, arr ) {
|
142 |
gllr_add_sortable();
|
143 |
}
|
144 |
}
|
145 |
+
} );
|
146 |
+
$( '<input type="hidden" name="gllr_new_image[]" id="gllr_new_image" value="' + item.id + '" />' ).appendTo( '#hidden' );
|
147 |
+
} );
|
148 |
}
|
149 |
+
} );
|
150 |
}
|
151 |
|
152 |
this.window.open();
|
153 |
return false;
|
154 |
+
} );
|
155 |
|
156 |
function gllr_add_sortable() {
|
157 |
if ( $.fn.sortable ) {
|
166 |
}
|
167 |
)
|
168 |
}
|
169 |
+
} );
|
170 |
+
$( "#the-list input" ).on( 'click', function() { $( this ).focus(); } );
|
171 |
} else if ( $( ".attachments li" ).length > 1 ) {
|
172 |
+
$( '.attachments' ).sortable( {
|
173 |
stop: function( event, ui ) {
|
174 |
var g = $( '.attachments' ).sortable( 'toArray' );
|
175 |
var f = g.length;
|
179 |
}
|
180 |
)
|
181 |
}
|
182 |
+
} );
|
183 |
}
|
184 |
}
|
185 |
}
|
197 |
$( '.gllr-media-bulk-delete-selected-button' ).removeAttr( 'disabled' );
|
198 |
else
|
199 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
200 |
+
} );
|
201 |
$( '.gllr-media-check' ).on( 'click', function(){
|
202 |
if ( $( this ).parent().hasClass( 'details' ) )
|
203 |
$( this ).parent().removeClass( 'details' ).removeClass( 'selected' );
|
208 |
else
|
209 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
210 |
return false;
|
211 |
+
} );
|
212 |
return false;
|
213 |
+
} );
|
214 |
|
215 |
$( '.gllr-media-bulk-cansel-select-button' ).on( 'click', function() {
|
216 |
$( '.attachments' ).sortable().removeClass( 'bulk-selected' );
|
220 |
$( '.gllr-media-attachment' ).off( 'click' );
|
221 |
$( '.gllr-media-check' ).off( 'click' );
|
222 |
return false;
|
223 |
+
} );
|
224 |
|
225 |
$( document ).on( 'click', '.gllr-media-actions-delete', function() {
|
226 |
if ( window.confirm( gllr_vars.warnSingleDelete ) ) {
|
227 |
var gllr_attachment_id = $( this ).parent().find( '.gllr_attachment_id' ).val();
|
228 |
var gllr_post_id = $( this ).parent().find( '.gllr_post_id' ).val();
|
229 |
|
230 |
+
$.ajax( {
|
231 |
url: '../wp-admin/admin-ajax.php',
|
232 |
type: "POST",
|
233 |
data: "action=gllr_delete_image&delete_id_array=" + gllr_attachment_id + "&post_id=" + gllr_post_id + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
234 |
success: function( result ) {
|
235 |
+
if ( 'updated' == result ) {
|
236 |
$( '#post-' + gllr_attachment_id ).remove();
|
237 |
tb_remove();
|
238 |
if ( ! $( '#post-body-content .attachments li' ).length ) {
|
240 |
}
|
241 |
}
|
242 |
}
|
243 |
+
} );
|
244 |
}
|
245 |
+
} );
|
246 |
|
247 |
$( '.gllr-media-bulk-delete-selected-button' ).on( 'click', function() {
|
248 |
if ( 'disabled' != $( this ).attr( 'disabled' ) ) {
|
250 |
var delete_id_array = '';
|
251 |
$( '.attachments li.selected' ).each( function() {
|
252 |
delete_id_array += $( this ).attr( 'id' ).replace( 'post-', '' ) + ',';
|
253 |
+
} );
|
254 |
$( '.gllr-media-spinner' ).css( 'display', 'inline-block' );
|
255 |
$( '.attachments' ).attr( 'disabled', 'disabled' );
|
256 |
+
$.ajax( {
|
257 |
url: '../wp-admin/admin-ajax.php',
|
258 |
type: "POST",
|
259 |
data: "action=gllr_delete_image&delete_id_array=" + delete_id_array + "&post_id=" + $( '#post_ID' ).val() + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
260 |
success: function( result ) {
|
261 |
+
if ( 'updated' == result ) {
|
262 |
$( '.gllr-media-attachment.selected' ).remove();
|
263 |
$( '.gllr-media-bulk-delete-selected-button' ).attr( 'disabled', 'disabled' );
|
264 |
if ( ! $( '#post-body-content .attachments li' ).length ) {
|
269 |
$( '.gllr-media-spinner' ).css( 'display', 'none' );
|
270 |
$( '.attachments' ).removeAttr( 'disabled' );
|
271 |
}
|
272 |
+
} );
|
273 |
}
|
274 |
}
|
275 |
return false;
|
276 |
+
} );
|
277 |
|
278 |
$( '.post-type-gallery .view-switch a' ).on( 'click', function( event ) {
|
279 |
if ( window.confirm( gllr_vars.confirm_update_gallery ) ) {
|
280 |
event.preventDefault();
|
281 |
var mode = $( 'input[name="gllr_mode"]' ).val();
|
282 |
/* change view mode */
|
283 |
+
$.ajax( {
|
284 |
url: "../wp-admin/admin-ajax.php",
|
285 |
type: "POST",
|
286 |
data: "action=gllr_change_view_mode&mode=" + mode + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce,
|
287 |
success: function( result ) {
|
288 |
$( '#publishing-action .button-primary' ).click();
|
289 |
}
|
290 |
+
} );
|
291 |
}
|
292 |
+
} );
|
293 |
+
} );
|
294 |
+
} )( jQuery );
|
295 |
|
296 |
/* Create notice on a gallery page */
|
297 |
function gllr_notice_wiev( data_id ) {
|
298 |
+
( function( $ ) {
|
299 |
/* function to send Ajax request to gallery notice */
|
300 |
gllr_notice_media_attach = function( post_id, thumb_id, typenow ) {
|
301 |
+
$.ajax( {
|
302 |
url: "../wp-admin/admin-ajax.php",
|
303 |
type: "POST",
|
304 |
data: "action=gllr_media_check&thumbnail_id=" + thumb_id + "&gllr_ajax_nonce_field=" + gllr_vars.gllr_nonce + "&post_type=" + typenow,
|
310 |
$( '.button.media-button-select' ).removeAttr( 'disabled' );
|
311 |
}
|
312 |
}
|
313 |
+
} );
|
314 |
}
|
315 |
gllr_notice_media_attach( wp.media.view.settings.post.id, data_id, typenow );
|
316 |
+
} )( jQuery );
|
317 |
}
|
languages/gallery-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-plugin-fr_FR.po
CHANGED
@@ -1,17 +1,16 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: gallery 4.5.
|
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 |
-
"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 |
-
"
|
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"
|
@@ -26,7 +25,8 @@ msgstr "Paramètres de la galerie"
|
|
26 |
msgid "Global Settings"
|
27 |
msgstr "Paramètres généraux"
|
28 |
|
29 |
-
#: gallery-plugin.php:43 gallery-plugin.php:2771
|
|
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Passer à la version PRO"
|
32 |
|
@@ -64,21 +64,21 @@ msgstr "Voir la galerie"
|
|
64 |
|
65 |
#: gallery-plugin.php:342 includes/class-gllr-settings.php:941
|
66 |
msgid "Search Galleries"
|
67 |
-
msgstr "Rechercher
|
68 |
|
69 |
#: gallery-plugin.php:343
|
70 |
msgid "No Gallery found"
|
71 |
-
msgstr "Pas de
|
72 |
|
73 |
#: gallery-plugin.php:365 gallery-plugin.php:1600 gallery-plugin.php:2917
|
74 |
#: gallery-plugin.php:2925 gallery-plugin.php:2963 gallery-plugin.php:2986
|
75 |
#: gallery-plugin.php:3171
|
76 |
msgid "Gallery Categories"
|
77 |
-
msgstr "Catégories
|
78 |
|
79 |
#: gallery-plugin.php:366 gallery-plugin.php:805
|
80 |
msgid "Gallery Category"
|
81 |
-
msgstr "Catégories
|
82 |
|
83 |
#: gallery-plugin.php:367
|
84 |
msgid "Add Gallery Category"
|
@@ -86,7 +86,7 @@ msgstr "Ajouter une catégorie à la galerie"
|
|
86 |
|
87 |
#: gallery-plugin.php:368
|
88 |
msgid "Add New Gallery Category"
|
89 |
-
msgstr "Ajouter une nouvelle catégorie de
|
90 |
|
91 |
#: gallery-plugin.php:369 gallery-plugin.php:370
|
92 |
msgid "Edit Gallery Category"
|
@@ -94,23 +94,23 @@ msgstr "Modifier la catégorie de la galerie"
|
|
94 |
|
95 |
#: gallery-plugin.php:371
|
96 |
msgid "New Gallery Category"
|
97 |
-
msgstr "Ajouter une nouvelle catégorie de
|
98 |
|
99 |
#: gallery-plugin.php:372 gallery-plugin.php:373
|
100 |
msgid "View Gallery Category"
|
101 |
-
msgstr "Voir les catégories de
|
102 |
|
103 |
#: gallery-plugin.php:374
|
104 |
msgid "Find Gallery Category"
|
105 |
-
msgstr "Trouver une catégorie de
|
106 |
|
107 |
#: gallery-plugin.php:375
|
108 |
msgid "No Gallery Categories found"
|
109 |
-
msgstr "Aucune catégorie de
|
110 |
|
111 |
#: gallery-plugin.php:376
|
112 |
msgid "No Gallery Categories found in Trash"
|
113 |
-
msgstr "Pas de catégorie
|
114 |
|
115 |
#: gallery-plugin.php:377
|
116 |
msgid "Parent Gallery Category"
|
@@ -118,31 +118,23 @@ msgstr "Catégorie parente des galeries"
|
|
118 |
|
119 |
#: gallery-plugin.php:378
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
-
msgstr "Navigation dans la liste des catégories de
|
122 |
|
123 |
#: gallery-plugin.php:379
|
124 |
msgid "Gallery Categories list"
|
125 |
-
msgstr "Liste des catégories
|
126 |
|
127 |
#: gallery-plugin.php:455
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Code court de la galerie"
|
130 |
|
131 |
#: gallery-plugin.php:464
|
132 |
-
msgid ""
|
133 |
-
"
|
134 |
-
"widgets by using the following shortcode:"
|
135 |
-
msgstr ""
|
136 |
-
"Ajouter une galerie avec des images dans vos articles, pages, type d'article "
|
137 |
-
"personnalisé ou widgets en utilisant le code court :"
|
138 |
|
139 |
#: gallery-plugin.php:468
|
140 |
-
msgid ""
|
141 |
-
"
|
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:581
|
148 |
msgid "Note"
|
@@ -150,10 +142,8 @@ msgstr "Note"
|
|
150 |
|
151 |
#: gallery-plugin.php:581
|
152 |
#, php-format
|
153 |
-
msgid ""
|
154 |
-
"
|
155 |
-
"not be deleted. These galleries will be moved to the category %s."
|
156 |
-
msgstr ""
|
157 |
|
158 |
#: gallery-plugin.php:594 gallery-plugin.php:1599
|
159 |
msgid "Shortcode"
|
@@ -161,7 +151,7 @@ msgstr "Code court"
|
|
161 |
|
162 |
#: gallery-plugin.php:640
|
163 |
msgid "All Gallery Categories"
|
164 |
-
msgstr "Toutes les catégories de
|
165 |
|
166 |
#: gallery-plugin.php:717
|
167 |
msgid "You can't delete default gallery category."
|
@@ -169,7 +159,7 @@ msgstr "Vous ne pouvez pas supprimer la catégorie par défaut des galeries."
|
|
169 |
|
170 |
#: gallery-plugin.php:1089 gallery-plugin.php:1196 gallery-plugin.php:2108
|
171 |
msgid "Sorry, nothing found."
|
172 |
-
msgstr "Désolé, rien n
|
173 |
|
174 |
#: gallery-plugin.php:1596
|
175 |
msgid "Featured Image"
|
@@ -196,20 +186,22 @@ msgstr "Date"
|
|
196 |
#: gallery-plugin.php:1688
|
197 |
#, php-format
|
198 |
msgid "%s Settings"
|
199 |
-
msgstr ""
|
200 |
|
201 |
#: gallery-plugin.php:1715 gallery-plugin.php:1733
|
|
|
|
|
202 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
203 |
msgid "Settings"
|
204 |
msgstr "Paramètres"
|
205 |
|
206 |
-
#: gallery-plugin.php:1716
|
207 |
msgid "FAQ"
|
208 |
msgstr "FAQ"
|
209 |
|
210 |
-
#: gallery-plugin.php:1717
|
211 |
msgid "Support"
|
212 |
-
msgstr "
|
213 |
|
214 |
#: gallery-plugin.php:1756
|
215 |
msgid "Updating images..."
|
@@ -217,7 +209,7 @@ msgstr "Mise à jour des images..."
|
|
217 |
|
218 |
#: gallery-plugin.php:1757
|
219 |
msgid "No images found."
|
220 |
-
msgstr "Pas d
|
221 |
|
222 |
#: gallery-plugin.php:1758
|
223 |
msgid "All images were updated."
|
@@ -244,12 +236,8 @@ msgstr ""
|
|
244 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
245 |
|
246 |
#: gallery-plugin.php:1773
|
247 |
-
msgid ""
|
248 |
-
"
|
249 |
-
"switching?"
|
250 |
-
msgstr ""
|
251 |
-
"ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
252 |
-
"correctement. Merci de mettre à jour votre version de WordPress."
|
253 |
|
254 |
#: gallery-plugin.php:1774
|
255 |
msgid "Insert Media"
|
@@ -261,15 +249,11 @@ msgstr "Insérer"
|
|
261 |
|
262 |
#: gallery-plugin.php:2300 gallery-plugin.php:2326
|
263 |
msgid "Image size not defined"
|
264 |
-
msgstr "Taille de l
|
265 |
|
266 |
#: gallery-plugin.php:2315
|
267 |
-
msgid ""
|
268 |
-
"
|
269 |
-
"reload images manually."
|
270 |
-
msgstr ""
|
271 |
-
"Il n'est possible de mettre à jour que les images de type PNG, JPEG, GIF, "
|
272 |
-
"WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
273 |
|
274 |
#: gallery-plugin.php:2355 gallery-plugin.php:2358 gallery-plugin.php:2363
|
275 |
msgid "Invalid path"
|
@@ -293,11 +277,11 @@ msgstr "Vider la corbeille"
|
|
293 |
|
294 |
#: gallery-plugin.php:2533
|
295 |
msgid "No images found"
|
296 |
-
msgstr "Pas d
|
297 |
|
298 |
#: gallery-plugin.php:2585
|
299 |
msgid "Select bulk action"
|
300 |
-
msgstr "Sélectionne l
|
301 |
|
302 |
#: gallery-plugin.php:2587
|
303 |
msgid "Bulk Actions"
|
@@ -340,12 +324,8 @@ msgid "URL"
|
|
340 |
msgstr "URL"
|
341 |
|
342 |
#: gallery-plugin.php:2630 gallery-plugin.php:2744
|
343 |
-
msgid ""
|
344 |
-
"
|
345 |
-
"to open a full size image."
|
346 |
-
msgstr ""
|
347 |
-
"Saisir votre URL personnalisée pour faire un lien de cette image vers une "
|
348 |
-
"page ou un article. Laisser vide pour ouvrir l'image en plein écran."
|
349 |
|
350 |
#: gallery-plugin.php:2709
|
351 |
msgid "Remove Image from Gallery"
|
@@ -353,7 +333,7 @@ msgstr "Supprimer les images de la galerie"
|
|
353 |
|
354 |
#: gallery-plugin.php:2712
|
355 |
msgid "Edit Image Info"
|
356 |
-
msgstr "Modifier les informations de l
|
357 |
|
358 |
#: gallery-plugin.php:2713
|
359 |
msgid "Deselect"
|
@@ -381,7 +361,7 @@ msgstr "Nouvel onglet"
|
|
381 |
|
382 |
#: gallery-plugin.php:2766
|
383 |
msgid "Enable to open URLs above in a new tab."
|
384 |
-
msgstr "Activer pour ouvrir l
|
385 |
|
386 |
#: gallery-plugin.php:2771
|
387 |
msgid "Go Pro"
|
@@ -389,7 +369,7 @@ msgstr "Passer à la version PRO"
|
|
389 |
|
390 |
#: gallery-plugin.php:2777
|
391 |
msgid "Edit more details"
|
392 |
-
msgstr "Modifier plus de détails"
|
393 |
|
394 |
#: gallery-plugin.php:2779
|
395 |
msgid "Remove from Gallery"
|
@@ -407,7 +387,7 @@ msgstr "Pré-visualiser “%s”"
|
|
407 |
|
408 |
#: gallery-plugin.php:2834
|
409 |
msgid "Edit Attachment Info"
|
410 |
-
msgstr "Modifier les informations
|
411 |
|
412 |
#: gallery-plugin.php:2871 gallery-plugin.php:2884
|
413 |
msgid "Edit"
|
@@ -440,7 +420,7 @@ msgstr "Remettre"
|
|
440 |
|
441 |
#: gallery-plugin.php:2916
|
442 |
msgid "A list or dropdown of Gallery categories."
|
443 |
-
msgstr "Une liste ou une liste déroulante des catégories de
|
444 |
|
445 |
#: gallery-plugin.php:2961
|
446 |
msgid "Select Gallery Category"
|
@@ -452,11 +432,11 @@ msgstr "Titre :"
|
|
452 |
|
453 |
#: gallery-plugin.php:3022
|
454 |
msgid "Display as dropdown"
|
455 |
-
msgstr "Montrer sous la forme d
|
456 |
|
457 |
#: gallery-plugin.php:3024
|
458 |
msgid "Show gallery counts"
|
459 |
-
msgstr "Monter le nombre de
|
460 |
|
461 |
#: gallery-plugin.php:3026
|
462 |
msgid "Show hierarchy"
|
@@ -470,7 +450,10 @@ msgstr "Avertissement"
|
|
470 |
msgid "You can add only images to the gallery"
|
471 |
msgstr "Vous ne pouvez ajouter que des images dans la galerie"
|
472 |
|
473 |
-
#: gallery-plugin.php:3173
|
|
|
|
|
|
|
474 |
msgid "or"
|
475 |
msgstr "ou"
|
476 |
|
@@ -479,2346 +462,1943 @@ msgid "no title"
|
|
479 |
msgstr "Pas de titre"
|
480 |
|
481 |
#: gallery-plugin.php:3192
|
482 |
-
msgid ""
|
483 |
-
"
|
484 |
-
"page"
|
485 |
-
msgstr ""
|
486 |
-
"Afficher une image pour l'album avec la description et un lien vers une page "
|
487 |
-
"contenant la galerie"
|
488 |
|
489 |
#: gallery-plugin.php:3196
|
490 |
msgid "Sorry, no gallery found."
|
491 |
-
msgstr "Désolé, rien n
|
492 |
|
493 |
-
#:
|
494 |
-
msgid "
|
495 |
-
msgstr "
|
496 |
|
497 |
-
#:
|
498 |
-
msgid "
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#:
|
510 |
-
msgid "
|
511 |
-
msgstr "
|
512 |
|
513 |
-
#:
|
514 |
-
|
515 |
-
|
|
|
516 |
|
517 |
-
#:
|
518 |
-
msgid "
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#:
|
522 |
-
msgid "
|
523 |
-
msgstr ""
|
524 |
-
"La taille personnalisée des images a été modifiée. Vous devez mettre à jour "
|
525 |
-
"les images dans les galeries."
|
526 |
|
527 |
-
#:
|
528 |
-
|
529 |
-
|
|
|
530 |
|
531 |
-
#:
|
532 |
-
msgid "
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#:
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#:
|
540 |
-
msgid "
|
541 |
-
msgstr "
|
542 |
|
543 |
-
#:
|
544 |
-
msgid "
|
545 |
-
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
-
|
549 |
-
|
|
|
550 |
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
-
msgstr ""
|
554 |
-
"La vue en mode grille pour les images des galeries nécessite Java-script."
|
555 |
|
556 |
-
#:
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#:
|
561 |
-
|
562 |
-
|
|
|
563 |
|
564 |
-
#:
|
565 |
#, php-format
|
566 |
-
msgid "
|
567 |
-
msgstr ""
|
568 |
-
"Activer pour pouvoir définir les paramètres par galerie et désactiver %s."
|
569 |
|
570 |
-
#:
|
571 |
-
|
572 |
-
|
573 |
-
#: includes/class-gllr-settings.php:745 includes/class-gllr-settings.php:795
|
574 |
-
#: includes/class-gllr-settings.php:923
|
575 |
-
msgid "Close"
|
576 |
-
msgstr "Fermer"
|
577 |
|
578 |
-
#:
|
579 |
-
msgid "
|
580 |
-
msgstr "
|
581 |
|
582 |
-
#:
|
583 |
-
msgid "
|
584 |
-
msgstr "
|
585 |
|
586 |
-
#:
|
587 |
-
|
588 |
-
|
|
|
589 |
|
590 |
-
#:
|
591 |
-
msgid "
|
592 |
-
msgstr "
|
593 |
|
594 |
-
#:
|
595 |
-
|
596 |
-
|
597 |
-
msgstr "Nombre de colonnes pour la galerie (par défaut %s)."
|
598 |
|
599 |
-
#:
|
600 |
-
|
601 |
-
|
|
|
|
|
|
|
602 |
|
603 |
-
#:
|
604 |
-
msgid "
|
605 |
-
msgstr "
|
606 |
|
607 |
-
#:
|
608 |
-
msgid ""
|
609 |
-
|
610 |
-
msgstr ""
|
611 |
-
"Taille maximum d'une image dans la galerie. \"Personnalisé\" utilise les "
|
612 |
-
"valeurs définies pour les images."
|
613 |
|
614 |
-
#:
|
615 |
-
msgid "
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#:
|
619 |
-
|
620 |
-
|
621 |
-
msgstr "px"
|
622 |
|
623 |
-
#:
|
624 |
-
msgid ""
|
625 |
-
"
|
626 |
-
"won't effect the full size of your images in the lightbox."
|
627 |
-
msgstr ""
|
628 |
-
"Ajuster ces valeurs sur la base du nombre de colonnes dans votre galerie. "
|
629 |
-
"Cela ne changera pas la taille maximum de vos images dans la lightbox."
|
630 |
|
631 |
-
#:
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
|
635 |
-
#:
|
636 |
-
msgid ""
|
637 |
-
|
638 |
-
"to resize images automatically using their aspect ratio."
|
639 |
-
msgstr ""
|
640 |
-
"Activer pour réduire les images en utilisant les tailles définies dans les "
|
641 |
-
"paramètres de personnalisation. Désactiver pour restaurer les images "
|
642 |
-
"automatiquement en utilisant leur aspect d'origine."
|
643 |
|
644 |
-
#:
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#:
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
-
"Sélectionner la position de base pour la réduction (par défaut le centre)."
|
652 |
|
653 |
-
#:
|
654 |
-
|
655 |
-
|
|
|
656 |
|
657 |
-
#:
|
658 |
-
|
659 |
-
|
|
|
660 |
|
661 |
-
#:
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
664 |
|
665 |
-
#:
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
|
669 |
-
#:
|
670 |
-
|
671 |
-
|
|
|
|
|
672 |
|
673 |
-
#:
|
674 |
-
msgid "
|
675 |
-
msgstr "
|
676 |
|
677 |
-
#:
|
678 |
-
|
679 |
-
"
|
680 |
-
"
|
681 |
-
msgstr ""
|
682 |
|
683 |
-
#:
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#:
|
688 |
-
|
689 |
-
|
690 |
-
msgstr "Largeur de la bordure pour les images (par défaut %s)"
|
691 |
|
692 |
-
#:
|
693 |
-
msgid "
|
694 |
-
msgstr "
|
695 |
|
696 |
-
#:
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
|
700 |
-
#:
|
701 |
-
msgid ""
|
702 |
-
"
|
703 |
-
"gallery page."
|
704 |
-
msgstr ""
|
705 |
-
"Activer la pagination pour les images afin de limiter le nombre d'images "
|
706 |
-
"affichées sur une seule page dans la galerie."
|
707 |
|
708 |
-
#: includes/class-gllr-settings.php:
|
709 |
-
|
710 |
-
|
|
|
|
|
|
|
|
|
711 |
|
712 |
-
#:
|
713 |
-
|
714 |
-
|
715 |
-
msgstr "Nombre d'images affichées par page (par défaut %d)."
|
716 |
|
717 |
-
#:
|
718 |
-
msgid "
|
719 |
-
msgstr "
|
720 |
|
721 |
-
#: includes/class-
|
722 |
-
msgid "
|
723 |
-
msgstr "
|
724 |
|
725 |
-
#:
|
726 |
-
msgid "
|
727 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
728 |
|
729 |
-
#:
|
730 |
-
msgid "
|
731 |
-
msgstr "
|
732 |
|
733 |
-
#:
|
734 |
-
msgid "
|
735 |
-
msgstr "
|
736 |
|
737 |
-
#:
|
738 |
-
msgid ""
|
739 |
-
|
740 |
-
"manually in the images tab."
|
741 |
-
msgstr ""
|
742 |
-
"Choisir l'ordre de tri des images dans votre galerie. Par défaut, vous "
|
743 |
-
"pouvez trier les images manuellement dans l'onglet des images. "
|
744 |
|
745 |
-
#:
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
-
#:
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
|
753 |
-
#:
|
754 |
-
msgid "
|
755 |
-
msgstr "
|
756 |
|
757 |
-
#:
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
#:
|
762 |
-
msgid ""
|
763 |
-
"
|
764 |
-
"previous page."
|
765 |
-
msgstr ""
|
766 |
-
"Activer pour afficher un lien de retour dans la page d'une galerie vers la "
|
767 |
-
"page précédente."
|
768 |
|
769 |
-
#:
|
770 |
-
msgid "
|
771 |
-
msgstr "
|
772 |
|
773 |
-
#:
|
774 |
-
msgid "
|
775 |
-
msgstr ""
|
776 |
-
"Lien de retour personnalisé vers une page. Laisser vide pour utiliser le "
|
777 |
-
"modèle de page de galerie."
|
778 |
|
779 |
-
#:
|
780 |
-
msgid "
|
781 |
-
msgstr "
|
782 |
|
783 |
-
#:
|
784 |
-
msgid "
|
785 |
-
msgstr "
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "
|
789 |
-
msgstr ""
|
790 |
-
"Activer pour afficher le lien de retour vers la page où le code court est "
|
791 |
-
"utilisé."
|
792 |
|
793 |
-
#:
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
|
797 |
-
#:
|
798 |
-
msgid "
|
799 |
-
msgstr "
|
800 |
|
801 |
-
#:
|
802 |
-
msgid "
|
803 |
-
msgstr "
|
804 |
|
805 |
-
#:
|
806 |
-
msgid "
|
807 |
-
msgstr ""
|
808 |
|
809 |
-
#:
|
810 |
-
msgid "
|
811 |
-
msgstr ""
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "
|
815 |
-
msgstr ""
|
816 |
|
817 |
-
#:
|
818 |
-
msgid "
|
819 |
-
msgstr ""
|
820 |
|
821 |
-
#:
|
822 |
-
|
823 |
-
|
|
|
824 |
|
825 |
-
#:
|
826 |
-
msgid "
|
827 |
-
msgstr "
|
828 |
|
829 |
-
#:
|
830 |
-
msgid "
|
831 |
-
msgstr ""
|
832 |
|
833 |
-
#:
|
834 |
-
|
835 |
-
|
|
|
836 |
|
837 |
-
#:
|
838 |
-
|
839 |
-
|
|
|
840 |
|
841 |
-
#:
|
842 |
-
|
843 |
-
|
|
|
844 |
|
845 |
-
#:
|
846 |
-
msgid "
|
847 |
-
msgstr ""
|
848 |
-
"Taille maximum de l'image de couverture. Utiliser les dimensions "
|
849 |
-
"personnalisées de l'image."
|
850 |
|
851 |
-
#:
|
852 |
-
|
853 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
|
855 |
-
#:
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
-
|
859 |
-
#: includes/class-gllr-settings.php:627
|
860 |
-
msgid ""
|
861 |
-
"Enable to crop images using the sizes defined for Custom Cover Image Size. "
|
862 |
-
"Disable to resize images automatically using their aspect ratio."
|
863 |
-
msgstr ""
|
864 |
-
"Activer pour réduire les images de couverture en utilisant la taille définie "
|
865 |
-
"dans le champ de personnalisation. Désactiver pour restaurer les images "
|
866 |
-
"automatiquement en utilisant leur aspect d'origine."
|
867 |
-
|
868 |
-
#: includes/class-gllr-settings.php:656
|
869 |
-
msgid "Cover Image Border"
|
870 |
-
msgstr "Bordure de l'image de couverture"
|
871 |
-
|
872 |
-
#: includes/class-gllr-settings.php:658
|
873 |
-
msgid ""
|
874 |
-
"Enable cover images border using the styles defined for Image Border Size "
|
875 |
-
"and Color."
|
876 |
-
msgstr ""
|
877 |
-
"Activer les bordures de l'image de couverture avec la taille et la couleur "
|
878 |
-
"définies."
|
879 |
|
880 |
-
#:
|
881 |
-
msgid "
|
882 |
-
msgstr "
|
883 |
|
884 |
-
#:
|
885 |
-
|
886 |
-
|
887 |
-
msgstr "Taille de la bordure de l'image de couverture (par défaut %s)"
|
888 |
|
889 |
-
#:
|
890 |
-
msgid "
|
891 |
-
msgstr "
|
892 |
|
893 |
-
#:
|
894 |
-
|
895 |
-
|
|
|
|
|
896 |
|
897 |
-
#:
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
#:
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#:
|
906 |
-
msgid "
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#:
|
910 |
-
msgid "
|
911 |
-
msgstr ""
|
912 |
|
913 |
-
#:
|
914 |
-
|
915 |
-
|
|
|
916 |
|
917 |
-
#:
|
918 |
-
msgid "
|
919 |
-
msgstr "
|
920 |
|
921 |
-
#:
|
922 |
-
msgid "
|
923 |
-
msgstr "
|
924 |
|
925 |
-
#:
|
926 |
-
msgid "
|
927 |
-
msgstr "
|
928 |
|
929 |
-
#:
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
msgstr ""
|
934 |
-
"Activer pour afficher toutes les images dans une 'lightbox' après avoir "
|
935 |
-
"cliquer sur l'image de couverture ou le lien au lieu d'une page avec la "
|
936 |
-
"galerie"
|
937 |
|
938 |
-
#:
|
939 |
-
msgid "
|
940 |
-
msgstr "
|
941 |
|
942 |
-
#:
|
943 |
-
msgid "
|
944 |
-
msgstr "
|
945 |
|
946 |
-
#:
|
947 |
-
msgid "
|
948 |
-
msgstr ""
|
949 |
-
"Activer pour voir la lightbox lorsque l'on clique sur une image de la "
|
950 |
-
"galerie."
|
951 |
|
952 |
-
#:
|
953 |
-
msgid ""
|
954 |
-
|
955 |
-
"will display the original, full size image."
|
956 |
-
msgstr ""
|
957 |
-
"Choisissez la taille maximum de l'image pour la lightbox. \"Défaut\" "
|
958 |
-
"affichera l'image d'origine dans sa taille d'origine."
|
959 |
|
960 |
-
#:
|
961 |
-
msgid "
|
962 |
-
msgstr "
|
963 |
|
964 |
-
#:
|
965 |
-
msgid "
|
966 |
-
msgstr "
|
967 |
|
968 |
-
#:
|
969 |
#, php-format
|
970 |
-
msgid ""
|
971 |
-
"
|
972 |
-
"is %s)."
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: includes/class-gllr-settings.php:779
|
976 |
-
msgid "Slideshow"
|
977 |
-
msgstr "Diaporama"
|
978 |
-
|
979 |
-
#: includes/class-gllr-settings.php:781
|
980 |
-
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
981 |
-
msgstr ""
|
982 |
-
"Activer pour lancer le diaporama automatiquement quand la lightbox est "
|
983 |
-
"utilisée."
|
984 |
|
985 |
-
#:
|
986 |
-
|
987 |
-
|
|
|
988 |
|
989 |
-
#:
|
990 |
-
msgid "
|
991 |
-
msgstr "
|
992 |
|
993 |
-
#:
|
994 |
-
msgid "
|
995 |
-
msgstr "
|
996 |
|
997 |
-
#:
|
998 |
-
msgid "
|
999 |
-
msgstr "
|
1000 |
|
1001 |
-
#:
|
1002 |
-
|
1003 |
-
|
|
|
1004 |
|
1005 |
-
#:
|
1006 |
-
msgid "
|
1007 |
-
msgstr "
|
1008 |
|
1009 |
-
#:
|
1010 |
-
|
1011 |
-
|
1012 |
-
msgstr ""
|
1013 |
-
"Activer pour utiliser un helper de navigation dans lightbox entre les images."
|
1014 |
|
1015 |
-
#:
|
1016 |
-
msgid "
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
-
#:
|
1020 |
-
msgid "
|
1021 |
-
msgstr "
|
1022 |
|
1023 |
-
#:
|
1024 |
-
msgid "
|
1025 |
-
msgstr "
|
1026 |
|
1027 |
-
#:
|
1028 |
-
msgid "
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#:
|
1032 |
-
msgid "
|
1033 |
-
msgstr "
|
1034 |
|
1035 |
-
#:
|
1036 |
-
|
1037 |
-
|
|
|
1038 |
|
1039 |
-
#:
|
1040 |
-
|
1041 |
-
|
|
|
1042 |
|
1043 |
-
#:
|
1044 |
-
msgid ""
|
1045 |
-
"
|
1046 |
-
"page."
|
1047 |
-
msgstr ""
|
1048 |
-
"Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant "
|
1049 |
-
"sur la même page."
|
1050 |
|
1051 |
-
#:
|
1052 |
-
msgid "
|
1053 |
-
msgstr "
|
1054 |
|
1055 |
-
#:
|
1056 |
-
|
1057 |
-
|
1058 |
-
msgstr ""
|
1059 |
-
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1060 |
|
1061 |
-
#:
|
1062 |
-
msgid "
|
1063 |
-
msgstr ""
|
1064 |
-
"Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
1065 |
|
1066 |
-
#:
|
1067 |
-
msgid "
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
-
#:
|
1071 |
-
msgid "
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
-
#: includes/class-gllr-settings.php:
|
1075 |
-
|
1076 |
-
|
1077 |
-
"Enable to show likes counter for each social button (not available for "
|
1078 |
-
"Google +1)."
|
1079 |
-
msgstr ""
|
1080 |
-
"Activer pour voir le nombre de \"J'aime\" sur chaque bouton des réseaux "
|
1081 |
-
"sociaux."
|
1082 |
|
1083 |
-
#:
|
1084 |
-
msgid "
|
1085 |
-
msgstr "
|
1086 |
|
1087 |
-
#:
|
1088 |
-
msgid ""
|
1089 |
-
"
|
1090 |
-
"page with a list of all galleries."
|
1091 |
-
msgstr ""
|
1092 |
-
"Si vous installez les données de démonstration, des galeries avec des "
|
1093 |
-
"images, des articles avec les différents codes courts, des pages avec des "
|
1094 |
-
"listes de galeries seront créés."
|
1095 |
|
1096 |
-
#:
|
1097 |
-
|
1098 |
-
|
|
|
1099 |
|
1100 |
-
#:
|
1101 |
-
msgid ""
|
1102 |
-
"
|
1103 |
-
"galleries created earlier will stay unchanged. However, after enabling we "
|
1104 |
-
"recommend to check settings of other plugins where \"gallery\" post type is "
|
1105 |
-
"used."
|
1106 |
-
msgstr ""
|
1107 |
-
"Activer pour éviter les conflits avec d'autres extensions de galerie "
|
1108 |
-
"installées. Toutes les galeries crées avant ne seront pas modifiées, "
|
1109 |
-
"cependant, après la modification, merci de vérifier le paramétrage de vos "
|
1110 |
-
"autres extensions où le type d'article 'galerie' est utilisé."
|
1111 |
|
1112 |
-
#:
|
1113 |
-
|
1114 |
-
|
|
|
1115 |
|
1116 |
-
#:
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
|
1120 |
-
#:
|
1121 |
-
|
1122 |
-
|
|
|
1123 |
|
1124 |
-
#:
|
1125 |
-
|
1126 |
-
|
|
|
1127 |
|
1128 |
-
#:
|
1129 |
-
msgid "
|
1130 |
-
msgstr "
|
1131 |
|
1132 |
-
#:
|
1133 |
#, php-format
|
1134 |
-
msgid "%s
|
1135 |
-
msgstr "%s
|
1136 |
|
1137 |
-
#:
|
1138 |
-
|
1139 |
-
|
|
|
1140 |
|
1141 |
-
#:
|
1142 |
-
msgid "
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
-
#:
|
1146 |
-
msgid "
|
1147 |
-
msgstr ""
|
1148 |
-
"Supprimer les données de démonstration et remettre le paramétrage antérieur "
|
1149 |
-
"de l'extension."
|
1150 |
|
1151 |
-
#:
|
1152 |
-
msgid "
|
1153 |
-
msgstr "
|
1154 |
|
1155 |
-
#:
|
1156 |
-
msgid "
|
1157 |
-
msgstr "
|
1158 |
|
1159 |
-
#:
|
1160 |
-
msgid "
|
1161 |
-
msgstr "
|
1162 |
|
1163 |
-
#:
|
1164 |
-
msgid "
|
1165 |
-
msgstr "
|
1166 |
|
1167 |
-
#:
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
|
1171 |
-
#:
|
1172 |
-
msgid "
|
1173 |
-
msgstr "
|
1174 |
|
1175 |
-
#:
|
1176 |
-
|
1177 |
-
|
|
|
1178 |
|
1179 |
-
#:
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#:
|
1184 |
-
|
1185 |
-
|
|
|
1186 |
|
1187 |
-
#:
|
1188 |
-
msgid "
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
-
#:
|
1192 |
-
|
1193 |
-
|
1194 |
-
"
|
1195 |
-
"démonstration."
|
1196 |
|
1197 |
-
#:
|
1198 |
-
|
1199 |
-
|
|
|
1200 |
|
1201 |
-
#:
|
1202 |
-
|
1203 |
-
|
|
|
1204 |
|
1205 |
-
#:
|
1206 |
-
msgid "
|
1207 |
-
msgstr "
|
1208 |
|
1209 |
-
#:
|
1210 |
-
msgid "
|
1211 |
-
msgstr ""
|
1212 |
-
"Des erreurs sont survenues lors de la suppression des données de "
|
1213 |
-
"démonstration."
|
1214 |
|
1215 |
-
#:
|
1216 |
-
msgid "
|
1217 |
-
msgstr "
|
1218 |
|
1219 |
-
#:
|
1220 |
-
|
1221 |
-
|
1222 |
-
"Do you want to install demo content and settings for %s? (You can do this "
|
1223 |
-
"later using Import / Export settings)"
|
1224 |
-
msgstr ""
|
1225 |
-
"Voulez-vous installer le contenu de démonstration et les paramètres (Vous "
|
1226 |
-
"pouvez le faire plus tard en utilisant l'import et l'export des paramètres) ?"
|
1227 |
|
1228 |
-
#:
|
1229 |
-
|
1230 |
-
|
|
|
1231 |
|
1232 |
-
|
1233 |
-
|
|
|
1234 |
|
1235 |
-
|
1236 |
-
|
|
|
1237 |
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
#~ msgstr ""
|
1242 |
-
#~ "Opacité pour la superposition de Lightbox. Laisser vide pour ne pas "
|
1243 |
-
#~ "utiliser l''opacité (par défaut %d, max %d)."
|
1244 |
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
#~ "images."
|
1249 |
|
1250 |
-
|
1251 |
-
|
|
|
|
|
|
|
1252 |
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
|
|
1256 |
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
#~ "Quand vous supprimer une catégorie, les galeries qui avaient cette "
|
1262 |
-
#~ "catégorie ne sont pas supprimées. Ces galeries seront affectées à la "
|
1263 |
-
#~ "catégorie %s."
|
1264 |
|
1265 |
-
|
1266 |
-
|
|
|
1267 |
|
1268 |
-
|
1269 |
-
|
|
|
1270 |
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
#~ msgstr ""
|
1275 |
-
#~ "Activer les bordures autour des images en utilisant le style et la "
|
1276 |
-
#~ "couleur définie."
|
1277 |
|
1278 |
-
|
1279 |
-
|
|
|
1280 |
|
1281 |
-
|
1282 |
-
|
|
|
1283 |
|
1284 |
-
|
1285 |
-
|
|
|
1286 |
|
1287 |
-
|
1288 |
-
|
|
|
1289 |
|
1290 |
-
|
1291 |
-
|
|
|
1292 |
|
1293 |
-
|
1294 |
-
|
|
|
1295 |
|
1296 |
-
|
1297 |
-
|
|
|
1298 |
|
1299 |
-
|
1300 |
-
|
|
|
1301 |
|
1302 |
-
|
1303 |
-
|
|
|
1304 |
|
1305 |
-
|
1306 |
-
|
|
|
1307 |
|
1308 |
-
|
1309 |
-
|
|
|
1310 |
|
1311 |
-
|
1312 |
-
|
|
|
1313 |
|
1314 |
-
|
1315 |
-
|
|
|
1316 |
|
1317 |
-
|
1318 |
-
|
|
|
1319 |
|
1320 |
-
|
1321 |
-
|
|
|
1322 |
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
#~ "l'extension"
|
1327 |
|
1328 |
-
|
1329 |
-
|
|
|
1330 |
|
1331 |
-
|
1332 |
-
|
|
|
1333 |
|
1334 |
-
|
1335 |
-
|
|
|
1336 |
|
1337 |
-
|
1338 |
-
|
|
|
1339 |
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
|
1344 |
-
|
1345 |
-
|
|
|
1346 |
|
1347 |
-
|
1348 |
-
|
|
|
1349 |
|
1350 |
-
|
1351 |
-
|
|
|
1352 |
|
1353 |
-
|
1354 |
-
|
|
|
1355 |
|
1356 |
-
|
1357 |
-
|
|
|
1358 |
|
1359 |
-
|
1360 |
-
|
|
|
1361 |
|
1362 |
-
|
1363 |
-
|
|
|
1364 |
|
1365 |
-
|
1366 |
-
|
|
|
1367 |
|
1368 |
-
|
1369 |
-
|
|
|
1370 |
|
1371 |
-
|
1372 |
-
|
|
|
1373 |
|
1374 |
-
|
1375 |
-
|
|
|
1376 |
|
1377 |
-
|
1378 |
-
|
|
|
1379 |
|
1380 |
-
|
1381 |
-
|
|
|
1382 |
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
#~ "remises."
|
1387 |
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
#~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
|
1392 |
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
#~ msgstr ""
|
1401 |
-
#~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
|
1402 |
-
#~ "partie publique."
|
1403 |
|
1404 |
-
|
1405 |
-
|
|
|
1406 |
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
#~ msgstr ""
|
1411 |
-
#~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
|
1412 |
-
#~ "modifications. Regarder %s du Codex %s pour plus d'informations."
|
1413 |
|
1414 |
-
|
1415 |
-
|
|
|
1416 |
|
1417 |
-
|
1418 |
-
|
|
|
1419 |
|
1420 |
-
|
1421 |
-
|
|
|
1422 |
|
1423 |
-
|
1424 |
-
|
|
|
|
|
1425 |
|
1426 |
-
|
1427 |
-
|
|
|
1428 |
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
#~ msgstr ""
|
1433 |
-
#~ "Il est interdit de modifier les paramètres %s sur ce site dans les "
|
1434 |
-
#~ "paramètres réseau %s."
|
1435 |
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
#~ msgstr ""
|
1440 |
-
#~ "Il est interdit de voir les paramètres %s sur ce site dans les paramètres "
|
1441 |
-
#~ "réseau %s."
|
1442 |
|
1443 |
-
|
1444 |
-
|
|
|
1445 |
|
1446 |
-
|
1447 |
-
|
|
|
1448 |
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
#~ msgid ""
|
1453 |
-
#~ "Enable to allow tracking plugin usage anonymously in order to make it "
|
1454 |
-
#~ "better."
|
1455 |
-
#~ msgstr ""
|
1456 |
-
#~ "Activer pour autoriser le suivi de l'utilisation de cette extension de "
|
1457 |
-
#~ "manière anonyme afin de la rendre meilleur."
|
1458 |
-
|
1459 |
-
#~ msgid "Default Settings"
|
1460 |
-
#~ msgstr "Paramètres par défaut"
|
1461 |
-
|
1462 |
-
#~ msgid "Restore Settings"
|
1463 |
-
#~ msgstr "Remettre les paramètres"
|
1464 |
-
|
1465 |
-
#~ msgid "This will restore plugin settings to defaults."
|
1466 |
-
#~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
|
1467 |
-
|
1468 |
-
#~ msgid "Congratulations! Pro license is activated successfully."
|
1469 |
-
#~ msgstr ""
|
1470 |
-
#~ "Félicitations! La version PRO de cette extension a été téléchargée et "
|
1471 |
-
#~ "activée avec succès."
|
1472 |
-
|
1473 |
-
#~ msgid "You will be automatically redirected to the %s in %s seconds."
|
1474 |
-
#~ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
|
1475 |
-
|
1476 |
-
#~ msgid "Settings page"
|
1477 |
-
#~ msgstr "Page des paramètres"
|
1478 |
-
|
1479 |
-
#~ msgid "Activate"
|
1480 |
-
#~ msgstr "Activer"
|
1481 |
-
|
1482 |
-
#~ msgid ""
|
1483 |
-
#~ "Enter your license key to activate %s and get premium plugin features."
|
1484 |
-
#~ msgstr ""
|
1485 |
-
#~ "Saisir votre clé de licence pour activer %s et obtenir les fonctions "
|
1486 |
-
#~ "premium."
|
1487 |
-
|
1488 |
-
#~ msgid ""
|
1489 |
-
#~ "Unfortunately, you have exceeded the number of available tries per day. "
|
1490 |
-
#~ "Please, upload the plugin manually."
|
1491 |
-
#~ msgstr ""
|
1492 |
-
#~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
1493 |
-
#~ "télécharger l'extension manuellement."
|
1494 |
-
|
1495 |
-
#~ msgid "Start Your Free %s-Day Trial Now"
|
1496 |
-
#~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
1497 |
-
|
1498 |
-
#~ msgid "Check license key"
|
1499 |
-
#~ msgstr "Vérifier la clé de licence"
|
1500 |
-
|
1501 |
-
#~ msgid ""
|
1502 |
-
#~ "If necessary, you can check if the license key is correct or reenter it "
|
1503 |
-
#~ "in the field below."
|
1504 |
-
#~ msgstr ""
|
1505 |
-
#~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
|
1506 |
-
#~ "la saisir de nouveau dans le champ ci-dessous."
|
1507 |
-
|
1508 |
-
#~ msgid "Manage License Settings"
|
1509 |
-
#~ msgstr "Paramètres de gestion des licences"
|
1510 |
-
|
1511 |
-
#~ msgid "Login to Client Area"
|
1512 |
-
#~ msgstr "Connexion à l'espace client"
|
1513 |
-
|
1514 |
-
#~ msgid ""
|
1515 |
-
#~ "Manage active licenses, download BWS products, and view your payment "
|
1516 |
-
#~ "history using BestWebSoft Client Area."
|
1517 |
-
#~ msgstr ""
|
1518 |
-
#~ "Gérer les licences actives, télécharger les produits BWS, et voir "
|
1519 |
-
#~ "l'historique de vos paiements dans la zone client BestWebSoft."
|
1520 |
-
|
1521 |
-
#~ msgid "Wrong license key"
|
1522 |
-
#~ msgstr "Clé de licence incorrecte"
|
1523 |
-
|
1524 |
-
#~ msgid ""
|
1525 |
-
#~ "Something went wrong. Please try again later. If the error appears again, "
|
1526 |
-
#~ "please contact us"
|
1527 |
-
#~ msgstr ""
|
1528 |
-
#~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
|
1529 |
-
#~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
|
1530 |
-
#~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
1531 |
-
|
1532 |
-
#~ msgid "We are sorry for inconvenience."
|
1533 |
-
#~ msgstr "Nous sommes désolés pour le désagrément."
|
1534 |
-
|
1535 |
-
#~ msgid "Wrong license key."
|
1536 |
-
#~ msgstr "Clé de licence incorrecte."
|
1537 |
-
|
1538 |
-
#~ msgid "This license key is bound to another site."
|
1539 |
-
#~ msgstr "La clé de licence correspond à un autre site."
|
1540 |
-
|
1541 |
-
#~ msgid ""
|
1542 |
-
#~ "This license key is valid, but Your license has expired. If you want to "
|
1543 |
-
#~ "update our plugin in future, you should extend the license."
|
1544 |
-
#~ msgstr ""
|
1545 |
-
#~ "La clé de licence est valide mais votre durée de validité est passée. "
|
1546 |
-
#~ "Pour continuer à disposer du support rapide et des mises à jour de "
|
1547 |
-
#~ "l'extension vous devez la renouveler."
|
1548 |
-
|
1549 |
-
#~ msgid "Unfortunately, you have exceeded the number of available tries."
|
1550 |
-
#~ msgstr ""
|
1551 |
-
#~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
1552 |
-
#~ "télécharger l'extension manuellement."
|
1553 |
-
|
1554 |
-
#~ msgid ""
|
1555 |
-
#~ "Unfortunately, the Pro Trial licence was already installed to this "
|
1556 |
-
#~ "domain. The Pro Trial license can be installed only once."
|
1557 |
-
#~ msgstr ""
|
1558 |
-
#~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
|
1559 |
-
#~ "licence PRO d'évaluation peut être installée une seule fois."
|
1560 |
-
|
1561 |
-
#~ msgid "The Pro Trial license key is valid."
|
1562 |
-
#~ msgstr "La clé de licence d'évaluation est valide."
|
1563 |
-
|
1564 |
-
#~ msgid "The license key is valid."
|
1565 |
-
#~ msgstr "La clé de licence est valide."
|
1566 |
-
|
1567 |
-
#~ msgid "Your license will expire on"
|
1568 |
-
#~ msgstr "Votre licence se termine le "
|
1569 |
-
|
1570 |
-
#~ msgid ""
|
1571 |
-
#~ "In order to continue using the plugin it is necessary to buy a %s license."
|
1572 |
-
#~ msgstr ""
|
1573 |
-
#~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
|
1574 |
-
#~ "d'acheter une licence %s."
|
1575 |
-
|
1576 |
-
#~ msgid ""
|
1577 |
-
#~ "Unfortunately, Your license has expired. To continue getting top-priority "
|
1578 |
-
#~ "support and plugin updates, you should extend it in your %s"
|
1579 |
-
#~ msgstr ""
|
1580 |
-
#~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
|
1581 |
-
#~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
|
1582 |
-
#~ "votre %s"
|
1583 |
-
|
1584 |
-
#~ msgid ""
|
1585 |
-
#~ "Unfortunately, the Pro licence was already installed to this domain. The "
|
1586 |
-
#~ "Pro Trial license can be installed only once."
|
1587 |
-
#~ msgstr ""
|
1588 |
-
#~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
|
1589 |
-
#~ "licence PRO d'évaluation peut être installée une seule fois."
|
1590 |
-
|
1591 |
-
#~ msgid ""
|
1592 |
-
#~ "Failed to download the zip archive. Please, upload the plugin manually"
|
1593 |
-
#~ msgstr ""
|
1594 |
-
#~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
|
1595 |
-
#~ "l'extension manuellement."
|
1596 |
-
|
1597 |
-
#~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
1598 |
-
#~ msgstr ""
|
1599 |
-
#~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
1600 |
-
#~ "manuellement."
|
1601 |
-
|
1602 |
-
#~ msgid ""
|
1603 |
-
#~ "Your server does not support either ZipArchive or Phar. Please, upload "
|
1604 |
-
#~ "the plugin manually"
|
1605 |
-
#~ msgstr ""
|
1606 |
-
#~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
|
1607 |
-
#~ "Merci de télécharger l'extension manuellement."
|
1608 |
-
|
1609 |
-
#~ msgid "UploadDir is not writable. Please, upload the plugin manually"
|
1610 |
-
#~ msgstr ""
|
1611 |
-
#~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
1612 |
-
#~ "manuellement."
|
1613 |
-
|
1614 |
-
#~ msgid ""
|
1615 |
-
#~ "Something went wrong. Try again later or upload the plugin manually. We "
|
1616 |
-
#~ "are sorry for inconvenience."
|
1617 |
-
#~ msgstr ""
|
1618 |
-
#~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
|
1619 |
-
#~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
|
1620 |
|
1621 |
-
|
1622 |
-
|
|
|
1623 |
|
1624 |
-
|
1625 |
-
|
|
|
1626 |
|
1627 |
-
|
1628 |
-
|
|
|
1629 |
|
1630 |
-
|
1631 |
-
|
|
|
1632 |
|
1633 |
-
|
1634 |
-
|
|
|
1635 |
|
1636 |
-
|
1637 |
-
|
|
|
1638 |
|
1639 |
-
|
1640 |
-
|
|
|
1641 |
|
1642 |
-
|
1643 |
-
|
|
|
1644 |
|
1645 |
-
|
1646 |
-
|
|
|
1647 |
|
1648 |
-
|
1649 |
-
|
|
|
1650 |
|
1651 |
-
|
1652 |
-
|
|
|
1653 |
|
1654 |
-
|
1655 |
-
|
|
|
1656 |
|
1657 |
-
|
1658 |
-
|
|
|
1659 |
|
1660 |
-
|
1661 |
-
|
|
|
1662 |
|
1663 |
-
|
1664 |
-
|
|
|
1665 |
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
#~ msgstr ""
|
1670 |
-
#~ "La clé de licence correspond à un autre site. Modifier là au travers de "
|
1671 |
-
#~ "votre espace client."
|
1672 |
|
1673 |
-
|
1674 |
-
|
|
|
1675 |
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
#~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
1680 |
-
#~ "télécharger l'extension manuellement."
|
1681 |
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
#~ "succès."
|
1686 |
|
1687 |
-
|
1688 |
-
|
|
|
1689 |
|
1690 |
-
|
1691 |
-
|
|
|
1692 |
|
1693 |
-
|
1694 |
-
|
|
|
1695 |
|
1696 |
-
|
1697 |
-
|
|
|
1698 |
|
1699 |
-
|
1700 |
-
|
|
|
1701 |
|
1702 |
-
|
1703 |
-
|
|
|
1704 |
|
1705 |
-
|
1706 |
-
|
|
|
1707 |
|
1708 |
-
|
1709 |
-
|
|
|
1710 |
|
1711 |
-
|
1712 |
-
|
|
|
1713 |
|
1714 |
-
|
1715 |
-
|
|
|
1716 |
|
1717 |
-
|
1718 |
-
|
|
|
1719 |
|
1720 |
-
|
1721 |
-
|
|
|
1722 |
|
1723 |
-
|
1724 |
-
|
|
|
1725 |
|
1726 |
-
|
1727 |
-
|
|
|
1728 |
|
1729 |
-
|
1730 |
-
|
|
|
1731 |
|
1732 |
-
|
1733 |
-
|
|
|
1734 |
|
1735 |
-
|
1736 |
-
|
|
|
1737 |
|
1738 |
-
|
1739 |
-
|
|
|
1740 |
|
1741 |
-
|
1742 |
-
|
|
|
1743 |
|
1744 |
-
|
1745 |
-
|
|
|
1746 |
|
1747 |
-
|
1748 |
-
|
|
|
1749 |
|
1750 |
-
|
1751 |
-
|
|
|
1752 |
|
1753 |
-
|
1754 |
-
|
|
|
1755 |
|
1756 |
-
|
1757 |
-
|
|
|
1758 |
|
1759 |
-
|
1760 |
-
|
|
|
1761 |
|
1762 |
-
|
1763 |
-
|
|
|
1764 |
|
1765 |
-
|
1766 |
-
|
|
|
1767 |
|
1768 |
-
|
1769 |
-
|
|
|
1770 |
|
1771 |
-
|
1772 |
-
|
|
|
1773 |
|
1774 |
-
|
1775 |
-
|
|
|
1776 |
|
1777 |
-
|
1778 |
-
|
|
|
1779 |
|
1780 |
-
|
1781 |
-
|
|
|
1782 |
|
1783 |
-
|
1784 |
-
|
|
|
1785 |
|
1786 |
-
|
1787 |
-
|
|
|
1788 |
|
1789 |
-
|
1790 |
-
|
|
|
1791 |
|
1792 |
-
|
1793 |
-
|
|
|
1794 |
|
1795 |
-
|
1796 |
-
|
|
|
1797 |
|
1798 |
-
|
1799 |
-
|
|
|
1800 |
|
1801 |
-
|
1802 |
-
|
|
|
1803 |
|
1804 |
-
|
1805 |
-
|
|
|
1806 |
|
1807 |
-
|
1808 |
-
|
|
|
1809 |
|
1810 |
-
|
1811 |
-
|
|
|
1812 |
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
#~ msgid "Get Access to %s+ Premium Plugins"
|
1817 |
-
#~ msgstr "Accéder à plus de %s extension premiums"
|
1818 |
-
|
1819 |
-
#~ msgid "Subscribe to Pro Membership"
|
1820 |
-
#~ msgstr "Souscrire une adhésion PRO"
|
1821 |
-
|
1822 |
-
#~ msgid "Enter your license key"
|
1823 |
-
#~ msgstr "Merci de saisir votre clé de licence"
|
1824 |
-
|
1825 |
-
#~ msgid "Upload Plugin"
|
1826 |
-
#~ msgstr "Charger l'extension"
|
1827 |
-
|
1828 |
-
#~ msgid ""
|
1829 |
-
#~ "The plugin generated %d characters of <strong>unexpected output</strong> "
|
1830 |
-
#~ "during activation. If you notice “headers already sent” "
|
1831 |
-
#~ "messages, problems with syndication feeds or other issues, try "
|
1832 |
-
#~ "deactivating or removing this plugin."
|
1833 |
-
#~ msgstr ""
|
1834 |
-
#~ "Cette extension a produit %d caractères <strong>inattendus</strong> "
|
1835 |
-
#~ "durant l'activation. Si vous constatez le message “headers already "
|
1836 |
-
#~ "sent”, des problèmes avec les flux de syndication ou autres, "
|
1837 |
-
#~ "essayez de désactiver l'extension ou supprimer l'extension."
|
1838 |
-
|
1839 |
-
#~ msgid ""
|
1840 |
-
#~ "Plugin could not be activated because it triggered a <strong>fatal error</"
|
1841 |
-
#~ "strong>."
|
1842 |
-
#~ msgstr ""
|
1843 |
-
#~ "L'extension ne peut pas être activée car une <strong>erreur fatale</"
|
1844 |
-
#~ "strong> a été détectée."
|
1845 |
-
|
1846 |
-
#~ msgid "Plugin <strong>activated</strong>."
|
1847 |
-
#~ msgstr "Extension <strong>activée</strong>."
|
1848 |
-
|
1849 |
-
#~ msgid "Installing Plugin"
|
1850 |
-
#~ msgstr "Extensions installées"
|
1851 |
-
|
1852 |
-
#~ msgid "Downloading install package from"
|
1853 |
-
#~ msgstr "Télécharger le paquet d'installation depuis"
|
1854 |
-
|
1855 |
-
#~ msgid "Unpacking the package"
|
1856 |
-
#~ msgstr "Décompresser le paquet"
|
1857 |
-
|
1858 |
-
#~ msgid "Installing the plugin"
|
1859 |
-
#~ msgstr "Installer l'extension"
|
1860 |
-
|
1861 |
-
#~ msgid "The plugin %s is successfully installed."
|
1862 |
-
#~ msgstr "L'extension %s a été installée avec succès."
|
1863 |
-
|
1864 |
-
#~ msgid "Activate Plugin"
|
1865 |
-
#~ msgstr "Activer l'extension"
|
1866 |
-
|
1867 |
-
#~ msgid "Return to BestWebSoft Panel"
|
1868 |
-
#~ msgstr "Retourner à l'administration BestWebSoft"
|
1869 |
-
|
1870 |
-
#~ msgid "All"
|
1871 |
-
#~ msgstr "Tous"
|
1872 |
-
|
1873 |
-
#~ msgid "Installed"
|
1874 |
-
#~ msgstr "Installé"
|
1875 |
-
|
1876 |
-
#~ msgid "Not Installed"
|
1877 |
-
#~ msgstr "Non installé"
|
1878 |
-
|
1879 |
-
#~ msgid "Filter results"
|
1880 |
-
#~ msgstr "Filtrer les résultats"
|
1881 |
-
|
1882 |
-
#~ msgid "Category"
|
1883 |
-
#~ msgstr "Catégorie"
|
1884 |
-
|
1885 |
-
#~ msgid "Not installed"
|
1886 |
-
#~ msgstr "Non installé"
|
1887 |
-
|
1888 |
-
#~ msgid "Renew to get updates"
|
1889 |
-
#~ msgstr "Se réabonner pour avoir les mises à jour"
|
1890 |
-
|
1891 |
-
#~ msgid "Update to v %s"
|
1892 |
-
#~ msgstr "Mettre à jour avec la version %s"
|
1893 |
-
|
1894 |
-
#~ msgid "Donate"
|
1895 |
-
#~ msgstr "Don"
|
1896 |
-
|
1897 |
-
#~ msgid "Activate this plugin"
|
1898 |
-
#~ msgstr "Activer cette extension"
|
1899 |
-
|
1900 |
-
#~ msgid "Install this plugin"
|
1901 |
-
#~ msgstr "Installer cette extension"
|
1902 |
-
|
1903 |
-
#~ msgid "Nothing found. Try another criteria."
|
1904 |
-
#~ msgstr "Pas de réponse. essayer d'autres critères."
|
1905 |
-
|
1906 |
-
#~ msgid "By %s"
|
1907 |
-
#~ msgstr "Par %s"
|
1908 |
-
|
1909 |
-
#~ msgid "Already Installed"
|
1910 |
-
#~ msgstr "Déjà installé"
|
1911 |
-
|
1912 |
-
#~ msgid "Browse Free WordPress Themes"
|
1913 |
-
#~ msgstr "Parcourir les thèmes gratuits pour WordPress"
|
1914 |
-
|
1915 |
-
#~ msgid "Send to support"
|
1916 |
-
#~ msgstr "Envoyer au support"
|
1917 |
-
|
1918 |
-
#~ msgid "Send to custom email »"
|
1919 |
-
#~ msgstr "Envoyer un e-mail spécifique »"
|
1920 |
-
|
1921 |
-
#~ msgid "requires"
|
1922 |
-
#~ msgstr "requis"
|
1923 |
-
|
1924 |
-
#~ msgid ""
|
1925 |
-
#~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
|
1926 |
-
#~ "and try again."
|
1927 |
-
#~ msgstr ""
|
1928 |
-
#~ "ou supérieure, c'est pourquoi il a été désactive! Merci de faire la mise "
|
1929 |
-
#~ "à jour de WordPress et de ré-essayer!"
|
1930 |
-
|
1931 |
-
#~ msgid "Back to the WordPress"
|
1932 |
-
#~ msgstr "Retour à WordPress"
|
1933 |
-
|
1934 |
-
#~ msgid "Plugins page"
|
1935 |
-
#~ msgstr "Page des extensions"
|
1936 |
-
|
1937 |
-
#~ msgid "Like the plugin?"
|
1938 |
-
#~ msgstr "Vous aimez cette extension?"
|
1939 |
-
|
1940 |
-
#~ msgid "Rate it"
|
1941 |
-
#~ msgstr "Noter la"
|
1942 |
-
|
1943 |
-
#~ msgid "Need help?"
|
1944 |
-
#~ msgstr "Besoin d'aide ?"
|
1945 |
-
|
1946 |
-
#~ msgid "Want to support the plugin?"
|
1947 |
-
#~ msgstr "Vous voulez aider cette extension?"
|
1948 |
-
|
1949 |
-
#~ msgid "WARNING: Illegal use notification"
|
1950 |
-
#~ msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
1951 |
-
|
1952 |
-
#~ msgid ""
|
1953 |
-
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1954 |
-
#~ "check and edit your license or domain if necessary using your personal "
|
1955 |
-
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1956 |
-
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1957 |
-
#~ msgstr ""
|
1958 |
-
#~ "Vous ne pouvez utiliser qu'une licence pour un domaine de la version PRO "
|
1959 |
-
#~ "de l'extension. Vérifiez et modifiez votre licence ou domaine si "
|
1960 |
-
#~ "nécessaire dans votre zone client. Nous vous recommandons de résoudre ce "
|
1961 |
-
#~ "problème dans les 24 heures, sinon l'extension sera rendue inactive. "
|
1962 |
-
|
1963 |
-
#~ msgid ""
|
1964 |
-
#~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
1965 |
-
#~ "you should buy a Pro license"
|
1966 |
-
#~ msgstr ""
|
1967 |
-
#~ "Information : Votre licence d'évaluation est terminée. Pour continuer à "
|
1968 |
-
#~ "utiliser cette extension vous devez acheter une licence PRO"
|
1969 |
-
|
1970 |
-
#~ msgid ""
|
1971 |
-
#~ "Your license has expired. To continue getting top-priority support and "
|
1972 |
-
#~ "plugin updates, you should extend it."
|
1973 |
-
#~ msgstr ""
|
1974 |
-
#~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
|
1975 |
-
#~ "et des mises à jour de l'extension vous devez la renouveler."
|
1976 |
-
|
1977 |
-
#~ msgid "Learn more"
|
1978 |
-
#~ msgstr "En savoir plus"
|
1979 |
-
|
1980 |
-
#~ msgid "Notice: You are using the Pro Trial license of %s plugin."
|
1981 |
-
#~ msgstr ""
|
1982 |
-
#~ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
1983 |
-
|
1984 |
-
#~ msgid "Notice: You are using the Pro Trial license of plugin."
|
1985 |
-
#~ msgstr ""
|
1986 |
-
#~ "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
1987 |
-
|
1988 |
-
#~ msgid "The Pro Trial license will expire on"
|
1989 |
-
#~ msgstr "Votre licence se termine le "
|
1990 |
-
|
1991 |
-
#~ msgid ""
|
1992 |
-
#~ "or higher! We do not guarantee that our plugin will work correctly. "
|
1993 |
-
#~ "Please upgrade to WordPress latest version."
|
1994 |
-
#~ msgstr ""
|
1995 |
-
#~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
|
1996 |
-
#~ "correctement. Merci de mettre à jour votre version de WordPress."
|
1997 |
-
|
1998 |
-
#~ msgid "Thank you for installing %s plugin!"
|
1999 |
-
#~ msgstr "Merci d'avoir installer l'extension %s !"
|
2000 |
-
|
2001 |
-
#~ msgid "Let's get started"
|
2002 |
-
#~ msgstr "C'est parti"
|
2003 |
-
|
2004 |
-
#~ msgid "Add New"
|
2005 |
-
#~ msgstr "Ajouter"
|
2006 |
-
|
2007 |
-
#~ msgid "Thank you for installing plugins by BestWebSoft!"
|
2008 |
-
#~ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
|
2009 |
-
|
2010 |
-
#~ msgid "More Details"
|
2011 |
-
#~ msgstr "Plus de détails"
|
2012 |
-
|
2013 |
-
#~ msgid "Less Details"
|
2014 |
-
#~ msgstr "Moins de détails"
|
2015 |
-
|
2016 |
-
#~ msgid "Deprecated function(-s) is used on the site here:"
|
2017 |
-
#~ msgstr "Des fonctions obsolètes sont utilisées sur ce site ici :"
|
2018 |
-
|
2019 |
-
#~ msgid ""
|
2020 |
-
#~ "This function(-s) will be removed over time. Please update the product(-"
|
2021 |
-
#~ "s)."
|
2022 |
-
#~ msgstr ""
|
2023 |
-
#~ "Ces fonctions seront supprimées dans une prochaine version. Merci de "
|
2024 |
-
#~ "mettre à jour vos produits."
|
2025 |
-
|
2026 |
-
#~ msgid "It’s time to upgrade your"
|
2027 |
-
#~ msgstr "C'est le moment de mettre à jour votre "
|
2028 |
-
|
2029 |
-
#~ msgid "to"
|
2030 |
-
#~ msgstr "à"
|
2031 |
-
|
2032 |
-
#~ msgid "version!"
|
2033 |
-
#~ msgstr "version"
|
2034 |
-
|
2035 |
-
#~ msgid "Extend standard plugin functionality with new great options."
|
2036 |
-
#~ msgstr ""
|
2037 |
-
#~ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
|
2038 |
-
#~ "options."
|
2039 |
-
|
2040 |
-
#~ msgid ""
|
2041 |
-
#~ "Your license key for %s expires on %s and you won't be granted TOP-"
|
2042 |
-
#~ "PRIORITY SUPPORT or UPDATES."
|
2043 |
-
#~ msgstr ""
|
2044 |
-
#~ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez "
|
2045 |
-
#~ "plus du support rapide et des mises à jour."
|
2046 |
-
|
2047 |
-
#~ msgid "Thank you for choosing %s plugin!"
|
2048 |
-
#~ msgstr "Merci d'avoir choisi l'extension %s !"
|
2049 |
-
|
2050 |
-
#~ msgid ""
|
2051 |
-
#~ "If you have a feature, suggestion or idea you'd like to see in the "
|
2052 |
-
#~ "plugin, we'd love to hear about it!"
|
2053 |
-
#~ msgstr ""
|
2054 |
-
#~ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
2055 |
-
#~ "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
2056 |
-
|
2057 |
-
#~ msgid "Suggest a Feature"
|
2058 |
-
#~ msgstr "Proposer une fonctionnalité"
|
2059 |
-
|
2060 |
-
#~ msgid "The plugin's settings have been changed."
|
2061 |
-
#~ msgstr "Les paramètres de l'extension ont été modifiés."
|
2062 |
-
|
2063 |
-
#~ msgid ""
|
2064 |
-
#~ "You can always look at premium options by checking the \"Pro Options\" in "
|
2065 |
-
#~ "the \"Misc\" tab."
|
2066 |
-
#~ msgstr ""
|
2067 |
-
#~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
|
2068 |
-
#~ "les fonctionnalités PRO\" dans l'onglet \"Divers\""
|
2069 |
-
|
2070 |
-
#~ msgid "Add BWS Shortcode"
|
2071 |
-
#~ msgstr "Ajouter le code court de l'extension BWS"
|
2072 |
-
|
2073 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
2074 |
-
#~ msgstr "Ajouter le code court de l'extension BWS"
|
2075 |
-
|
2076 |
-
#~ msgid "Add shortcode"
|
2077 |
-
#~ msgstr "Ajouter le code court"
|
2078 |
-
|
2079 |
-
#~ msgid "Add BestWebSoft plugins' shortcodes using this button."
|
2080 |
-
#~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
|
2081 |
-
|
2082 |
-
#~ msgid "Are you sure you want to restore default settings?"
|
2083 |
-
#~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
2084 |
-
|
2085 |
-
#~ msgid "Yes, restore all settings"
|
2086 |
-
#~ msgstr "Oui, remettre les valeurs par défaut"
|
2087 |
-
|
2088 |
-
#~ msgid "Plugin"
|
2089 |
-
#~ msgstr "Extension"
|
2090 |
-
|
2091 |
-
#~ msgid "Shortcode settings"
|
2092 |
-
#~ msgstr "Paramètres du code court"
|
2093 |
-
|
2094 |
-
#~ msgid "The shortcode will be inserted"
|
2095 |
-
#~ msgstr "Le code court sera inséré"
|
2096 |
-
|
2097 |
-
#~ msgid "For more information:"
|
2098 |
-
#~ msgstr "Pour plus d'information :"
|
2099 |
-
|
2100 |
-
#~ msgid "Documentation"
|
2101 |
-
#~ msgstr "Documentation"
|
2102 |
-
|
2103 |
-
#~ msgid "Video Instructions"
|
2104 |
-
#~ msgstr "Instruction vidéo"
|
2105 |
-
|
2106 |
-
#~ msgid "Submit a Request"
|
2107 |
-
#~ msgstr "Soumettre une requête"
|
2108 |
-
|
2109 |
-
#~ msgid "System Status"
|
2110 |
-
#~ msgstr "Etat du système"
|
2111 |
-
|
2112 |
-
#~ msgid "Please, enter your license key"
|
2113 |
-
#~ msgstr "Merci de saisir votre clé de licence"
|
2114 |
-
|
2115 |
-
#~ msgid ""
|
2116 |
-
#~ "If necessary, you can check if the license key is correct or reenter it "
|
2117 |
-
#~ "in the field below. You can find your license key on your personal page - "
|
2118 |
-
#~ "Client Area - on our website"
|
2119 |
-
#~ msgstr ""
|
2120 |
-
#~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
|
2121 |
-
#~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
|
2122 |
-
#~ "clé de licence sur votre page personnelle (zone client) sur notre site "
|
2123 |
-
#~ "web."
|
2124 |
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
#~ msgstr ""
|
2129 |
-
#~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
|
2130 |
-
#~ "de l'achat de l'extension). Si nécessaire, utilisez la fonction de "
|
2131 |
-
#~ "demande de mot de passe perdu."
|
2132 |
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
#~ "licence."
|
2137 |
|
2138 |
-
|
2139 |
-
|
|
|
2140 |
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
#~ "de l'achat de l'extension)."
|
2145 |
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
#~ "Félicitations! La version PRO de cette extension a été activée avec "
|
2150 |
-
#~ "succès."
|
2151 |
|
2152 |
-
|
2153 |
-
|
|
|
2154 |
|
2155 |
-
|
2156 |
-
|
|
|
2157 |
|
2158 |
-
|
2159 |
-
|
|
|
2160 |
|
2161 |
-
|
2162 |
-
|
|
|
2163 |
|
2164 |
-
|
2165 |
-
|
|
|
2166 |
|
2167 |
-
|
2168 |
-
|
|
|
2169 |
|
2170 |
-
|
2171 |
-
|
|
|
|
|
2172 |
|
2173 |
-
|
2174 |
-
|
|
|
2175 |
|
2176 |
-
|
2177 |
-
|
|
|
2178 |
|
2179 |
-
|
2180 |
-
|
|
|
2181 |
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
#~ msgstr ""
|
2186 |
-
#~ "Félicitations! La version PRO de cette extension a été téléchargée et "
|
2187 |
-
#~ "activée avec succès."
|
2188 |
|
2189 |
-
|
2190 |
-
|
|
|
|
|
2191 |
|
2192 |
-
|
2193 |
-
|
|
|
2194 |
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
#~ msgid "Download high resolution image"
|
2199 |
-
#~ msgstr "Télécharger l'image en haute résolution"
|
2200 |
-
|
2201 |
-
#~ msgid "Most Used"
|
2202 |
-
#~ msgstr "Les plus utiliser"
|
2203 |
-
|
2204 |
-
#~ msgid "Default"
|
2205 |
-
#~ msgstr "Défaut"
|
2206 |
-
|
2207 |
-
#~ msgid "Install %s"
|
2208 |
-
#~ msgstr "Installation %s"
|
2209 |
-
|
2210 |
-
#~ msgid ""
|
2211 |
-
#~ "Install Gallery Categories plugin to add unlimited number of categories."
|
2212 |
-
#~ msgstr ""
|
2213 |
-
#~ "Installer l'extension 'Gallery Categories' pour ajouter un nombre infini "
|
2214 |
-
#~ "de catégories."
|
2215 |
-
|
2216 |
-
#~ msgid "Image"
|
2217 |
-
#~ msgstr "Image "
|
2218 |
-
|
2219 |
-
#~ msgid "This theme is already installed and is up to date"
|
2220 |
-
#~ msgstr "Le thème est déjà en place et est à jour."
|
2221 |
-
|
2222 |
-
#~ msgid "Advertisement"
|
2223 |
-
#~ msgstr "Publicité"
|
2224 |
-
|
2225 |
-
#~ msgid "Management"
|
2226 |
-
#~ msgstr "Administration"
|
2227 |
-
|
2228 |
-
#~ msgid "Site Stats"
|
2229 |
-
#~ msgstr "Statistiques"
|
2230 |
-
|
2231 |
-
#~ msgid "Utilities"
|
2232 |
-
#~ msgstr "Utilitaires"
|
2233 |
-
|
2234 |
-
#~ msgid "Lightbox Helper Type"
|
2235 |
-
#~ msgstr "Lightbox Helper Type"
|
2236 |
-
|
2237 |
-
#~ msgid "Thumbnails"
|
2238 |
-
#~ msgstr "Vignettes"
|
2239 |
-
|
2240 |
-
#~ msgid "Buttons"
|
2241 |
-
#~ msgstr "Boutons"
|
2242 |
-
|
2243 |
-
#~ msgid "Bottom"
|
2244 |
-
#~ msgstr "Bas"
|
2245 |
-
|
2246 |
-
#~ msgid "Download Original File"
|
2247 |
-
#~ msgstr "Télécharger l'image originale"
|
2248 |
-
|
2249 |
-
#~ msgid ""
|
2250 |
-
#~ "Enable to display link to the original file under each image in the "
|
2251 |
-
#~ "lightbox."
|
2252 |
-
#~ msgstr ""
|
2253 |
-
#~ "Activer pour afficher un lien vers l'image d'origine sous chaque image "
|
2254 |
-
#~ "dans la lightbox."
|
2255 |
-
|
2256 |
-
#~ msgid "Download Link Label"
|
2257 |
-
#~ msgstr "Titre pour le lien de téléchargement"
|
2258 |
-
|
2259 |
-
#~ msgid "PHP Safe Mode"
|
2260 |
-
#~ msgstr "PHP Safe Mode"
|
2261 |
-
|
2262 |
-
#~ msgid ""
|
2263 |
-
#~ "The following files '%s' and '%s' were not found in the directory of your "
|
2264 |
-
#~ "theme. Please copy them from the directory `%s` to the directory of your "
|
2265 |
-
#~ "theme for the correct work of the Gallery plugin"
|
2266 |
-
#~ msgstr ""
|
2267 |
-
#~ "Les fichiers suivants '%s' et '%s' n'ont pas été trouvés dans le "
|
2268 |
-
#~ "répertoire de votre thème. Merci de les copier depuis le répertoire '%s' "
|
2269 |
-
#~ "dans le répertoire de votre thème pour le bon fonctionnement de "
|
2270 |
-
#~ "l'extension Gallery"
|
2271 |
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
#~ msgstr ""
|
2276 |
-
#~ "Si vous voulez ajouter la galerie dans une page ou un article, utiliser "
|
2277 |
-
#~ "le bouton %s"
|
2278 |
-
|
2279 |
-
#~ msgid ""
|
2280 |
-
#~ "You can add the Gallery to your page or post by clicking on %s button in "
|
2281 |
-
#~ "the content edit block using the Visual mode. If the button isn't "
|
2282 |
-
#~ "displayed, please use the shortcode below"
|
2283 |
-
#~ msgstr ""
|
2284 |
-
#~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
|
2285 |
-
#~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
|
2286 |
-
#~ "bouton n'est pas visible, vous pouvez utiliser le code court ci-dessous"
|
2287 |
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
#~ "Ajouter ce code court à une page, un article ou un widget pour afficher "
|
2292 |
-
#~ "une seule galerie"
|
2293 |
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
#~ "Utilisez ce code court pour afficher une image représentant l'album avec "
|
2299 |
-
#~ "la description et un lien vers une page contenant la galerie"
|
2300 |
-
|
2301 |
-
#~ msgid "Short display"
|
2302 |
-
#~ msgstr "Affichage court"
|
2303 |
-
|
2304 |
-
#~ msgid "Install plugin"
|
2305 |
-
#~ msgstr "Installer l'extension"
|
2306 |
-
|
2307 |
-
#~ msgid "Photos"
|
2308 |
-
#~ msgstr "Photos"
|
2309 |
-
|
2310 |
-
#~ msgid "Go PRO"
|
2311 |
-
#~ msgstr "Choisir la version PRO"
|
2312 |
-
|
2313 |
-
#~ msgid "Please enable JavaScript to use the option to renew images."
|
2314 |
-
#~ msgstr ""
|
2315 |
-
#~ "Merci d'activer JavaScript pour utiliser l'option de mise à jour des "
|
2316 |
-
#~ "images."
|
2317 |
-
|
2318 |
-
#~ msgid ""
|
2319 |
-
#~ "You can add the Gallery to your page or post by clicking on %s button in "
|
2320 |
-
#~ "the content edit block using the Visual mode. If the button isn't "
|
2321 |
-
#~ "displayed, please use the shortcode %s, where * stands for gallery ID"
|
2322 |
-
#~ msgstr ""
|
2323 |
-
#~ "Vous pouvez ajouter la galerie à votre page ou votre article en cliquant "
|
2324 |
-
#~ "sur le bouton %s dans la zone d'édition du contenu en mode visuel. Si le "
|
2325 |
-
#~ "bouton n'est pas visible, vous pouvez utiliser le code court %s où * "
|
2326 |
-
#~ "représente l'ID de la galerie"
|
2327 |
-
|
2328 |
-
#~ msgid ""
|
2329 |
-
#~ "The number of images per row can be less depending on the width of the "
|
2330 |
-
#~ "parent block"
|
2331 |
-
#~ msgstr ""
|
2332 |
-
#~ "Il peut y avoir moins d'images par ligne en fonction de la largeur du "
|
2333 |
-
#~ "bloc parent"
|
2334 |
-
|
2335 |
-
#~ msgid ""
|
2336 |
-
#~ "WordPress will create a new thumbnail with the specified dimensions when "
|
2337 |
-
#~ "you upload a new photo."
|
2338 |
-
#~ msgstr ""
|
2339 |
-
#~ "WordPress créera une copie de la miniature avec les dimensions spécifiées "
|
2340 |
-
#~ "quand vous envoyez une nouvelle photo."
|
2341 |
-
|
2342 |
-
#~ msgid "For the album cover"
|
2343 |
-
#~ msgstr "Pour la vignette de l'album"
|
2344 |
-
|
2345 |
-
#~ msgid "width x height"
|
2346 |
-
#~ msgstr "largeur x hauteur"
|
2347 |
-
|
2348 |
-
#~ msgid "in px"
|
2349 |
-
#~ msgstr "en px"
|
2350 |
-
|
2351 |
-
#~ msgid "Update images for gallery"
|
2352 |
-
#~ msgstr "Mettre à jour les images pour la galerie"
|
2353 |
-
|
2354 |
-
#~ msgid "For images in the lightbox"
|
2355 |
-
#~ msgstr "Pour les images dans la boite"
|
2356 |
-
|
2357 |
-
#~ msgid "Display a full size image in the lightbox"
|
2358 |
-
#~ msgstr "Afficher une image en taille normale dans la boite"
|
2359 |
-
|
2360 |
-
#~ msgid "center"
|
2361 |
-
#~ msgstr "centré"
|
2362 |
-
|
2363 |
-
#~ msgid "Horizontal"
|
2364 |
-
#~ msgstr "Horizontale"
|
2365 |
-
|
2366 |
-
#~ msgid "Vertical"
|
2367 |
-
#~ msgstr "Verticale"
|
2368 |
-
|
2369 |
-
#~ msgid "Unlock premium options by upgrading to Pro version"
|
2370 |
-
#~ msgstr "Débloquer les options premium en migrant vers la version PRO."
|
2371 |
|
2372 |
-
|
2373 |
-
|
|
|
2374 |
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
#~ msgstr ""
|
2379 |
-
#~ "Si vous voulez juste afficher le titre de l'image dans une boite, "
|
2380 |
-
#~ "désactiver l'option"
|
2381 |
|
2382 |
-
|
2383 |
-
|
|
|
2384 |
|
2385 |
-
|
2386 |
-
|
|
|
2387 |
|
2388 |
-
|
2389 |
-
|
|
|
2390 |
|
2391 |
-
|
2392 |
-
|
|
|
2393 |
|
2394 |
-
|
2395 |
-
|
|
|
2396 |
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
#~ "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; "
|
2401 |
-
#~ "a, b, c)"
|
2402 |
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
#~ "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, "
|
2407 |
-
#~ "a)"
|
2408 |
|
2409 |
-
|
2410 |
-
|
|
|
2411 |
|
2412 |
-
|
2413 |
-
|
|
|
2414 |
|
2415 |
-
|
2416 |
-
|
|
|
2417 |
|
2418 |
-
|
2419 |
-
|
|
|
2420 |
|
2421 |
-
|
2422 |
-
|
|
|
|
|
2423 |
|
2424 |
-
|
2425 |
-
|
|
|
2426 |
|
2427 |
-
|
2428 |
-
|
|
|
2429 |
|
2430 |
-
|
2431 |
-
|
|
|
2432 |
|
2433 |
-
|
2434 |
-
|
|
|
2435 |
|
2436 |
-
|
2437 |
-
|
|
|
|
|
2438 |
|
2439 |
-
|
2440 |
-
|
|
|
2441 |
|
2442 |
-
|
2443 |
-
|
|
|
2444 |
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
#~ msgstr ""
|
2449 |
-
#~ "Décochez la case si vous avez modifié le fichier '%s' ou le fichier '%s' "
|
2450 |
-
#~ "dans le répertoire de votre thème et que vous souhaitez garder votre "
|
2451 |
-
#~ "version"
|
2452 |
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
#~ msgstr ""
|
2457 |
-
#~ "Pour éviter les conflits avec d'autres extensions, merci de cocher cette "
|
2458 |
-
#~ "case pour effectuer la renommage maintenant."
|
2459 |
|
2460 |
-
|
2461 |
-
|
|
|
2462 |
|
2463 |
-
|
2464 |
-
|
|
|
2465 |
|
2466 |
-
|
2467 |
-
|
|
|
2468 |
|
2469 |
-
|
2470 |
-
|
|
|
2471 |
|
2472 |
-
|
2473 |
-
|
|
|
2474 |
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
#~ "paramètre '%s'"
|
2479 |
|
2480 |
-
|
2481 |
-
|
|
|
2482 |
|
2483 |
-
|
2484 |
-
|
|
|
2485 |
|
2486 |
-
|
2487 |
-
|
|
|
2488 |
|
2489 |
-
|
2490 |
-
|
|
|
2491 |
|
2492 |
-
|
2493 |
-
|
|
|
2494 |
|
2495 |
-
|
2496 |
-
|
|
|
2497 |
|
2498 |
-
|
2499 |
-
|
|
|
2500 |
|
2501 |
-
|
2502 |
-
|
|
|
2503 |
|
2504 |
-
|
2505 |
-
|
|
|
2506 |
|
2507 |
-
|
2508 |
-
|
|
|
2509 |
|
2510 |
-
|
2511 |
-
|
|
|
2512 |
|
2513 |
-
|
2514 |
-
|
|
|
2515 |
|
2516 |
-
|
2517 |
-
|
|
|
2518 |
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
#~ msgstr ""
|
2523 |
-
#~ "L'attribut 'alt' permet de définir un texte alternatif pour une image, "
|
2524 |
-
#~ "quand celle-ci ne peux pas être affichée."
|
2525 |
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
#~ "filled)"
|
2530 |
-
#~ msgstr ""
|
2531 |
-
#~ "En cliquant sur la vignette vous naviguerez vers le lien (si le champ est "
|
2532 |
-
#~ "rempli) ou bien l'image sera ouverte dans une 'lightbox' (si le champ est "
|
2533 |
-
#~ "vide)"
|
2534 |
|
2535 |
-
|
2536 |
-
|
|
|
2537 |
|
2538 |
-
|
2539 |
-
|
|
|
2540 |
|
2541 |
-
|
2542 |
-
|
|
|
2543 |
|
2544 |
-
|
2545 |
-
|
|
|
2546 |
|
2547 |
-
|
2548 |
-
|
|
|
2549 |
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
#~ "Wordpress"
|
2554 |
|
2555 |
-
|
2556 |
-
|
|
|
2557 |
|
2558 |
-
|
2559 |
-
|
|
|
2560 |
|
2561 |
-
|
2562 |
-
|
|
|
2563 |
|
2564 |
-
|
2565 |
-
|
|
|
2566 |
|
2567 |
-
|
2568 |
-
|
|
|
2569 |
|
2570 |
-
|
2571 |
-
|
|
|
|
|
2572 |
|
2573 |
-
|
2574 |
-
|
|
|
2575 |
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
#~ msgstr ""
|
2580 |
-
#~ "Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
|
2581 |
-
#~ "utiliser toutes les extensions sur un seul site %s pour seulement %s par "
|
2582 |
-
#~ "mois."
|
2583 |
|
2584 |
-
|
2585 |
-
|
|
|
2586 |
|
2587 |
-
|
2588 |
-
|
|
|
2589 |
|
2590 |
-
|
2591 |
-
|
|
|
2592 |
|
2593 |
-
|
2594 |
-
|
|
|
2595 |
|
2596 |
-
|
2597 |
-
|
|
|
2598 |
|
2599 |
-
|
2600 |
-
|
|
|
2601 |
|
2602 |
-
|
2603 |
-
|
|
|
2604 |
|
2605 |
-
|
2606 |
-
|
|
|
2607 |
|
2608 |
-
|
2609 |
-
|
|
|
2610 |
|
2611 |
-
|
2612 |
-
|
|
|
2613 |
|
2614 |
-
|
2615 |
-
|
|
|
2616 |
|
2617 |
-
|
2618 |
-
|
|
|
2619 |
|
2620 |
-
|
2621 |
-
|
|
|
2622 |
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
#~ msgstr ""
|
2627 |
-
#~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
|
2628 |
-
#~ "la zone cliente en cliquant sur le lien"
|
2629 |
|
2630 |
-
|
2631 |
-
|
|
|
2632 |
|
2633 |
-
|
2634 |
-
|
|
|
|
|
2635 |
|
2636 |
-
|
2637 |
-
|
|
|
2638 |
|
2639 |
-
|
2640 |
-
|
|
|
2641 |
|
2642 |
-
|
2643 |
-
|
|
|
2644 |
|
2645 |
-
|
2646 |
-
|
|
|
2647 |
|
2648 |
-
|
2649 |
-
|
|
|
2650 |
|
2651 |
-
|
2652 |
-
|
|
|
2653 |
|
2654 |
-
|
2655 |
-
|
|
|
2656 |
|
2657 |
-
|
2658 |
-
|
|
|
2659 |
|
2660 |
-
|
2661 |
-
|
|
|
2662 |
|
2663 |
-
|
2664 |
-
|
|
|
2665 |
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
#~ "upload images (media library)"
|
2670 |
-
#~ msgstr ""
|
2671 |
-
#~ "Le répertoire temporaire de la gallery (gallery-plugin/upload/files) "
|
2672 |
-
#~ "n'est pas autorisé en écriture par votre serveur Web. Merci d'utliser les "
|
2673 |
-
#~ "fonctions standards de WP pour charger les images (Média)"
|
2674 |
|
2675 |
-
|
2676 |
-
|
|
|
2677 |
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
#~ msgstr ""
|
2686 |
-
#~ "Merci d'utiliser les fonctions de glisser/déposer pour modifier l'ordre "
|
2687 |
-
#~ "d'affichage des images. Ne pas oublier d'enregistrer l'article."
|
2688 |
|
2689 |
-
|
2690 |
-
|
|
|
2691 |
|
2692 |
-
|
2693 |
-
|
|
|
2694 |
|
2695 |
-
|
2696 |
-
|
|
|
2697 |
|
2698 |
-
|
2699 |
-
|
|
|
2700 |
|
2701 |
-
|
2702 |
-
|
|
|
2703 |
|
2704 |
-
|
2705 |
-
|
|
|
2706 |
|
2707 |
-
|
2708 |
-
|
|
|
2709 |
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
#~ msgstr ""
|
2714 |
-
#~ "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le "
|
2715 |
-
#~ "code court dans le contenu"
|
2716 |
|
2717 |
-
|
2718 |
-
|
|
|
2719 |
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
#~ msgstr ""
|
2724 |
-
#~ "Les paramètres de l'extension ont été changés. Afin de pouvoir les "
|
2725 |
-
#~ "enregistrer, merci de cliquer sur le bouton 'Enregistrer les "
|
2726 |
-
#~ "modifications'."
|
2727 |
|
2728 |
-
|
2729 |
-
|
|
|
2730 |
|
2731 |
-
|
2732 |
-
|
|
|
2733 |
|
2734 |
-
|
2735 |
-
|
|
|
2736 |
|
2737 |
-
|
2738 |
-
|
|
|
2739 |
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
#~ msgstr ""
|
2744 |
-
#~ "Si vous voulez lier des fichiers qui se trouvent déjà sur le site, merci "
|
2745 |
-
#~ "d'utiliser l'extension 'Re-attacher'"
|
2746 |
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
#~ msgstr ""
|
2751 |
-
#~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
|
2752 |
-
#~ "l'achat de l'extension), où vous pourrez faire les modifications "
|
2753 |
-
#~ "nécessaires."
|
2754 |
|
2755 |
-
|
2756 |
-
|
|
|
2757 |
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
#~ "Il est peut-être temps de passer votre extension <strong>Gallery</strong> "
|
2763 |
-
#~ "vers la version <strong>PRO</strong> !"
|
2764 |
|
2765 |
-
|
2766 |
-
|
|
|
2767 |
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
#~ msgstr ""
|
2772 |
-
#~ "Cette fonction est disponible dans le version pro de cette extension. "
|
2773 |
-
#~ "Pour plus de détails, suivre le lien"
|
2774 |
|
2775 |
-
|
2776 |
-
|
|
|
2777 |
|
2778 |
-
|
2779 |
-
|
|
|
2780 |
|
2781 |
-
|
2782 |
-
|
|
|
2783 |
|
2784 |
-
|
2785 |
-
|
|
|
2786 |
|
2787 |
-
|
2788 |
-
|
|
|
2789 |
|
2790 |
-
|
2791 |
-
|
|
|
2792 |
|
2793 |
-
|
2794 |
-
|
|
|
2795 |
|
2796 |
-
|
2797 |
-
|
|
|
2798 |
|
2799 |
-
|
2800 |
-
|
|
|
2801 |
|
2802 |
-
|
2803 |
-
|
|
|
2804 |
|
2805 |
-
|
2806 |
-
|
|
|
2807 |
|
2808 |
-
|
2809 |
-
|
|
|
2810 |
|
2811 |
-
|
2812 |
-
|
|
|
2813 |
|
2814 |
-
|
2815 |
-
|
|
|
2816 |
|
2817 |
-
|
2818 |
-
|
|
|
2819 |
|
2820 |
-
|
2821 |
-
|
|
|
|
|
2822 |
|
2823 |
-
|
2824 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: gallery 4.5.4\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-01-26 13:47+0100\n"
|
6 |
+
"PO-Revision-Date: 2018-02-20 12:55+0200\n"
|
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 |
+
"Language: fr_FR\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_html;esc_html__;esc_html_e;esc_attr__;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
25 |
msgid "Global Settings"
|
26 |
msgstr "Paramètres généraux"
|
27 |
|
28 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2771 bws_menu/bws_menu.php:556
|
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 |
|
64 |
|
65 |
#: gallery-plugin.php:342 includes/class-gllr-settings.php:941
|
66 |
msgid "Search Galleries"
|
67 |
+
msgstr "Rechercher des galeries"
|
68 |
|
69 |
#: gallery-plugin.php:343
|
70 |
msgid "No Gallery found"
|
71 |
+
msgstr "Pas de galerie trouvées"
|
72 |
|
73 |
#: gallery-plugin.php:365 gallery-plugin.php:1600 gallery-plugin.php:2917
|
74 |
#: gallery-plugin.php:2925 gallery-plugin.php:2963 gallery-plugin.php:2986
|
75 |
#: gallery-plugin.php:3171
|
76 |
msgid "Gallery Categories"
|
77 |
+
msgstr "Catégories des galeries"
|
78 |
|
79 |
#: gallery-plugin.php:366 gallery-plugin.php:805
|
80 |
msgid "Gallery Category"
|
81 |
+
msgstr "Catégories des galeries"
|
82 |
|
83 |
#: gallery-plugin.php:367
|
84 |
msgid "Add Gallery Category"
|
86 |
|
87 |
#: gallery-plugin.php:368
|
88 |
msgid "Add New Gallery Category"
|
89 |
+
msgstr "Ajouter une nouvelle catégorie de galeries"
|
90 |
|
91 |
#: gallery-plugin.php:369 gallery-plugin.php:370
|
92 |
msgid "Edit Gallery Category"
|
94 |
|
95 |
#: gallery-plugin.php:371
|
96 |
msgid "New Gallery Category"
|
97 |
+
msgstr "Ajouter une nouvelle catégorie de galeries"
|
98 |
|
99 |
#: gallery-plugin.php:372 gallery-plugin.php:373
|
100 |
msgid "View Gallery Category"
|
101 |
+
msgstr "Voir les catégories de galeries"
|
102 |
|
103 |
#: gallery-plugin.php:374
|
104 |
msgid "Find Gallery Category"
|
105 |
+
msgstr "Trouver une catégorie de galeries"
|
106 |
|
107 |
#: gallery-plugin.php:375
|
108 |
msgid "No Gallery Categories found"
|
109 |
+
msgstr "Aucune catégorie de galeries trouvée"
|
110 |
|
111 |
#: gallery-plugin.php:376
|
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:377
|
116 |
msgid "Parent Gallery Category"
|
118 |
|
119 |
#: gallery-plugin.php:378
|
120 |
msgid "Gallery Categories list navigation"
|
121 |
+
msgstr "Navigation dans la liste des catégories de galeries"
|
122 |
|
123 |
#: gallery-plugin.php:379
|
124 |
msgid "Gallery Categories list"
|
125 |
+
msgstr "Liste des catégories des galeries"
|
126 |
|
127 |
#: gallery-plugin.php:455
|
128 |
msgid "Gallery Shortcode"
|
129 |
msgstr "Code court de la galerie"
|
130 |
|
131 |
#: gallery-plugin.php:464
|
132 |
+
msgid "Add a single gallery with images to your posts, pages, custom post types or widgets by using the following shortcode:"
|
133 |
+
msgstr "Ajouter une galerie avec des images dans vos articles, pages, types d’articles personnalisés ou widgets en utilisant le code court :"
|
|
|
|
|
|
|
|
|
134 |
|
135 |
#: gallery-plugin.php:468
|
136 |
+
msgid "Add a gallery cover including featured image, description, and a link to your single gallery using the following shortcode:"
|
137 |
+
msgstr "Ajouter une présentation de votre galerie avec une image à la une, une description et un lien vers votre galerie en utilisant le code court :"
|
|
|
|
|
|
|
|
|
138 |
|
139 |
#: gallery-plugin.php:581
|
140 |
msgid "Note"
|
142 |
|
143 |
#: gallery-plugin.php:581
|
144 |
#, php-format
|
145 |
+
msgid "When deleting a category, the galleries that belong to this category will not be deleted. These galleries will be moved to the category %s."
|
146 |
+
msgstr "Quand vous supprimer une catégorie, les galeries qui avaient cette catégorie ne sont pas supprimées. Ces galeries seront affectées à la catégorie %s."
|
|
|
|
|
147 |
|
148 |
#: gallery-plugin.php:594 gallery-plugin.php:1599
|
149 |
msgid "Shortcode"
|
151 |
|
152 |
#: gallery-plugin.php:640
|
153 |
msgid "All Gallery Categories"
|
154 |
+
msgstr "Toutes les catégories de galeries"
|
155 |
|
156 |
#: gallery-plugin.php:717
|
157 |
msgid "You can't delete default gallery category."
|
159 |
|
160 |
#: gallery-plugin.php:1089 gallery-plugin.php:1196 gallery-plugin.php:2108
|
161 |
msgid "Sorry, nothing found."
|
162 |
+
msgstr "Désolé, rien n’a été trouvé."
|
163 |
|
164 |
#: gallery-plugin.php:1596
|
165 |
msgid "Featured Image"
|
186 |
#: gallery-plugin.php:1688
|
187 |
#, php-format
|
188 |
msgid "%s Settings"
|
189 |
+
msgstr "%s paramètres"
|
190 |
|
191 |
#: gallery-plugin.php:1715 gallery-plugin.php:1733
|
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:1716 bws_menu/bws_functions.php:924
|
199 |
msgid "FAQ"
|
200 |
msgstr "FAQ"
|
201 |
|
202 |
+
#: gallery-plugin.php:1717 bws_menu/bws_menu.php:315
|
203 |
msgid "Support"
|
204 |
+
msgstr "Support"
|
205 |
|
206 |
#: gallery-plugin.php:1756
|
207 |
msgid "Updating images..."
|
209 |
|
210 |
#: gallery-plugin.php:1757
|
211 |
msgid "No images found."
|
212 |
+
msgstr "Pas d’image trouvée."
|
213 |
|
214 |
#: gallery-plugin.php:1758
|
215 |
msgid "All images were updated."
|
236 |
"'Annuler' pour arrêter, 'Ok' pour supprimer"
|
237 |
|
238 |
#: gallery-plugin.php:1773
|
239 |
+
msgid "Switching to another mode, all unsaved data will be lost. Save data before switching?"
|
240 |
+
msgstr "Basculer vers un autre mode, toutes les données non enregistrées seront perdues. Enregistrer les données avant de basculer ?"
|
|
|
|
|
|
|
|
|
241 |
|
242 |
#: gallery-plugin.php:1774
|
243 |
msgid "Insert Media"
|
249 |
|
250 |
#: gallery-plugin.php:2300 gallery-plugin.php:2326
|
251 |
msgid "Image size not defined"
|
252 |
+
msgstr "Taille de l’image non définie"
|
253 |
|
254 |
#: gallery-plugin.php:2315
|
255 |
+
msgid "Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please reload images manually."
|
256 |
+
msgstr "Il n’est possible de mettre à jour que les images de type PNG, JPEG, GIF, WPMP or XBM. Pour les autres, merci de faire une mise à jour manuelle."
|
|
|
|
|
|
|
|
|
257 |
|
258 |
#: gallery-plugin.php:2355 gallery-plugin.php:2358 gallery-plugin.php:2363
|
259 |
msgid "Invalid path"
|
277 |
|
278 |
#: gallery-plugin.php:2533
|
279 |
msgid "No images found"
|
280 |
+
msgstr "Pas d’image trouvée"
|
281 |
|
282 |
#: gallery-plugin.php:2585
|
283 |
msgid "Select bulk action"
|
284 |
+
msgstr "Sélectionne l’action en masse"
|
285 |
|
286 |
#: gallery-plugin.php:2587
|
287 |
msgid "Bulk Actions"
|
324 |
msgstr "URL"
|
325 |
|
326 |
#: gallery-plugin.php:2630 gallery-plugin.php:2744
|
327 |
+
msgid "Enter your custom URL to link this image to other page or file. Leave blank to open a full size image."
|
328 |
+
msgstr "Saisir votre URL personnalisée pour faire un lien de cette image vers une page ou un article. Laisser vide pour ouvrir l’image en plein écran."
|
|
|
|
|
|
|
|
|
329 |
|
330 |
#: gallery-plugin.php:2709
|
331 |
msgid "Remove Image from Gallery"
|
333 |
|
334 |
#: gallery-plugin.php:2712
|
335 |
msgid "Edit Image Info"
|
336 |
+
msgstr "Modifier les informations de l’image"
|
337 |
|
338 |
#: gallery-plugin.php:2713
|
339 |
msgid "Deselect"
|
361 |
|
362 |
#: gallery-plugin.php:2766
|
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:2771
|
367 |
msgid "Go Pro"
|
369 |
|
370 |
#: gallery-plugin.php:2777
|
371 |
msgid "Edit more details"
|
372 |
+
msgstr "Modifier avec plus de détails"
|
373 |
|
374 |
#: gallery-plugin.php:2779
|
375 |
msgid "Remove from Gallery"
|
387 |
|
388 |
#: gallery-plugin.php:2834
|
389 |
msgid "Edit Attachment Info"
|
390 |
+
msgstr "Modifier les informations"
|
391 |
|
392 |
#: gallery-plugin.php:2871 gallery-plugin.php:2884
|
393 |
msgid "Edit"
|
420 |
|
421 |
#: gallery-plugin.php:2916
|
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:2961
|
426 |
msgid "Select Gallery Category"
|
432 |
|
433 |
#: gallery-plugin.php:3022
|
434 |
msgid "Display as dropdown"
|
435 |
+
msgstr "Montrer sous la forme d’une liste déroulante"
|
436 |
|
437 |
#: gallery-plugin.php:3024
|
438 |
msgid "Show gallery counts"
|
439 |
+
msgstr "Monter le nombre de galeries"
|
440 |
|
441 |
#: gallery-plugin.php:3026
|
442 |
msgid "Show hierarchy"
|
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:3173 bws_menu/bws_functions.php:213
|
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 |
|
462 |
msgstr "Pas de titre"
|
463 |
|
464 |
#: gallery-plugin.php:3192
|
465 |
+
msgid "Display an album image with the description and the link to a single gallery page"
|
466 |
+
msgstr "Afficher une image pour l’album avec la description et un lien vers une page contenant la galerie"
|
|
|
|
|
|
|
|
|
467 |
|
468 |
#: gallery-plugin.php:3196
|
469 |
msgid "Sorry, no gallery found."
|
470 |
+
msgstr "Désolé, rien n’a été trouvé."
|
471 |
|
472 |
+
#: bws_menu/bws_functions.php:73 bws_menu/bws_functions.php:191
|
473 |
+
msgid "requires"
|
474 |
+
msgstr "obligatoire"
|
475 |
|
476 |
+
#: bws_menu/bws_functions.php:75
|
477 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
478 |
+
msgstr "ou supérieure, c’est pourquoi il a été désactivé ! Merci de faire la mise à jour de WordPress puis de ré-essayer."
|
479 |
|
480 |
+
#: bws_menu/bws_functions.php:76
|
481 |
+
msgid "Back to the WordPress"
|
482 |
+
msgstr "Retour à WordPress"
|
483 |
|
484 |
+
#: bws_menu/bws_functions.php:78
|
485 |
+
msgid "Plugins page"
|
486 |
+
msgstr "Page des extensions"
|
487 |
|
488 |
+
#: bws_menu/bws_functions.php:92
|
489 |
+
msgid "Like the plugin?"
|
490 |
+
msgstr "Voter pour l’extension"
|
491 |
|
492 |
+
#: bws_menu/bws_functions.php:93
|
493 |
+
#, php-format
|
494 |
+
msgid "%s reviews"
|
495 |
+
msgstr "%s appréciations"
|
496 |
|
497 |
+
#: bws_menu/bws_functions.php:94
|
498 |
+
msgid "Rate it"
|
499 |
+
msgstr "Notez là"
|
500 |
|
501 |
+
#: bws_menu/bws_functions.php:103
|
502 |
+
msgid "Need help?"
|
503 |
+
msgstr "Besoin d’aide ?"
|
|
|
|
|
504 |
|
505 |
+
#: bws_menu/bws_functions.php:104 bws_menu/bws_functions.php:919
|
506 |
+
#: bws_menu/class-bws-settings.php:1058
|
507 |
+
msgid "Visit Help Center"
|
508 |
+
msgstr "Visiter le site du support"
|
509 |
|
510 |
+
#: bws_menu/bws_functions.php:107
|
511 |
+
msgid "Want to support the plugin?"
|
512 |
+
msgstr "Voter pour l’extension"
|
513 |
|
514 |
+
#: bws_menu/bws_functions.php:108 bws_menu/bws_menu.php:560
|
515 |
+
msgid "Donate"
|
516 |
+
msgstr "Don"
|
517 |
|
518 |
+
#: bws_menu/bws_functions.php:128
|
519 |
+
msgid "WARNING: Illegal use notification"
|
520 |
+
msgstr "AVERTISSEMENT : Notification d’utilisation abusive"
|
521 |
|
522 |
+
#: bws_menu/bws_functions.php:128
|
523 |
+
msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using your personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
524 |
+
msgstr "Vous ne pouvez utilisez qu’une licence de la version Pro de l’extension pour un seul domaine. Merci de vérifier et de modifier votre licence ou votre domaine si nécessaire en utilisant votre zone client. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l’extension sera rendue inactive."
|
525 |
|
526 |
+
#: bws_menu/bws_functions.php:128 bws_menu/bws_functions.php:341
|
527 |
+
#: bws_menu/bws_menu.php:631 bws_menu/class-bws-settings.php:144
|
528 |
+
msgid "Learn More"
|
529 |
+
msgstr "En savoir plus"
|
530 |
|
531 |
+
#: bws_menu/bws_functions.php:145
|
532 |
+
msgid "Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license"
|
533 |
+
msgstr "Information :Votre licence d’évaluation est terminée. Pour continuer à utiliser cette extension, vous devez acheter une licence PRO."
|
|
|
534 |
|
535 |
+
#: bws_menu/bws_functions.php:147
|
536 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates, you should extend it."
|
537 |
+
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l’extension vous devez la renouveler."
|
538 |
|
539 |
+
#: bws_menu/bws_functions.php:147 bws_menu/bws_functions.php:389
|
540 |
+
#: bws_menu/deprecated.php:586
|
541 |
+
msgid "Learn more"
|
542 |
+
msgstr "En savoir plus"
|
543 |
|
544 |
+
#: bws_menu/bws_functions.php:165
|
545 |
#, php-format
|
546 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
547 |
+
msgstr "Avertissement : vous utilisez la version d’évaluation de l’extension %s."
|
|
|
548 |
|
549 |
+
#: bws_menu/bws_functions.php:167
|
550 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
551 |
+
msgstr "Avertissement : vous utilisez la version d’évaluation de l’extension."
|
|
|
|
|
|
|
|
|
552 |
|
553 |
+
#: bws_menu/bws_functions.php:170
|
554 |
+
msgid "The Pro Trial license will expire on"
|
555 |
+
msgstr "La licence PRO d’évaluation expirera le"
|
556 |
|
557 |
+
#: bws_menu/bws_functions.php:193
|
558 |
+
msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
|
559 |
+
msgstr "ou plus ! Nous ne garantissons pas que notre extension fonctionne correctement. Merci de mettre à jour WordPress avec la dernière version."
|
560 |
|
561 |
+
#: bws_menu/bws_functions.php:208
|
562 |
+
#, php-format
|
563 |
+
msgid "Thank you for installing %s plugin!"
|
564 |
+
msgstr "Merci d’avoir installé l’extension %s !"
|
565 |
|
566 |
+
#: bws_menu/bws_functions.php:210
|
567 |
+
msgid "Let's get started"
|
568 |
+
msgstr "Démarrer"
|
569 |
|
570 |
+
#: bws_menu/bws_functions.php:214 bws_menu/bws_functions.php:246
|
571 |
+
msgid "Add New"
|
572 |
+
msgstr "Ajouter"
|
|
|
573 |
|
574 |
+
#: bws_menu/bws_functions.php:218 bws_menu/bws_functions.php:228
|
575 |
+
#: bws_menu/bws_functions.php:332 bws_menu/bws_functions.php:385
|
576 |
+
#: bws_menu/bws_functions.php:487
|
577 |
+
#: includes/demo-data/class-bws-demo-data.php:587
|
578 |
+
msgid "Close notice"
|
579 |
+
msgstr "Fermer l’avertissement"
|
580 |
|
581 |
+
#: bws_menu/bws_functions.php:233
|
582 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
583 |
+
msgstr "Merci d’avoir installé des extensions de BestWebSoft !"
|
584 |
|
585 |
+
#: bws_menu/bws_functions.php:235
|
586 |
+
msgid "More Details"
|
587 |
+
msgstr "Plus de détails"
|
|
|
|
|
|
|
588 |
|
589 |
+
#: bws_menu/bws_functions.php:236
|
590 |
+
msgid "Less Details"
|
591 |
+
msgstr "Moins de détails"
|
592 |
|
593 |
+
#: bws_menu/bws_functions.php:264
|
594 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
595 |
+
msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici :"
|
|
|
596 |
|
597 |
+
#: bws_menu/bws_functions.php:278
|
598 |
+
msgid "This function(-s) will be removed over time. Please update the product(-s)."
|
599 |
+
msgstr "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos produits."
|
|
|
|
|
|
|
|
|
600 |
|
601 |
+
#: bws_menu/bws_functions.php:337
|
602 |
+
msgid "It’s time to upgrade your"
|
603 |
+
msgstr "C’est le moment de mettre à jour votre "
|
604 |
|
605 |
+
#: bws_menu/bws_functions.php:337
|
606 |
+
msgid "to"
|
607 |
+
msgstr "à"
|
|
|
|
|
|
|
|
|
|
|
608 |
|
609 |
+
#: bws_menu/bws_functions.php:337
|
610 |
+
msgid "version!"
|
611 |
+
msgstr "version !"
|
612 |
|
613 |
+
#: bws_menu/bws_functions.php:338
|
614 |
+
msgid "Extend standard plugin functionality with new great options."
|
615 |
+
msgstr "Étend les fonctionnalités classiques de l’extension avec des nouvelles options."
|
|
|
616 |
|
617 |
+
#: bws_menu/bws_functions.php:389
|
618 |
+
#, php-format
|
619 |
+
msgid "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
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 |
+
#: bws_menu/bws_functions.php:482
|
623 |
+
#, php-format
|
624 |
+
msgid "Thank you for choosing %s plugin!"
|
625 |
+
msgstr "Merci d’avoir choisi l’extension %s !"
|
626 |
|
627 |
+
#: bws_menu/bws_functions.php:483
|
628 |
+
msgid "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!"
|
629 |
+
msgstr "Si vous avez une fonctionnalité, une suggestion ou une idée que vous souhaitez pour cette extension, nous serons ravis d’en parler avec vous !"
|
630 |
|
631 |
+
#: bws_menu/bws_functions.php:484
|
632 |
+
msgid "Suggest a Feature"
|
633 |
+
msgstr "Proposer une fonctionnalité"
|
634 |
|
635 |
+
#: bws_menu/bws_functions.php:500 bws_menu/class-bws-settings.php:540
|
636 |
+
#: bws_menu/class-bws-settings.php:543 bws_menu/class-bws-settings.php:595
|
637 |
+
#: bws_menu/class-bws-settings.php:598
|
638 |
+
msgid "Notice"
|
639 |
+
msgstr "Avertissement"
|
640 |
|
641 |
+
#: bws_menu/bws_functions.php:500
|
642 |
+
msgid "The plugin's settings have been changed."
|
643 |
+
msgstr "Les paramètres de l’extension ont été modifiés."
|
644 |
|
645 |
+
#: bws_menu/bws_functions.php:501 bws_menu/class-bws-settings.php:183
|
646 |
+
#: bws_menu/class-bws-settings.php:203 bws_menu/deprecated.php:642
|
647 |
+
msgid "Save Changes"
|
648 |
+
msgstr "Enregistrer les modifications"
|
|
|
649 |
|
650 |
+
#: bws_menu/bws_functions.php:515
|
651 |
+
msgid "You can always look at premium options by checking the \"Pro Options\" in the \"Misc\" tab."
|
652 |
+
msgstr "Vous pouvez toujours consulter les options premium en cliquant sur le lien \"Voir les fonctionnalités de la version PRO\" dans l’onglet divers."
|
653 |
|
654 |
+
#: bws_menu/bws_functions.php:653
|
655 |
+
msgid "Add BWS Shortcode"
|
656 |
+
msgstr "Ajouter le code court BWS"
|
|
|
657 |
|
658 |
+
#: bws_menu/bws_functions.php:654
|
659 |
+
msgid "Add BWS Plugins Shortcode"
|
660 |
+
msgstr "Ajouter le code court BWS"
|
661 |
|
662 |
+
#: bws_menu/bws_functions.php:673
|
663 |
+
msgid "Add shortcode"
|
664 |
+
msgstr "Ajouter le code court"
|
665 |
|
666 |
+
#: bws_menu/bws_functions.php:673
|
667 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
668 |
+
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
|
|
|
|
|
|
|
|
669 |
|
670 |
+
#: bws_menu/bws_functions.php:729 includes/class-gllr-settings.php:332
|
671 |
+
#: includes/class-gllr-settings.php:389 includes/class-gllr-settings.php:433
|
672 |
+
#: includes/class-gllr-settings.php:483 includes/class-gllr-settings.php:621
|
673 |
+
#: includes/class-gllr-settings.php:709 includes/class-gllr-settings.php:745
|
674 |
+
#: includes/class-gllr-settings.php:795 includes/class-gllr-settings.php:923
|
675 |
+
msgid "Close"
|
676 |
+
msgstr "Fermer"
|
677 |
|
678 |
+
#: bws_menu/bws_functions.php:821
|
679 |
+
msgid "Are you sure you want to restore default settings?"
|
680 |
+
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
|
|
681 |
|
682 |
+
#: bws_menu/bws_functions.php:824
|
683 |
+
msgid "Yes, restore all settings"
|
684 |
+
msgstr "Oui, remettre les valeurs par défaut"
|
685 |
|
686 |
+
#: bws_menu/bws_functions.php:825 includes/demo-data/class-bws-demo-data.php:61
|
687 |
+
msgid "No, go back to the settings page"
|
688 |
+
msgstr "Non, retourner à la page des paramètres"
|
689 |
|
690 |
+
#: bws_menu/bws_functions.php:867
|
691 |
+
msgid "Plugin"
|
692 |
+
msgstr "Extension"
|
693 |
+
|
694 |
+
#: bws_menu/bws_functions.php:876
|
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 "by %s"
|
854 |
+
msgstr "par %s"
|
855 |
|
856 |
+
#: bws_menu/bws_menu.php:207
|
857 |
+
msgid "Server Environment"
|
858 |
+
msgstr "Environnent serveur"
|
859 |
|
860 |
+
#: bws_menu/bws_menu.php:209
|
861 |
+
msgid "Operating System"
|
862 |
+
msgstr "Operating System"
|
863 |
|
864 |
+
#: bws_menu/bws_menu.php:210
|
865 |
+
msgid "Server"
|
866 |
+
msgstr "Server"
|
|
|
|
|
|
|
|
|
867 |
|
868 |
+
#: bws_menu/bws_menu.php:211
|
869 |
+
msgid "PHP Version"
|
870 |
+
msgstr "PHP Version"
|
871 |
|
872 |
+
#: bws_menu/bws_menu.php:212
|
873 |
+
msgid "PHP Allow URL fopen"
|
874 |
+
msgstr "PHP Allow URL fopen"
|
875 |
|
876 |
+
#: bws_menu/bws_menu.php:213
|
877 |
+
msgid "PHP Memory Limit"
|
878 |
+
msgstr "PHP Memory Limit"
|
879 |
|
880 |
+
#: bws_menu/bws_menu.php:214
|
881 |
+
msgid "Memory Usage"
|
882 |
+
msgstr "Memory usage"
|
883 |
|
884 |
+
#: bws_menu/bws_menu.php:215
|
885 |
+
msgid "PHP Max Upload Size"
|
886 |
+
msgstr "PHP Max Upload Size"
|
|
|
|
|
|
|
|
|
887 |
|
888 |
+
#: bws_menu/bws_menu.php:216
|
889 |
+
msgid "PHP Max Post Size"
|
890 |
+
msgstr "PHP Max Post Size"
|
891 |
|
892 |
+
#: bws_menu/bws_menu.php:217
|
893 |
+
msgid "PHP Max Script Execute Time"
|
894 |
+
msgstr "PHP Max Script Execute Time"
|
|
|
|
|
895 |
|
896 |
+
#: bws_menu/bws_menu.php:218
|
897 |
+
msgid "PHP Exif support"
|
898 |
+
msgstr "PHP Exif support"
|
899 |
|
900 |
+
#: bws_menu/bws_menu.php:219
|
901 |
+
msgid "PHP IPTC support"
|
902 |
+
msgstr "PHP IPTC support"
|
903 |
|
904 |
+
#: bws_menu/bws_menu.php:220
|
905 |
+
msgid "PHP XML support"
|
906 |
+
msgstr "PHP XML support"
|
|
|
|
|
907 |
|
908 |
+
#: bws_menu/bws_menu.php:226
|
909 |
+
msgid "Database"
|
910 |
+
msgstr "Base de données"
|
911 |
|
912 |
+
#: bws_menu/bws_menu.php:228
|
913 |
+
msgid "WP DB version"
|
914 |
+
msgstr "WordPress DB Version"
|
915 |
|
916 |
+
#: bws_menu/bws_menu.php:229
|
917 |
+
msgid "MySQL version"
|
918 |
+
msgstr "MYSQL Version"
|
919 |
|
920 |
+
#: bws_menu/bws_menu.php:230
|
921 |
+
msgid "SQL Mode"
|
922 |
+
msgstr "SQL Mode"
|
923 |
|
924 |
+
#: bws_menu/bws_menu.php:234
|
925 |
+
msgid "Active Plugins"
|
926 |
+
msgstr "Extensions actives"
|
927 |
|
928 |
+
#: bws_menu/bws_menu.php:239
|
929 |
+
msgid "Inactive Plugins"
|
930 |
+
msgstr "Extensions inactives"
|
931 |
|
932 |
+
#: bws_menu/bws_menu.php:260
|
933 |
+
msgid "Please enter a valid email address."
|
934 |
+
msgstr "Merci de saisir une adresse e-mail valide."
|
935 |
|
936 |
+
#: bws_menu/bws_menu.php:262
|
937 |
+
#, php-format
|
938 |
+
msgid "Email with system info is sent to %s."
|
939 |
+
msgstr "Le courriel avec les informations système est envoyé à %s."
|
940 |
|
941 |
+
#: bws_menu/bws_menu.php:266
|
942 |
+
msgid "Thank you for contacting us."
|
943 |
+
msgstr "Merci de nous avoir contacté."
|
944 |
|
945 |
+
#: bws_menu/bws_menu.php:289
|
946 |
+
msgid "Sorry, email message could not be delivered."
|
947 |
+
msgstr "Désolé, votre e-mail n’a pas pu être envoyé."
|
948 |
|
949 |
+
#: bws_menu/bws_menu.php:305 bws_menu/bws_menu.php:309
|
950 |
+
#: bws_menu/bws_menu.php:358 bws_menu/deprecated.php:91
|
951 |
+
msgid "Plugins"
|
952 |
+
msgstr "Extensions"
|
953 |
|
954 |
+
#: bws_menu/bws_menu.php:306 bws_menu/bws_menu.php:310
|
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:594
|
2083 |
+
msgid "Center"
|
2084 |
+
msgstr "Centré"
|
2085 |
|
2086 |
+
#: includes/class-gllr-settings.php:596
|
2087 |
+
msgid "Select the column alignment."
|
2088 |
+
msgstr "Choisir l’alignement des colonnes."
|
2089 |
|
2090 |
+
#: includes/class-gllr-settings.php:600
|
2091 |
+
msgid "Cover Image Size"
|
2092 |
+
msgstr "Taille de l’image de couverture"
|
2093 |
|
2094 |
+
#: includes/class-gllr-settings.php:608
|
2095 |
+
msgid "Maximum cover image size. Custom uses the Image Dimensions values."
|
2096 |
+
msgstr "Taille maximum de l’image de couverture. Utiliser les dimensions personnalisées de l’image."
|
2097 |
|
2098 |
+
#: includes/class-gllr-settings.php:612
|
2099 |
+
msgid "Custom Cover Image Size"
|
2100 |
+
msgstr "Taille personnalisée de l’image de couverture"
|
|
|
2101 |
|
2102 |
+
#: includes/class-gllr-settings.php:625
|
2103 |
+
msgid "Crop Cover Images"
|
2104 |
+
msgstr "Réduire les images de couverture"
|
2105 |
|
2106 |
+
#: includes/class-gllr-settings.php:627
|
2107 |
+
msgid "Enable to crop images using the sizes defined for Custom Cover Image Size. Disable to resize images automatically using their aspect ratio."
|
2108 |
+
msgstr "Activer pour réduire les images de couverture en utilisant la taille définie dans le champ de personnalisation. Désactiver pour restaurer les images automatiquement en utilisant leur aspect d’origine."
|
2109 |
|
2110 |
+
#: includes/class-gllr-settings.php:656
|
2111 |
+
msgid "Cover Image Border"
|
2112 |
+
msgstr "Bordure de l’image de couverture"
|
2113 |
|
2114 |
+
#: includes/class-gllr-settings.php:658
|
2115 |
+
msgid "Enable cover images border using the styles defined for Image Border Size and Color."
|
2116 |
+
msgstr "Activer les bordures de l’image de couverture avec la taille et la couleur définies."
|
2117 |
|
2118 |
+
#: includes/class-gllr-settings.php:662
|
2119 |
+
msgid "Cover Image Border Size"
|
2120 |
+
msgstr "Taille de la bordure de l’image de couverture"
|
2121 |
|
2122 |
+
#: includes/class-gllr-settings.php:665
|
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:669
|
2128 |
+
msgid "Cover Image Border Color"
|
2129 |
+
msgstr "Couleur de la bordure de l’image de couverture"
|
2130 |
|
2131 |
+
#: includes/class-gllr-settings.php:675
|
2132 |
+
msgid "Sort Albums by"
|
2133 |
+
msgstr "Trier les albums par"
|
|
|
|
|
|
|
|
|
2134 |
|
2135 |
+
#: includes/class-gllr-settings.php:678
|
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 "Choisissez l’ordre de tri de vos galeries dans la page des albums."
|
2154 |
|
2155 |
+
#: includes/class-gllr-settings.php:691
|
2156 |
+
msgid "Arrange Albums by"
|
2157 |
+
msgstr "Tirer les albums par"
|
2158 |
|
2159 |
+
#: includes/class-gllr-settings.php:700
|
2160 |
+
msgid "Read More Link Label"
|
2161 |
+
msgstr "Texte pour le lien \"En savoir plus\""
|
2162 |
|
2163 |
+
#: includes/class-gllr-settings.php:713
|
2164 |
+
msgid "Instant Lightbox"
|
2165 |
+
msgstr "Lightbox rapide"
|
2166 |
|
2167 |
+
#: includes/class-gllr-settings.php:716
|
2168 |
+
msgid "Enable to display all images in the lightbox after clicking cover image or URL instead of going to a single gallery page."
|
2169 |
+
msgstr "Activer pour afficher toutes les images dans une 'lightbox' après avoir cliquer sur l’image de couverture ou le lien au lieu d’une page avec la galerie"
|
2170 |
|
2171 |
+
#: includes/class-gllr-settings.php:730
|
2172 |
+
msgid "Lightbox Settings"
|
2173 |
+
msgstr "Paramètres lightbox"
|
2174 |
|
2175 |
+
#: includes/class-gllr-settings.php:735
|
2176 |
+
msgid "Enable Lightbox"
|
2177 |
+
msgstr "Activer Lightbox"
|
2178 |
|
2179 |
+
#: includes/class-gllr-settings.php:738
|
2180 |
+
msgid "Enable to show the lightbox when clicking on gallery images."
|
2181 |
+
msgstr "Activer pour voir la lightbox lorsque l’on clique sur une image de la galerie."
|
2182 |
|
2183 |
+
#: includes/class-gllr-settings.php:756
|
2184 |
+
msgid "Select the maximum gallery image size for the lightbox view. \"Default\" will display the original, full size image."
|
2185 |
+
msgstr "Choisissez la taille maximum de l’image pour la lightbox. \"Défaut\" affichera l’image d’origine dans sa taille d’origine."
|
2186 |
|
2187 |
+
#: includes/class-gllr-settings.php:760
|
2188 |
+
msgid "Overlay Color"
|
2189 |
+
msgstr "Couleur de superposition"
|
|
|
|
|
|
|
2190 |
|
2191 |
+
#: includes/class-gllr-settings.php:766
|
2192 |
+
msgid "Overlay Opacity"
|
2193 |
+
msgstr "Opacité de la superposition"
|
2194 |
|
2195 |
+
#: includes/class-gllr-settings.php:769
|
2196 |
+
#, php-format
|
2197 |
+
msgid "Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max is %s)."
|
2198 |
+
msgstr "Opacité pour la superposition de Lightbox. Laisser vide pour ne pas utiliser l’opacité (par défaut %s, max %s)."
|
2199 |
|
2200 |
+
#: includes/class-gllr-settings.php:779
|
2201 |
+
msgid "Slideshow"
|
2202 |
+
msgstr "Diaporama"
|
2203 |
|
2204 |
+
#: includes/class-gllr-settings.php:781
|
2205 |
+
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
2206 |
+
msgstr "Activer pour lancer le diaporama automatiquement quand la lightbox est utilisée."
|
2207 |
|
2208 |
+
#: includes/class-gllr-settings.php:785
|
2209 |
+
msgid "Slideshow Duration"
|
2210 |
+
msgstr "Durée du diaporama"
|
2211 |
|
2212 |
+
#: includes/class-gllr-settings.php:787
|
2213 |
+
msgid "ms"
|
2214 |
+
msgstr "ms"
|
2215 |
|
2216 |
+
#: includes/class-gllr-settings.php:788
|
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:799
|
2221 |
+
msgid "Lightbox Helpers"
|
2222 |
+
msgstr "Lightbox helper"
|
2223 |
|
2224 |
+
#: includes/class-gllr-settings.php:801
|
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:805
|
2229 |
+
msgid "Lightbox Thumbnails"
|
2230 |
+
msgstr "Vignettes de la lightbox"
|
2231 |
|
2232 |
+
#: includes/class-gllr-settings.php:807
|
2233 |
+
msgid "Enable to use a lightbox helper navigation between images."
|
2234 |
+
msgstr "Activer pour utiliser une aide de navigation dans la lightbox entre les images."
|
2235 |
|
2236 |
+
#: includes/class-gllr-settings.php:811
|
2237 |
+
msgid "Lightbox Thumbnails Position"
|
2238 |
+
msgstr "Position des vignettes de la lightbox"
|
2239 |
|
2240 |
+
#: includes/class-gllr-settings.php:814
|
2241 |
+
msgid "Top"
|
2242 |
+
msgstr "Haut"
|
|
|
|
|
|
|
|
|
|
|
2243 |
|
2244 |
+
#: includes/class-gllr-settings.php:819
|
2245 |
+
msgid "Lightbox Button Label"
|
2246 |
+
msgstr "Label du bouton pour Lightbox"
|
2247 |
|
2248 |
+
#: includes/class-gllr-settings.php:821
|
2249 |
+
msgid "Read More"
|
2250 |
+
msgstr "En savoir plus..."
|
2251 |
|
2252 |
+
#: includes/class-gllr-settings.php:831
|
2253 |
+
msgid "Download Button"
|
2254 |
+
msgstr "Bouton de téléchargement"
|
|
|
|
|
|
|
2255 |
|
2256 |
+
#: includes/class-gllr-settings.php:833
|
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:837
|
2261 |
+
msgid "Single Lightbox"
|
2262 |
+
msgstr "Lightbox simple"
|
2263 |
|
2264 |
+
#: includes/class-gllr-settings.php:839
|
2265 |
+
msgid "Enable to use a single lightbox for multiple galleries located on a single page."
|
2266 |
+
msgstr "Activer pour utiliser un seul diaporama pour plusieurs galeries se trouvant sur la même page."
|
2267 |
|
2268 |
+
#: includes/class-gllr-settings.php:849
|
2269 |
+
msgid "Social Sharing Buttons Settings"
|
2270 |
+
msgstr "Paramètres des boutons des réseaux sociaux"
|
2271 |
|
2272 |
+
#: includes/class-gllr-settings.php:857
|
2273 |
+
msgid "Social Buttons"
|
2274 |
+
msgstr "Boutons pour les réseaux sociaux"
|
2275 |
|
2276 |
+
#: includes/class-gllr-settings.php:859
|
2277 |
+
msgid "Enable social sharing buttons in the lightbox."
|
2278 |
+
msgstr "Afficher les boutons de partage sur les réseaux sociaux dans la lightbox"
|
2279 |
|
2280 |
+
#: includes/class-gllr-settings.php:863
|
2281 |
+
msgid "Social Networks"
|
2282 |
+
msgstr "Réseaux sociaux"
|
2283 |
|
2284 |
+
#: includes/class-gllr-settings.php:874
|
2285 |
+
msgid "Counter"
|
2286 |
+
msgstr "Compteur"
|
|
|
|
|
|
|
2287 |
|
2288 |
+
#: includes/class-gllr-settings.php:877
|
2289 |
+
msgid "Enable to show likes counter for each social button (not available for Google +1)."
|
2290 |
+
msgstr "Activer pour voir le nombre de \"J’aime\" sur chaque bouton des réseaux sociaux (pas disponible pour Google+1)."
|
2291 |
|
2292 |
+
#: includes/class-gllr-settings.php:892
|
2293 |
+
msgid "Demo Data"
|
2294 |
+
msgstr "Données de démonstration"
|
|
|
|
|
|
|
|
|
2295 |
|
2296 |
+
#: includes/class-gllr-settings.php:894
|
2297 |
+
msgid "Install demo data to create galleries with images, post with shortcodes and page with a list of all galleries."
|
2298 |
+
msgstr "Si vous installez les données de démonstration, des galeries avec des images, des articles avec les différents codes courts, des pages avec des listes de galeries seront créés."
|
2299 |
|
2300 |
+
#: includes/class-gllr-settings.php:913
|
2301 |
+
msgid "Gallery Post Type"
|
2302 |
+
msgstr "Type d’article pour la Galerie"
|
2303 |
|
2304 |
+
#: includes/class-gllr-settings.php:915
|
2305 |
+
msgid "Enable to avoid conflicts with other gallery plugins installed. All galleries created earlier will stay unchanged. However, after enabling we recommend to check settings of other plugins where \"gallery\" post type is used."
|
2306 |
+
msgstr "Activer pour éviter les conflits avec d’autres extensions de galerie installées. Toutes les galeries crées avant ne seront pas modifiées, cependant, après la modification, merci de vérifier le paramétrage de vos autres extensions où le type d’article 'galerie' est utilisé."
|
2307 |
|
2308 |
+
#: includes/class-gllr-settings.php:927
|
2309 |
+
msgid "Gallery Slug"
|
2310 |
+
msgstr "Identifiant de la galerie"
|
2311 |
|
2312 |
+
#: includes/class-gllr-settings.php:931
|
2313 |
+
msgid "Enter the unique gallery slug."
|
2314 |
+
msgstr "Saisir le slug unique pour la galerie."
|
|
|
|
|
|
|
2315 |
|
2316 |
+
#: includes/class-gllr-settings.php:947
|
2317 |
+
msgid "Activate Now"
|
2318 |
+
msgstr "Activer maintenant"
|
|
|
|
|
|
|
|
|
2319 |
|
2320 |
+
#: includes/class-gllr-settings.php:965
|
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:965
|
2325 |
+
#, php-format
|
2326 |
+
msgid "%s is required."
|
2327 |
+
msgstr "%s est requis"
|
|
|
|
|
2328 |
|
2329 |
+
#: includes/demo-data/class-bws-demo-data.php:33
|
2330 |
+
msgid "Install Demo Data"
|
2331 |
+
msgstr "Installé les données de démonstration"
|
2332 |
|
2333 |
+
#: includes/demo-data/class-bws-demo-data.php:36
|
2334 |
+
msgid "Remove Demo Data"
|
2335 |
+
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 "Supprimer les données de démonstration et remettre le paramétrage antérieur de l’extension."
|
2340 |
|
2341 |
+
#: includes/demo-data/class-bws-demo-data.php:50
|
2342 |
+
msgid "Yes, install demo data"
|
2343 |
+
msgstr "Oui, installer les données de démonstration"
|
2344 |
|
2345 |
+
#: includes/demo-data/class-bws-demo-data.php:51
|
2346 |
+
msgid "Are you sure you want to install demo data?"
|
2347 |
+
msgstr "Êtes vous sûr de vouloir installer les données de démonstration ?"
|
2348 |
|
2349 |
+
#: includes/demo-data/class-bws-demo-data.php:53
|
2350 |
+
msgid "Yes, remove demo data"
|
2351 |
+
msgstr "Oui, supprimer les données de démonstration"
|
2352 |
|
2353 |
+
#: includes/demo-data/class-bws-demo-data.php:54
|
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."
|
2360 |
|
2361 |
+
#: includes/demo-data/class-bws-demo-data.php:118
|
2362 |
+
msgid "Demo settings already installed."
|
2363 |
+
msgstr "Les données de démonstration sont déjà installées."
|
2364 |
|
2365 |
+
#: includes/demo-data/class-bws-demo-data.php:367
|
2366 |
+
msgid "Demo data installed successfully."
|
2367 |
+
msgstr "Les données de démonstration ont été installées."
|
2368 |
|
2369 |
+
#: includes/demo-data/class-bws-demo-data.php:369
|
2370 |
+
msgid "View post with shortcodes"
|
2371 |
+
msgstr "Voir les articles avec les codes courts"
|
2372 |
|
2373 |
+
#: includes/demo-data/class-bws-demo-data.php:372
|
2374 |
+
msgid "View page with examples"
|
2375 |
+
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 "Des erreurs sont survenues lors de l’installation des données de démonstration."
|
2380 |
|
2381 |
+
#: includes/demo-data/class-bws-demo-data.php:386
|
2382 |
+
msgid "Posts data is missing."
|
2383 |
+
msgstr "Les données de l’article sont absentes."
|
2384 |
|
2385 |
+
#: includes/demo-data/class-bws-demo-data.php:458
|
2386 |
+
msgid "Demo data have already been removed."
|
2387 |
+
msgstr "Les données de démonstration ont déjà été supprimées."
|
2388 |
|
2389 |
+
#: includes/demo-data/class-bws-demo-data.php:515
|
2390 |
+
msgid "Demo data successfully removed."
|
2391 |
+
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 "Des erreurs sont survenues lors de la suppression des données de démonstration."
|
2396 |
|
2397 |
+
#: includes/demo-data/class-bws-demo-data.php:593
|
2398 |
+
#, php-format
|
2399 |
+
msgid "Do you want to install demo content and settings for %s? (You can do this later using Import / Export settings)"
|
2400 |
+
msgstr "Voulez-vous installer le contenu de démonstration et les paramètres pour %s ? (Vous pouvez le faire plus tard en utilisant l’import et l’export des paramètres)"
|
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"
|
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"
|
@@ -24,109 +24,109 @@ msgstr "Настройки Галерей"
|
|
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,79 +155,119 @@ msgstr ""
|
|
155 |
"Удаление категории не приводит к удалению галерей из этой категории. Вместо "
|
156 |
"этого галереи из удалённой категории будут перемещены в категорию %s."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
msgid "Images"
|
185 |
msgstr "Изображения"
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
msgid "Author"
|
189 |
-
msgstr "Автор"
|
190 |
-
|
191 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
192 |
-
#: includes/class-gllr-settings.php:680
|
193 |
-
msgid "Date"
|
194 |
-
msgstr "Дата"
|
195 |
-
|
196 |
-
#: gallery-plugin.php:1688
|
197 |
#, php-format
|
198 |
msgid "%s Settings"
|
199 |
msgstr "Настройки %s"
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
203 |
msgid "Settings"
|
204 |
msgstr "Настройки"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "FAQ"
|
208 |
msgstr "FAQ"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "Support"
|
212 |
msgstr "Поддержка"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Updating images..."
|
216 |
msgstr "Обновление изображений..."
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "No images found."
|
220 |
msgstr "Изображения не найдены."
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "All images were updated."
|
224 |
msgstr "Все изображения обновлены."
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Error."
|
228 |
msgstr "Ошибка."
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid ""
|
232 |
"You are about to remove these items from this gallery.\n"
|
233 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -235,7 +275,7 @@ msgstr ""
|
|
235 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
236 |
" «Отмена» — оставить, «ОК» — удалить."
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid ""
|
240 |
"You are about to remove this image from the gallery.\n"
|
241 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -243,7 +283,7 @@ msgstr ""
|
|
243 |
"Вы собираетесь удалить это изображение из этой галереи.\n"
|
244 |
" «Отмена» — оставить, «ОК» — удалить."
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid ""
|
248 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
249 |
"switching?"
|
@@ -251,19 +291,19 @@ msgstr ""
|
|
251 |
"При переключении на другой режим все несохраненные данные будут потеряны. "
|
252 |
"Сохранить данные перед переключением?"
|
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 |
msgid "Image size not defined"
|
264 |
msgstr "Невозможно определить размер изображения"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid ""
|
268 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
269 |
"reload images manually."
|
@@ -271,75 +311,75 @@ msgstr ""
|
|
271 |
"Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
|
272 |
"WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
|
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 |
msgid "Filter"
|
288 |
msgstr "Фильтр"
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Empty Trash"
|
292 |
msgstr "Очистить корзину"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "No images found"
|
296 |
msgstr "Ни одного изображения не найдено"
|
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 |
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 |
msgid "Alt Text"
|
336 |
msgstr "Альтернативный текст"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "URL"
|
340 |
msgstr "Ссылка"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid ""
|
344 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
345 |
"to open a full size image."
|
@@ -348,138 +388,134 @@ msgstr ""
|
|
348 |
"страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
|
349 |
"изображение."
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Remove Image from Gallery"
|
353 |
msgstr "Удалить изображение из галереи"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
msgid "Edit Image Info"
|
357 |
msgstr "Изменить информацию изображения"
|
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 |
msgid "Lightbox Button URL"
|
377 |
msgstr "Ссылка для кнопки в лайтбоксе"
|
378 |
|
379 |
-
#: gallery-plugin.php:
|
380 |
msgid "New Tab"
|
381 |
msgstr "Новая вкладка"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "Enable to open URLs above in a new tab."
|
385 |
msgstr "Включите, чтобы открыть указанный выше URL в новой вкладке."
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "Go Pro"
|
389 |
msgstr "Обновить до Pro"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "Edit more details"
|
393 |
msgstr "Изменить детали"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
msgid "Remove from Gallery"
|
397 |
msgstr "Удалить из галереи"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
#, php-format
|
401 |
msgid "Select %s"
|
402 |
msgstr "Выбрать %s"
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
#, php-format
|
406 |
msgid "Edit “%s”"
|
407 |
msgstr "Изменить “%s”"
|
408 |
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "Edit Attachment Info"
|
411 |
msgstr "Изменить информацию изображения"
|
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 "Просмотр “%s”"
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "View"
|
432 |
msgstr "Просмотр"
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "Attach"
|
436 |
msgstr "Прикрепить"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Restore"
|
440 |
msgstr "Восстановить"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "A list or dropdown of Gallery categories."
|
444 |
msgstr "Список или выпадающее меню категорий галерей."
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "Select Gallery Category"
|
448 |
msgstr "Выберите категорию галерей"
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Title:"
|
452 |
msgstr "Заголовок:"
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Display as dropdown"
|
456 |
msgstr "В виде выпадающего меню"
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "Show gallery counts"
|
460 |
msgstr "Показать количество галерей"
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
msgid "Show hierarchy"
|
464 |
msgstr "Показать иерархию"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "Warning"
|
468 |
msgstr "Внимание"
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
msgid "You can add only images to the gallery"
|
472 |
msgstr "Вы можете добавить только изображения в галерею"
|
473 |
|
474 |
-
#: gallery-plugin.php:
|
475 |
-
msgid "or"
|
476 |
-
msgstr "или"
|
477 |
-
|
478 |
-
#: gallery-plugin.php:3181
|
479 |
msgid "no title"
|
480 |
msgstr "без названия"
|
481 |
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid ""
|
484 |
"Display an album image with the description and the link to a single gallery "
|
485 |
"page"
|
@@ -487,7 +523,7 @@ msgstr ""
|
|
487 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
488 |
"галереи"
|
489 |
|
490 |
-
#: gallery-plugin.php:
|
491 |
msgid "Sorry, no gallery found."
|
492 |
msgstr "Извините, галерей не найдено."
|
493 |
|
@@ -569,8 +605,8 @@ msgstr "Включите, чтобы настроить параметры эт
|
|
569 |
#: includes/class-gllr-settings.php:332 includes/class-gllr-settings.php:389
|
570 |
#: includes/class-gllr-settings.php:433 includes/class-gllr-settings.php:483
|
571 |
#: includes/class-gllr-settings.php:621 includes/class-gllr-settings.php:709
|
572 |
-
#: includes/class-gllr-settings.php:
|
573 |
-
#: includes/class-gllr-settings.php:
|
574 |
msgid "Close"
|
575 |
msgstr "Закрыть"
|
576 |
|
@@ -595,7 +631,7 @@ msgstr "Количество колонок"
|
|
595 |
msgid "Number of gallery columns (default is %s)."
|
596 |
msgstr "Количество колонок галерей (по умолчанию - %s)."
|
597 |
|
598 |
-
#: includes/class-gllr-settings.php:367 includes/class-gllr-settings.php:
|
599 |
msgid "Image Size"
|
600 |
msgstr "Размер изображения"
|
601 |
|
@@ -733,10 +769,6 @@ msgstr "ID изображения"
|
|
733 |
msgid "Name"
|
734 |
msgstr "Название"
|
735 |
|
736 |
-
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
737 |
-
msgid "Random"
|
738 |
-
msgstr "Произвольно"
|
739 |
-
|
740 |
#: includes/class-gllr-settings.php:516
|
741 |
msgid ""
|
742 |
"Select images sorting order in your gallery. By default, you can sort images "
|
@@ -898,22 +930,6 @@ msgstr "Цвет рамки для изображения альбома"
|
|
898 |
msgid "Sort Albums by"
|
899 |
msgstr "Cортировка альбомов по"
|
900 |
|
901 |
-
#: includes/class-gllr-settings.php:678
|
902 |
-
msgid "Gallery ID"
|
903 |
-
msgstr "ID галереи"
|
904 |
-
|
905 |
-
#: includes/class-gllr-settings.php:681
|
906 |
-
msgid "Last modified date"
|
907 |
-
msgstr "Дата последнего изменения"
|
908 |
-
|
909 |
-
#: includes/class-gllr-settings.php:682
|
910 |
-
msgid "Comment count"
|
911 |
-
msgstr "Количество комментариев"
|
912 |
-
|
913 |
-
#: includes/class-gllr-settings.php:683
|
914 |
-
msgid "\"Order\" field on the gallery edit page"
|
915 |
-
msgstr "Поле \"Порядок\" в редакторе галереи"
|
916 |
-
|
917 |
#: includes/class-gllr-settings.php:687
|
918 |
msgid "Select galleries sorting order in your galleries page."
|
919 |
msgstr "Выберите порядок сортировки галерей на странице галерей."
|
@@ -943,14 +959,26 @@ msgid "Lightbox Settings"
|
|
943 |
msgstr "Настройки лайтбокса"
|
944 |
|
945 |
#: includes/class-gllr-settings.php:735
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
946 |
msgid "Enable Lightbox"
|
947 |
msgstr "Включить лайтбокс"
|
948 |
|
949 |
-
#: includes/class-gllr-settings.php:
|
950 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
951 |
msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
|
952 |
|
953 |
-
#: includes/class-gllr-settings.php:
|
954 |
msgid ""
|
955 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
956 |
"will display the original, full size image."
|
@@ -958,15 +986,15 @@ msgstr ""
|
|
958 |
"Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
|
959 |
"По умолчанию будет отображаться оригинал, полный размер."
|
960 |
|
961 |
-
#: includes/class-gllr-settings.php:
|
962 |
msgid "Overlay Color"
|
963 |
msgstr "Цвет подложки"
|
964 |
|
965 |
-
#: includes/class-gllr-settings.php:
|
966 |
msgid "Overlay Opacity"
|
967 |
msgstr "Прозрачность подложки"
|
968 |
|
969 |
-
#: includes/class-gllr-settings.php:
|
970 |
#, php-format
|
971 |
msgid ""
|
972 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -975,75 +1003,75 @@ msgstr ""
|
|
975 |
"Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
|
976 |
"прозрачность (по умолчанию %s, максимум %s)."
|
977 |
|
978 |
-
#: includes/class-gllr-settings.php:
|
979 |
msgid "Slideshow"
|
980 |
msgstr "Слайд-шоу"
|
981 |
|
982 |
-
#: includes/class-gllr-settings.php:
|
983 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
984 |
msgstr ""
|
985 |
"Включение автоматического запуска слайд-шоу при использовании лайтбокса."
|
986 |
|
987 |
-
#: includes/class-gllr-settings.php:
|
988 |
msgid "Slideshow Duration"
|
989 |
msgstr "Интервал времени"
|
990 |
|
991 |
-
#: includes/class-gllr-settings.php:
|
992 |
msgid "ms"
|
993 |
msgstr "мс"
|
994 |
|
995 |
-
#: includes/class-gllr-settings.php:
|
996 |
msgid "Slideshow interval duration between two images."
|
997 |
msgstr "Интервал переключения между двумя изображениями."
|
998 |
|
999 |
-
#: includes/class-gllr-settings.php:
|
1000 |
msgid "Lightbox Helpers"
|
1001 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
1002 |
|
1003 |
-
#: includes/class-gllr-settings.php:
|
1004 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1005 |
msgstr ""
|
1006 |
"Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
|
1007 |
|
1008 |
-
#: includes/class-gllr-settings.php:
|
1009 |
msgid "Lightbox Thumbnails"
|
1010 |
msgstr "Миниатюры в лайтбоксе"
|
1011 |
|
1012 |
-
#: includes/class-gllr-settings.php:
|
1013 |
msgid "Enable to use a lightbox helper navigation between images."
|
1014 |
msgstr ""
|
1015 |
"Разрешить использовать вспомогательные элементы лайтбокса для навигации "
|
1016 |
"между изображениями."
|
1017 |
|
1018 |
-
#: includes/class-gllr-settings.php:
|
1019 |
msgid "Lightbox Thumbnails Position"
|
1020 |
msgstr "Расположение миниатюр в лайтбоксе"
|
1021 |
|
1022 |
-
#: includes/class-gllr-settings.php:
|
1023 |
msgid "Top"
|
1024 |
msgstr "Верх"
|
1025 |
|
1026 |
-
#: includes/class-gllr-settings.php:
|
1027 |
msgid "Lightbox Button Label"
|
1028 |
msgstr "Текст кнопки в лайтбоксе"
|
1029 |
|
1030 |
-
#: includes/class-gllr-settings.php:
|
1031 |
msgid "Read More"
|
1032 |
msgstr "Подробнее"
|
1033 |
|
1034 |
-
#: includes/class-gllr-settings.php:
|
1035 |
msgid "Download Button"
|
1036 |
msgstr "Кнопка \"Скачать\""
|
1037 |
|
1038 |
-
#: includes/class-gllr-settings.php:
|
1039 |
msgid "Enable to display download button."
|
1040 |
msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
|
1041 |
|
1042 |
-
#: includes/class-gllr-settings.php:
|
1043 |
msgid "Single Lightbox"
|
1044 |
msgstr "Один лайтбокс"
|
1045 |
|
1046 |
-
#: includes/class-gllr-settings.php:
|
1047 |
msgid ""
|
1048 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1049 |
"page."
|
@@ -1051,27 +1079,27 @@ msgstr ""
|
|
1051 |
"Включите, чтобы использовать один лайтбокс для нескольких галерей, "
|
1052 |
"расположенных на одной странице."
|
1053 |
|
1054 |
-
#: includes/class-gllr-settings.php:
|
1055 |
msgid "Social Sharing Buttons Settings"
|
1056 |
msgstr "Настройки социальных кнопок"
|
1057 |
|
1058 |
-
#: includes/class-gllr-settings.php:
|
1059 |
msgid "Social Buttons"
|
1060 |
msgstr "Социальные кнопки"
|
1061 |
|
1062 |
-
#: includes/class-gllr-settings.php:
|
1063 |
msgid "Enable social sharing buttons in the lightbox."
|
1064 |
msgstr "Включите социальные кнопки в лайтбоксе."
|
1065 |
|
1066 |
-
#: includes/class-gllr-settings.php:
|
1067 |
msgid "Social Networks"
|
1068 |
msgstr "Социальные сети"
|
1069 |
|
1070 |
-
#: includes/class-gllr-settings.php:
|
1071 |
msgid "Counter"
|
1072 |
msgstr "Счетчик"
|
1073 |
|
1074 |
-
#: includes/class-gllr-settings.php:
|
1075 |
msgid ""
|
1076 |
"Enable to show likes counter for each social button (not available for "
|
1077 |
"Google +1)."
|
@@ -1079,11 +1107,11 @@ msgstr ""
|
|
1079 |
"Включите, чтобы показать счетчики для социальных кнопок (недоступно для "
|
1080 |
"Google +1)."
|
1081 |
|
1082 |
-
#: includes/class-gllr-settings.php:
|
1083 |
msgid "Demo Data"
|
1084 |
msgstr "Демо-данные"
|
1085 |
|
1086 |
-
#: includes/class-gllr-settings.php:
|
1087 |
msgid ""
|
1088 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1089 |
"page with a list of all galleries."
|
@@ -1091,11 +1119,11 @@ msgstr ""
|
|
1091 |
"Установите демо-данные, чтобы создать галереи с изображениями, запись с "
|
1092 |
"шорткодами и страницу со списком всех галерей."
|
1093 |
|
1094 |
-
#: includes/class-gllr-settings.php:
|
1095 |
msgid "Gallery Post Type"
|
1096 |
msgstr "Тип записи галереи"
|
1097 |
|
1098 |
-
#: includes/class-gllr-settings.php:
|
1099 |
msgid ""
|
1100 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1101 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1107,27 +1135,27 @@ msgstr ""
|
|
1107 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
1108 |
"используется тип записи \"gallery\"."
|
1109 |
|
1110 |
-
#: includes/class-gllr-settings.php:
|
1111 |
msgid "Gallery Slug"
|
1112 |
msgstr "Слаг галереи"
|
1113 |
|
1114 |
-
#: includes/class-gllr-settings.php:
|
1115 |
msgid "Enter the unique gallery slug."
|
1116 |
msgstr "Введите уникальный слаг галереи."
|
1117 |
|
1118 |
-
#: includes/class-gllr-settings.php:
|
1119 |
msgid "Activate Now"
|
1120 |
msgstr "Активировать сейчас"
|
1121 |
|
1122 |
-
#: includes/class-gllr-settings.php:
|
1123 |
msgid "Install Now"
|
1124 |
msgstr "Установить сейчас"
|
1125 |
|
1126 |
-
#: includes/class-gllr-settings.php:
|
1127 |
msgid "Enable to include galleries to your website search."
|
1128 |
msgstr "Включить галерею в поиск на вашем сайте."
|
1129 |
|
1130 |
-
#: includes/class-gllr-settings.php:
|
1131 |
#, php-format
|
1132 |
msgid "%s is required."
|
1133 |
msgstr "Требуется %s."
|
@@ -1221,6 +1249,25 @@ msgstr ""
|
|
1221 |
msgid "Yes, install demo now"
|
1222 |
msgstr "Да, установить демо-данные сейчас"
|
1223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1225 |
#~ msgstr "Порядок сортировки (поле ввода для сортировки)"
|
1226 |
|
@@ -1308,12 +1355,6 @@ msgstr "Да, установить демо-данные сейчас"
|
|
1308 |
#~ "Включите, чтобы показать ссылку на исходный файл под каждым изображением "
|
1309 |
#~ "в лайтбоксе."
|
1310 |
|
1311 |
-
#~ msgid "Download high resolution image"
|
1312 |
-
#~ msgstr "Скачать изображение в высоком разрешении"
|
1313 |
-
|
1314 |
-
#~ msgid "Image"
|
1315 |
-
#~ msgstr "Изображение"
|
1316 |
-
|
1317 |
#~ msgid "Lightbox Helper Type"
|
1318 |
#~ msgstr "Тип вспомогательных элементов лайтбокса"
|
1319 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-21 17:08+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-21 17:08+0200\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Общие настройки"
|
26 |
|
27 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2779
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Обновить до Pro"
|
30 |
|
31 |
+
#: gallery-plugin.php:222
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Вернуться ко всем альбомам"
|
34 |
|
35 |
+
#: gallery-plugin.php:236
|
36 |
msgid "See images »"
|
37 |
msgstr "Смотреть фотографии »"
|
38 |
|
39 |
+
#: gallery-plugin.php:324 gallery-plugin.php:333
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереи"
|
42 |
|
43 |
+
#: gallery-plugin.php:325 gallery-plugin.php:3198
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:326
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Добавить новую галерею"
|
50 |
|
51 |
+
#: gallery-plugin.php:327
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редактировать галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:328
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Новая галерея"
|
58 |
|
59 |
+
#: gallery-plugin.php:329
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Просмотреть галерею"
|
62 |
|
63 |
+
#: gallery-plugin.php:330 includes/class-gllr-settings.php:948
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Искать галереи"
|
66 |
|
67 |
+
#: gallery-plugin.php:331
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Ни одной галереи не найдено"
|
70 |
|
71 |
+
#: gallery-plugin.php:353 gallery-plugin.php:1596 gallery-plugin.php:2925
|
72 |
+
#: gallery-plugin.php:2933 gallery-plugin.php:2971 gallery-plugin.php:2994
|
73 |
+
#: gallery-plugin.php:3170
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категории галерей"
|
76 |
|
77 |
+
#: gallery-plugin.php:354 gallery-plugin.php:795
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категория галерей"
|
80 |
|
81 |
+
#: gallery-plugin.php:355
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Добавить категорию галерей"
|
84 |
|
85 |
+
#: gallery-plugin.php:356
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Добавить новую категорию галерей"
|
88 |
|
89 |
+
#: gallery-plugin.php:357 gallery-plugin.php:358
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редактировать категорию галерей"
|
92 |
|
93 |
+
#: gallery-plugin.php:359
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Новая категория галерей"
|
96 |
|
97 |
+
#: gallery-plugin.php:360 gallery-plugin.php:361
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Просмотреть категорию галерей"
|
100 |
|
101 |
+
#: gallery-plugin.php:362
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Найти категорию галерей"
|
104 |
|
105 |
+
#: gallery-plugin.php:363
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Ни одной категории галерей не найдено"
|
108 |
|
109 |
+
#: gallery-plugin.php:364
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "Ни одной категории галерей в корзине не найдено"
|
112 |
|
113 |
+
#: gallery-plugin.php:365
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Родительская категория галереи"
|
116 |
|
117 |
+
#: gallery-plugin.php:366
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навигация списка категории галерей"
|
120 |
|
121 |
+
#: gallery-plugin.php:367
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорий галерей"
|
124 |
|
125 |
+
#: gallery-plugin.php:414
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереи"
|
128 |
|
129 |
+
#: gallery-plugin.php:423
|
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:427
|
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:540
|
146 |
msgid "Note"
|
147 |
msgstr "Примечание"
|
148 |
|
149 |
+
#: gallery-plugin.php:540
|
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:551
|
159 |
+
msgid "Sort Galleries in Category by"
|
160 |
+
msgstr "Сортировать галереи в категории по"
|
161 |
+
|
162 |
+
#: gallery-plugin.php:554 gallery-plugin.php:3184
|
163 |
+
#: includes/class-gllr-settings.php:678
|
164 |
+
msgid "Gallery ID"
|
165 |
+
msgstr "ID галереи"
|
166 |
+
|
167 |
+
#: gallery-plugin.php:555 gallery-plugin.php:1593 gallery-plugin.php:2634
|
168 |
+
#: gallery-plugin.php:2740 gallery-plugin.php:2851 gallery-plugin.php:3185
|
169 |
+
#: includes/class-gllr-settings.php:679
|
170 |
+
msgid "Title"
|
171 |
+
msgstr "Название"
|
172 |
+
|
173 |
+
#: gallery-plugin.php:556 gallery-plugin.php:1598 gallery-plugin.php:3186
|
174 |
+
#: includes/class-gllr-settings.php:513 includes/class-gllr-settings.php:680
|
175 |
+
msgid "Date"
|
176 |
+
msgstr "Дата"
|
177 |
+
|
178 |
+
#: gallery-plugin.php:557 gallery-plugin.php:3187
|
179 |
+
#: includes/class-gllr-settings.php:681
|
180 |
+
msgid "Last modified date"
|
181 |
+
msgstr "Дата последнего изменения"
|
182 |
+
|
183 |
+
#: gallery-plugin.php:558 gallery-plugin.php:3188
|
184 |
+
#: includes/class-gllr-settings.php:682
|
185 |
+
msgid "Comment count"
|
186 |
+
msgstr "Количество комментариев"
|
187 |
+
|
188 |
+
#: gallery-plugin.php:559 gallery-plugin.php:3189
|
189 |
+
#: includes/class-gllr-settings.php:683
|
190 |
+
msgid "\"Order\" field on the gallery edit page"
|
191 |
+
msgstr "Поле \"Порядок\" в редакторе галереи"
|
192 |
+
|
193 |
+
#: gallery-plugin.php:560 gallery-plugin.php:1597 gallery-plugin.php:3190
|
194 |
+
#: includes/class-gllr-settings.php:684
|
195 |
+
msgid "Author"
|
196 |
+
msgstr "Автор"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:561 gallery-plugin.php:3191
|
199 |
+
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
200 |
+
msgid "Random"
|
201 |
+
msgstr "Произвольно"
|
202 |
+
|
203 |
+
#: gallery-plugin.php:562 gallery-plugin.php:3192
|
204 |
+
msgid "Plugin Settings"
|
205 |
+
msgstr "Настройки плагина"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:564 gallery-plugin.php:3194
|
208 |
+
msgid "Select galleries sorting order in your category."
|
209 |
+
msgstr "Выберите порядок сортировки галерей в вашей категории."
|
210 |
+
|
211 |
+
#: gallery-plugin.php:584 gallery-plugin.php:1595
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
+
#: gallery-plugin.php:630
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Все категории галерей"
|
218 |
|
219 |
+
#: gallery-plugin.php:707
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Вы не можете удалить стандартную категорию галереи."
|
222 |
|
223 |
+
#: gallery-plugin.php:1085 gallery-plugin.php:1192 gallery-plugin.php:2114
|
224 |
+
#: template/gallery-single-template.php:95
|
225 |
msgid "Sorry, nothing found."
|
226 |
msgstr "Извините, ничего не найдено."
|
227 |
|
228 |
+
#: gallery-plugin.php:1592
|
229 |
msgid "Featured Image"
|
230 |
msgstr "Изображение альбома"
|
231 |
|
232 |
+
#: gallery-plugin.php:1594 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
233 |
msgid "Images"
|
234 |
msgstr "Изображения"
|
235 |
|
236 |
+
#: gallery-plugin.php:1684
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
#, php-format
|
238 |
msgid "%s Settings"
|
239 |
msgstr "Настройки %s"
|
240 |
|
241 |
+
#: gallery-plugin.php:1711 gallery-plugin.php:1729
|
242 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
243 |
msgid "Settings"
|
244 |
msgstr "Настройки"
|
245 |
|
246 |
+
#: gallery-plugin.php:1712
|
247 |
msgid "FAQ"
|
248 |
msgstr "FAQ"
|
249 |
|
250 |
+
#: gallery-plugin.php:1713
|
251 |
msgid "Support"
|
252 |
msgstr "Поддержка"
|
253 |
|
254 |
+
#: gallery-plugin.php:1752
|
255 |
msgid "Updating images..."
|
256 |
msgstr "Обновление изображений..."
|
257 |
|
258 |
+
#: gallery-plugin.php:1753
|
259 |
msgid "No images found."
|
260 |
msgstr "Изображения не найдены."
|
261 |
|
262 |
+
#: gallery-plugin.php:1754
|
263 |
msgid "All images were updated."
|
264 |
msgstr "Все изображения обновлены."
|
265 |
|
266 |
+
#: gallery-plugin.php:1755
|
267 |
msgid "Error."
|
268 |
msgstr "Ошибка."
|
269 |
|
270 |
+
#: gallery-plugin.php:1767
|
271 |
msgid ""
|
272 |
"You are about to remove these items from this gallery.\n"
|
273 |
" 'Cancel' to stop, 'OK' to delete."
|
275 |
"Вы собираетесь удалить эти элементы из этой галереи.\n"
|
276 |
" «Отмена» — оставить, «ОК» — удалить."
|
277 |
|
278 |
+
#: gallery-plugin.php:1768
|
279 |
msgid ""
|
280 |
"You are about to remove this image from the gallery.\n"
|
281 |
" 'Cancel' to stop, 'OK' to delete."
|
283 |
"Вы собираетесь удалить это изображение из этой галереи.\n"
|
284 |
" «Отмена» — оставить, «ОК» — удалить."
|
285 |
|
286 |
+
#: gallery-plugin.php:1769
|
287 |
msgid ""
|
288 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
289 |
"switching?"
|
291 |
"При переключении на другой режим все несохраненные данные будут потеряны. "
|
292 |
"Сохранить данные перед переключением?"
|
293 |
|
294 |
+
#: gallery-plugin.php:1770
|
295 |
msgid "Insert Media"
|
296 |
msgstr "Вставить медиафайл"
|
297 |
|
298 |
+
#: gallery-plugin.php:1771
|
299 |
msgid "Insert"
|
300 |
msgstr "Вставить"
|
301 |
|
302 |
+
#: gallery-plugin.php:2306 gallery-plugin.php:2332
|
303 |
msgid "Image size not defined"
|
304 |
msgstr "Невозможно определить размер изображения"
|
305 |
|
306 |
+
#: gallery-plugin.php:2321
|
307 |
msgid ""
|
308 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
309 |
"reload images manually."
|
311 |
"Плагин может обновить только следующие типы файлов: PNG, JPEG, GIF, XBM или "
|
312 |
"WPMP. Для других, пожалуйста, вручную перезагрузите изображения."
|
313 |
|
314 |
+
#: gallery-plugin.php:2361 gallery-plugin.php:2364 gallery-plugin.php:2369
|
315 |
msgid "Invalid path"
|
316 |
msgstr "Путь к изображению некорректный"
|
317 |
|
318 |
+
#: gallery-plugin.php:2458
|
319 |
msgid "List View"
|
320 |
msgstr "В виде списка"
|
321 |
|
322 |
+
#: gallery-plugin.php:2459
|
323 |
msgid "Grid View"
|
324 |
msgstr "В виде сетки"
|
325 |
|
326 |
+
#: gallery-plugin.php:2514
|
327 |
msgid "Filter"
|
328 |
msgstr "Фильтр"
|
329 |
|
330 |
+
#: gallery-plugin.php:2518
|
331 |
msgid "Empty Trash"
|
332 |
msgstr "Очистить корзину"
|
333 |
|
334 |
+
#: gallery-plugin.php:2539
|
335 |
msgid "No images found"
|
336 |
msgstr "Ни одного изображения не найдено"
|
337 |
|
338 |
+
#: gallery-plugin.php:2591
|
339 |
msgid "Select bulk action"
|
340 |
msgstr "Выберите массовое действие"
|
341 |
|
342 |
+
#: gallery-plugin.php:2593
|
343 |
msgid "Bulk Actions"
|
344 |
msgstr "Действия"
|
345 |
|
346 |
+
#: gallery-plugin.php:2603
|
347 |
msgid "Apply"
|
348 |
msgstr "Применить"
|
349 |
|
350 |
+
#: gallery-plugin.php:2610
|
351 |
msgid "Delete from Gallery"
|
352 |
msgstr "Удалить из галереи"
|
353 |
|
354 |
+
#: gallery-plugin.php:2619
|
355 |
msgid "Bulk Select"
|
356 |
msgstr "Выбор"
|
357 |
|
358 |
+
#: gallery-plugin.php:2620
|
359 |
msgid "Cancel Selection"
|
360 |
msgstr "Отменить выбор"
|
361 |
|
362 |
+
#: gallery-plugin.php:2621
|
363 |
msgid "Delete Selected"
|
364 |
msgstr "Удалить выбранное"
|
365 |
|
366 |
+
#: gallery-plugin.php:2632
|
367 |
msgid "File"
|
368 |
msgstr "Файл"
|
369 |
|
370 |
+
#: gallery-plugin.php:2633 gallery-plugin.php:2735 gallery-plugin.php:2846
|
371 |
msgid "Dimensions"
|
372 |
msgstr "Размеры"
|
373 |
|
374 |
+
#: gallery-plugin.php:2635 gallery-plugin.php:2746 gallery-plugin.php:2856
|
375 |
msgid "Alt Text"
|
376 |
msgstr "Альтернативный текст"
|
377 |
|
378 |
+
#: gallery-plugin.php:2636 gallery-plugin.php:2750 gallery-plugin.php:2861
|
379 |
msgid "URL"
|
380 |
msgstr "Ссылка"
|
381 |
|
382 |
+
#: gallery-plugin.php:2636 gallery-plugin.php:2752
|
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 |
"страницей или файлом. Оставьте пустым, чтобы открыть полноразмерное "
|
389 |
"изображение."
|
390 |
|
391 |
+
#: gallery-plugin.php:2717
|
392 |
msgid "Remove Image from Gallery"
|
393 |
msgstr "Удалить изображение из галереи"
|
394 |
|
395 |
+
#: gallery-plugin.php:2720
|
396 |
msgid "Edit Image Info"
|
397 |
msgstr "Изменить информацию изображения"
|
398 |
|
399 |
+
#: gallery-plugin.php:2721
|
400 |
msgid "Deselect"
|
401 |
msgstr "Отменить выбор"
|
402 |
|
403 |
+
#: gallery-plugin.php:2733
|
404 |
msgid "File name"
|
405 |
msgstr "Название файла"
|
406 |
|
407 |
+
#: gallery-plugin.php:2734
|
408 |
msgid "File type"
|
409 |
msgstr "Тип файла"
|
410 |
|
411 |
+
#: gallery-plugin.php:2759
|
412 |
msgid "Description"
|
413 |
msgstr "Описание"
|
414 |
|
415 |
+
#: gallery-plugin.php:2765
|
416 |
msgid "Lightbox Button URL"
|
417 |
msgstr "Ссылка для кнопки в лайтбоксе"
|
418 |
|
419 |
+
#: gallery-plugin.php:2772
|
420 |
msgid "New Tab"
|
421 |
msgstr "Новая вкладка"
|
422 |
|
423 |
+
#: gallery-plugin.php:2774
|
424 |
msgid "Enable to open URLs above in a new tab."
|
425 |
msgstr "Включите, чтобы открыть указанный выше URL в новой вкладке."
|
426 |
|
427 |
+
#: gallery-plugin.php:2779
|
428 |
msgid "Go Pro"
|
429 |
msgstr "Обновить до Pro"
|
430 |
|
431 |
+
#: gallery-plugin.php:2785
|
432 |
msgid "Edit more details"
|
433 |
msgstr "Изменить детали"
|
434 |
|
435 |
+
#: gallery-plugin.php:2787
|
436 |
msgid "Remove from Gallery"
|
437 |
msgstr "Удалить из галереи"
|
438 |
|
439 |
+
#: gallery-plugin.php:2821
|
440 |
#, php-format
|
441 |
msgid "Select %s"
|
442 |
msgstr "Выбрать %s"
|
443 |
|
444 |
+
#: gallery-plugin.php:2834
|
445 |
#, php-format
|
446 |
msgid "Edit “%s”"
|
447 |
msgstr "Изменить “%s”"
|
448 |
|
449 |
+
#: gallery-plugin.php:2842
|
450 |
msgid "Edit Attachment Info"
|
451 |
msgstr "Изменить информацию изображения"
|
452 |
|
453 |
+
#: gallery-plugin.php:2879 gallery-plugin.php:2892
|
454 |
msgid "Edit"
|
455 |
msgstr "Изменить"
|
456 |
|
457 |
+
#: gallery-plugin.php:2882 gallery-plugin.php:2897
|
458 |
msgid "Trash"
|
459 |
msgstr "Удалить"
|
460 |
|
461 |
+
#: gallery-plugin.php:2885 gallery-plugin.php:2900
|
462 |
msgid "Delete Permanently"
|
463 |
msgstr "Удалить навсегда"
|
464 |
|
465 |
+
#: gallery-plugin.php:2887 gallery-plugin.php:2906
|
466 |
#, php-format
|
467 |
msgid "View “%s”"
|
468 |
msgstr "Просмотр “%s”"
|
469 |
|
470 |
+
#: gallery-plugin.php:2887 gallery-plugin.php:2906 gallery-plugin.php:2989
|
471 |
msgid "View"
|
472 |
msgstr "Просмотр"
|
473 |
|
474 |
+
#: gallery-plugin.php:2889
|
475 |
msgid "Attach"
|
476 |
msgstr "Прикрепить"
|
477 |
|
478 |
+
#: gallery-plugin.php:2895
|
479 |
msgid "Restore"
|
480 |
msgstr "Восстановить"
|
481 |
|
482 |
+
#: gallery-plugin.php:2924
|
483 |
msgid "A list or dropdown of Gallery categories."
|
484 |
msgstr "Список или выпадающее меню категорий галерей."
|
485 |
|
486 |
+
#: gallery-plugin.php:2969
|
487 |
msgid "Select Gallery Category"
|
488 |
msgstr "Выберите категорию галерей"
|
489 |
|
490 |
+
#: gallery-plugin.php:3027
|
491 |
msgid "Title:"
|
492 |
msgstr "Заголовок:"
|
493 |
|
494 |
+
#: gallery-plugin.php:3030
|
495 |
msgid "Display as dropdown"
|
496 |
msgstr "В виде выпадающего меню"
|
497 |
|
498 |
+
#: gallery-plugin.php:3032
|
499 |
msgid "Show gallery counts"
|
500 |
msgstr "Показать количество галерей"
|
501 |
|
502 |
+
#: gallery-plugin.php:3034
|
503 |
msgid "Show hierarchy"
|
504 |
msgstr "Показать иерархию"
|
505 |
|
506 |
+
#: gallery-plugin.php:3150
|
507 |
msgid "Warning"
|
508 |
msgstr "Внимание"
|
509 |
|
510 |
+
#: gallery-plugin.php:3150
|
511 |
msgid "You can add only images to the gallery"
|
512 |
msgstr "Вы можете добавить только изображения в галерею"
|
513 |
|
514 |
+
#: gallery-plugin.php:3205
|
|
|
|
|
|
|
|
|
515 |
msgid "no title"
|
516 |
msgstr "без названия"
|
517 |
|
518 |
+
#: gallery-plugin.php:3215
|
519 |
msgid ""
|
520 |
"Display an album image with the description and the link to a single gallery "
|
521 |
"page"
|
523 |
"Отобразить изображение альбома с описанием и ссылкой на отдельную страницу "
|
524 |
"галереи"
|
525 |
|
526 |
+
#: gallery-plugin.php:3219
|
527 |
msgid "Sorry, no gallery found."
|
528 |
msgstr "Извините, галерей не найдено."
|
529 |
|
605 |
#: includes/class-gllr-settings.php:332 includes/class-gllr-settings.php:389
|
606 |
#: includes/class-gllr-settings.php:433 includes/class-gllr-settings.php:483
|
607 |
#: includes/class-gllr-settings.php:621 includes/class-gllr-settings.php:709
|
608 |
+
#: includes/class-gllr-settings.php:752 includes/class-gllr-settings.php:802
|
609 |
+
#: includes/class-gllr-settings.php:930
|
610 |
msgid "Close"
|
611 |
msgstr "Закрыть"
|
612 |
|
631 |
msgid "Number of gallery columns (default is %s)."
|
632 |
msgstr "Количество колонок галерей (по умолчанию - %s)."
|
633 |
|
634 |
+
#: includes/class-gllr-settings.php:367 includes/class-gllr-settings.php:756
|
635 |
msgid "Image Size"
|
636 |
msgstr "Размер изображения"
|
637 |
|
769 |
msgid "Name"
|
770 |
msgstr "Название"
|
771 |
|
|
|
|
|
|
|
|
|
772 |
#: includes/class-gllr-settings.php:516
|
773 |
msgid ""
|
774 |
"Select images sorting order in your gallery. By default, you can sort images "
|
930 |
msgid "Sort Albums by"
|
931 |
msgstr "Cортировка альбомов по"
|
932 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
#: includes/class-gllr-settings.php:687
|
934 |
msgid "Select galleries sorting order in your galleries page."
|
935 |
msgstr "Выберите порядок сортировки галерей на странице галерей."
|
959 |
msgstr "Настройки лайтбокса"
|
960 |
|
961 |
#: includes/class-gllr-settings.php:735
|
962 |
+
msgid "Unclickable Thumbnail Images"
|
963 |
+
msgstr "Некликабельные изображения"
|
964 |
+
|
965 |
+
#: includes/class-gllr-settings.php:738
|
966 |
+
msgid ""
|
967 |
+
"Enable to make the images in a single gallery unclickable and hide their "
|
968 |
+
"URLs. This option also disables Lightbox."
|
969 |
+
msgstr ""
|
970 |
+
"Включите, чтобы сделать миниатюры изображений в галерее некликабельными, а "
|
971 |
+
"так же не отображать их ссылки. Эта опция так же отключает лайтбокс."
|
972 |
+
|
973 |
+
#: includes/class-gllr-settings.php:742
|
974 |
msgid "Enable Lightbox"
|
975 |
msgstr "Включить лайтбокс"
|
976 |
|
977 |
+
#: includes/class-gllr-settings.php:745
|
978 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
979 |
msgstr "Включите, чтобы показать лайтбокс при нажатии на изображения галереи."
|
980 |
|
981 |
+
#: includes/class-gllr-settings.php:763
|
982 |
msgid ""
|
983 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
984 |
"will display the original, full size image."
|
986 |
"Выберите максимальный размер изображений галереи для просмотра в лайтбоксе. "
|
987 |
"По умолчанию будет отображаться оригинал, полный размер."
|
988 |
|
989 |
+
#: includes/class-gllr-settings.php:767
|
990 |
msgid "Overlay Color"
|
991 |
msgstr "Цвет подложки"
|
992 |
|
993 |
+
#: includes/class-gllr-settings.php:773
|
994 |
msgid "Overlay Opacity"
|
995 |
msgstr "Прозрачность подложки"
|
996 |
|
997 |
+
#: includes/class-gllr-settings.php:776
|
998 |
#, php-format
|
999 |
msgid ""
|
1000 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1003 |
"Прозрачность подложки лайтбокса. Оставьте пустым, чтобы отключить "
|
1004 |
"прозрачность (по умолчанию %s, максимум %s)."
|
1005 |
|
1006 |
+
#: includes/class-gllr-settings.php:786
|
1007 |
msgid "Slideshow"
|
1008 |
msgstr "Слайд-шоу"
|
1009 |
|
1010 |
+
#: includes/class-gllr-settings.php:788
|
1011 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1012 |
msgstr ""
|
1013 |
"Включение автоматического запуска слайд-шоу при использовании лайтбокса."
|
1014 |
|
1015 |
+
#: includes/class-gllr-settings.php:792
|
1016 |
msgid "Slideshow Duration"
|
1017 |
msgstr "Интервал времени"
|
1018 |
|
1019 |
+
#: includes/class-gllr-settings.php:794
|
1020 |
msgid "ms"
|
1021 |
msgstr "мс"
|
1022 |
|
1023 |
+
#: includes/class-gllr-settings.php:795
|
1024 |
msgid "Slideshow interval duration between two images."
|
1025 |
msgstr "Интервал переключения между двумя изображениями."
|
1026 |
|
1027 |
+
#: includes/class-gllr-settings.php:806
|
1028 |
msgid "Lightbox Helpers"
|
1029 |
msgstr "Вспомогательные элементы в лайтбоксе"
|
1030 |
|
1031 |
+
#: includes/class-gllr-settings.php:808
|
1032 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1033 |
msgstr ""
|
1034 |
"Включите, чтобы показать панель инструментов и кнопки навигации лайтбокса."
|
1035 |
|
1036 |
+
#: includes/class-gllr-settings.php:812
|
1037 |
msgid "Lightbox Thumbnails"
|
1038 |
msgstr "Миниатюры в лайтбоксе"
|
1039 |
|
1040 |
+
#: includes/class-gllr-settings.php:814
|
1041 |
msgid "Enable to use a lightbox helper navigation between images."
|
1042 |
msgstr ""
|
1043 |
"Разрешить использовать вспомогательные элементы лайтбокса для навигации "
|
1044 |
"между изображениями."
|
1045 |
|
1046 |
+
#: includes/class-gllr-settings.php:818
|
1047 |
msgid "Lightbox Thumbnails Position"
|
1048 |
msgstr "Расположение миниатюр в лайтбоксе"
|
1049 |
|
1050 |
+
#: includes/class-gllr-settings.php:821
|
1051 |
msgid "Top"
|
1052 |
msgstr "Верх"
|
1053 |
|
1054 |
+
#: includes/class-gllr-settings.php:826
|
1055 |
msgid "Lightbox Button Label"
|
1056 |
msgstr "Текст кнопки в лайтбоксе"
|
1057 |
|
1058 |
+
#: includes/class-gllr-settings.php:828
|
1059 |
msgid "Read More"
|
1060 |
msgstr "Подробнее"
|
1061 |
|
1062 |
+
#: includes/class-gllr-settings.php:838
|
1063 |
msgid "Download Button"
|
1064 |
msgstr "Кнопка \"Скачать\""
|
1065 |
|
1066 |
+
#: includes/class-gllr-settings.php:840
|
1067 |
msgid "Enable to display download button."
|
1068 |
msgstr "Включите, чтобы показать ссылку для скачивания исходного изображения."
|
1069 |
|
1070 |
+
#: includes/class-gllr-settings.php:844
|
1071 |
msgid "Single Lightbox"
|
1072 |
msgstr "Один лайтбокс"
|
1073 |
|
1074 |
+
#: includes/class-gllr-settings.php:846
|
1075 |
msgid ""
|
1076 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1077 |
"page."
|
1079 |
"Включите, чтобы использовать один лайтбокс для нескольких галерей, "
|
1080 |
"расположенных на одной странице."
|
1081 |
|
1082 |
+
#: includes/class-gllr-settings.php:856
|
1083 |
msgid "Social Sharing Buttons Settings"
|
1084 |
msgstr "Настройки социальных кнопок"
|
1085 |
|
1086 |
+
#: includes/class-gllr-settings.php:864
|
1087 |
msgid "Social Buttons"
|
1088 |
msgstr "Социальные кнопки"
|
1089 |
|
1090 |
+
#: includes/class-gllr-settings.php:866
|
1091 |
msgid "Enable social sharing buttons in the lightbox."
|
1092 |
msgstr "Включите социальные кнопки в лайтбоксе."
|
1093 |
|
1094 |
+
#: includes/class-gllr-settings.php:870
|
1095 |
msgid "Social Networks"
|
1096 |
msgstr "Социальные сети"
|
1097 |
|
1098 |
+
#: includes/class-gllr-settings.php:881
|
1099 |
msgid "Counter"
|
1100 |
msgstr "Счетчик"
|
1101 |
|
1102 |
+
#: includes/class-gllr-settings.php:884
|
1103 |
msgid ""
|
1104 |
"Enable to show likes counter for each social button (not available for "
|
1105 |
"Google +1)."
|
1107 |
"Включите, чтобы показать счетчики для социальных кнопок (недоступно для "
|
1108 |
"Google +1)."
|
1109 |
|
1110 |
+
#: includes/class-gllr-settings.php:899
|
1111 |
msgid "Demo Data"
|
1112 |
msgstr "Демо-данные"
|
1113 |
|
1114 |
+
#: includes/class-gllr-settings.php:901
|
1115 |
msgid ""
|
1116 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1117 |
"page with a list of all galleries."
|
1119 |
"Установите демо-данные, чтобы создать галереи с изображениями, запись с "
|
1120 |
"шорткодами и страницу со списком всех галерей."
|
1121 |
|
1122 |
+
#: includes/class-gllr-settings.php:920
|
1123 |
msgid "Gallery Post Type"
|
1124 |
msgstr "Тип записи галереи"
|
1125 |
|
1126 |
+
#: includes/class-gllr-settings.php:922
|
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 |
"переименования проверьте, пожалуйста, настройки других плагинов, где "
|
1136 |
"используется тип записи \"gallery\"."
|
1137 |
|
1138 |
+
#: includes/class-gllr-settings.php:934
|
1139 |
msgid "Gallery Slug"
|
1140 |
msgstr "Слаг галереи"
|
1141 |
|
1142 |
+
#: includes/class-gllr-settings.php:938
|
1143 |
msgid "Enter the unique gallery slug."
|
1144 |
msgstr "Введите уникальный слаг галереи."
|
1145 |
|
1146 |
+
#: includes/class-gllr-settings.php:954
|
1147 |
msgid "Activate Now"
|
1148 |
msgstr "Активировать сейчас"
|
1149 |
|
1150 |
+
#: includes/class-gllr-settings.php:969
|
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:972
|
1159 |
#, php-format
|
1160 |
msgid "%s is required."
|
1161 |
msgstr "Требуется %s."
|
1249 |
msgid "Yes, install demo now"
|
1250 |
msgstr "Да, установить демо-данные сейчас"
|
1251 |
|
1252 |
+
#: template/gallery-single-template.php:19
|
1253 |
+
msgid "Download high resolution image"
|
1254 |
+
msgstr "Скачать изображение в высоком разрешении"
|
1255 |
+
|
1256 |
+
#: template/gallery-single-template.php:114
|
1257 |
+
msgid "Image"
|
1258 |
+
msgstr "Изображение"
|
1259 |
+
|
1260 |
+
# это
|
1261 |
+
#~ msgid "Allow users to open images from the thumbnail"
|
1262 |
+
#~ msgstr "Позволить пользователям открывать картинки из миниатюр"
|
1263 |
+
|
1264 |
+
# это
|
1265 |
+
#~ msgid "Enable an ability to open images from the thumbnail."
|
1266 |
+
#~ msgstr "Дать пользователям возможность открывать картинки из миниатюр"
|
1267 |
+
|
1268 |
+
#~ msgid "or"
|
1269 |
+
#~ msgstr "или"
|
1270 |
+
|
1271 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1272 |
#~ msgstr "Порядок сортировки (поле ввода для сортировки)"
|
1273 |
|
1355 |
#~ "Включите, чтобы показать ссылку на исходный файл под каждым изображением "
|
1356 |
#~ "в лайтбоксе."
|
1357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
#~ msgid "Lightbox Helper Type"
|
1359 |
#~ msgstr "Тип вспомогательных элементов лайтбокса"
|
1360 |
|
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"
|
@@ -24,109 +24,109 @@ msgstr "Налаштування Галерей"
|
|
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,79 +155,119 @@ msgstr ""
|
|
155 |
"Видалення категорії не призведе до видалення галерей з цієї категорії. "
|
156 |
"Замість цього галереї з видаленої категорії будуть переміщені в категорію %s."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
msgid "Images"
|
185 |
msgstr "Зображення"
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
msgid "Author"
|
189 |
-
msgstr "Автор"
|
190 |
-
|
191 |
-
#: gallery-plugin.php:1602 includes/class-gllr-settings.php:513
|
192 |
-
#: includes/class-gllr-settings.php:680
|
193 |
-
msgid "Date"
|
194 |
-
msgstr "Дата"
|
195 |
-
|
196 |
-
#: gallery-plugin.php:1688
|
197 |
#, php-format
|
198 |
msgid "%s Settings"
|
199 |
msgstr "Налаштування %s"
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
203 |
msgid "Settings"
|
204 |
msgstr "Налаштування"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "FAQ"
|
208 |
msgstr "FAQ"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "Support"
|
212 |
msgstr "Техпідтримка"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Updating images..."
|
216 |
msgstr "Оновлення зображень..."
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "No images found."
|
220 |
msgstr "Зображення не знайдені."
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "All images were updated."
|
224 |
msgstr "Усі зображення оновлено."
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Error."
|
228 |
msgstr "Помилка."
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid ""
|
232 |
"You are about to remove these items from this gallery.\n"
|
233 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -235,7 +275,7 @@ msgstr ""
|
|
235 |
"Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
|
236 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid ""
|
240 |
"You are about to remove this image from the gallery.\n"
|
241 |
" 'Cancel' to stop, 'OK' to delete."
|
@@ -243,7 +283,7 @@ msgstr ""
|
|
243 |
"Ви збираєтеся видалити це зображення з галереї.\n"
|
244 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid ""
|
248 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
249 |
"switching?"
|
@@ -251,19 +291,19 @@ msgstr ""
|
|
251 |
"При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
|
252 |
"їх перед переходом?"
|
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 |
msgid "Image size not defined"
|
264 |
msgstr "Неможливо визначити розмір зображення"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
msgid ""
|
268 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
269 |
"reload images manually."
|
@@ -271,75 +311,75 @@ msgstr ""
|
|
271 |
"Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
|
272 |
"Для інших типів, будь ласка, перезавантажте зображення вручну."
|
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 |
msgid "Filter"
|
288 |
msgstr "Фільтр"
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
msgid "Empty Trash"
|
292 |
msgstr "Очистити кошик"
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "No images found"
|
296 |
msgstr "Жодного зображення не знайдено"
|
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 |
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 |
msgid "Alt Text"
|
336 |
msgstr "Альтернативний текст"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "URL"
|
340 |
msgstr "Посилання"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid ""
|
344 |
"Enter your custom URL to link this image to other page or file. Leave blank "
|
345 |
"to open a full size image."
|
@@ -347,138 +387,134 @@ msgstr ""
|
|
347 |
"Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
|
348 |
"файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Remove Image from Gallery"
|
352 |
msgstr "Видалити зображення з галереї"
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Edit Image Info"
|
356 |
msgstr "Редагувати інформацію зображення"
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "Deselect"
|
360 |
msgstr "Скасувати вибір"
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "File name"
|
364 |
msgstr "Назва файлу"
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "File type"
|
368 |
msgstr "Тип файлу"
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Description"
|
372 |
msgstr "Опис"
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Lightbox Button URL"
|
376 |
msgstr "Посилання для кнопки в лайтбоксі"
|
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 "Увімкніть, щоб відкрити вказаний вище URL в новій вкладці."
|
385 |
|
386 |
-
#: gallery-plugin.php:
|
387 |
msgid "Go Pro"
|
388 |
msgstr "Оновитися до Pro"
|
389 |
|
390 |
-
#: gallery-plugin.php:
|
391 |
msgid "Edit more details"
|
392 |
msgstr "Змінити деталі"
|
393 |
|
394 |
-
#: gallery-plugin.php:
|
395 |
msgid "Remove from Gallery"
|
396 |
msgstr "Видалити з галереї"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, php-format
|
400 |
msgid "Select %s"
|
401 |
msgstr "Вибрати %s"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
#, php-format
|
405 |
msgid "Edit “%s”"
|
406 |
msgstr "Редагувати “%s”"
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
msgid "Edit Attachment Info"
|
410 |
msgstr "Змінити інформацію зображення"
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
msgid "Edit"
|
414 |
msgstr "Змінити"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "Trash"
|
418 |
msgstr "Кошик"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "Delete Permanently"
|
422 |
msgstr "Видалити назавжди"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
#, php-format
|
426 |
msgid "View “%s”"
|
427 |
msgstr "Перегляд “%s”"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "View"
|
431 |
msgstr "Перегляд"
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "Attach"
|
435 |
msgstr "Прикріпити"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "Restore"
|
439 |
msgstr "Відновити"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
msgid "A list or dropdown of Gallery categories."
|
443 |
msgstr "Список чи випадаюче меню категорій галерей."
|
444 |
|
445 |
-
#: gallery-plugin.php:
|
446 |
msgid "Select Gallery Category"
|
447 |
msgstr "Оберіть категорію галерей"
|
448 |
|
449 |
-
#: gallery-plugin.php:
|
450 |
msgid "Title:"
|
451 |
msgstr "Заголовок:"
|
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 "Увага"
|
468 |
|
469 |
-
#: gallery-plugin.php:
|
470 |
msgid "You can add only images to the gallery"
|
471 |
msgstr "В галерею можна додати лише зображення"
|
472 |
|
473 |
-
#: gallery-plugin.php:
|
474 |
-
msgid "or"
|
475 |
-
msgstr "або"
|
476 |
-
|
477 |
-
#: gallery-plugin.php:3181
|
478 |
msgid "no title"
|
479 |
msgstr "без назви"
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid ""
|
483 |
"Display an album image with the description and the link to a single gallery "
|
484 |
"page"
|
@@ -486,7 +522,7 @@ msgstr ""
|
|
486 |
"Відобразити зображення альбому з описом і посиланням на окрему сторінку "
|
487 |
"галереї"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid "Sorry, no gallery found."
|
491 |
msgstr "Вибачте, жодної галереї не знайдено."
|
492 |
|
@@ -568,8 +604,8 @@ msgstr "Увімкніть щоб налаштувати цю галерею і
|
|
568 |
#: includes/class-gllr-settings.php:332 includes/class-gllr-settings.php:389
|
569 |
#: includes/class-gllr-settings.php:433 includes/class-gllr-settings.php:483
|
570 |
#: includes/class-gllr-settings.php:621 includes/class-gllr-settings.php:709
|
571 |
-
#: includes/class-gllr-settings.php:
|
572 |
-
#: includes/class-gllr-settings.php:
|
573 |
msgid "Close"
|
574 |
msgstr "Закрити"
|
575 |
|
@@ -594,7 +630,7 @@ msgstr "Кількість колонок"
|
|
594 |
msgid "Number of gallery columns (default is %s)."
|
595 |
msgstr "Кількість колонок галерей (за замовчуванням - %s)."
|
596 |
|
597 |
-
#: includes/class-gllr-settings.php:367 includes/class-gllr-settings.php:
|
598 |
msgid "Image Size"
|
599 |
msgstr "Розмір зображення"
|
600 |
|
@@ -732,10 +768,6 @@ msgstr "ID зображення"
|
|
732 |
msgid "Name"
|
733 |
msgstr "Назва"
|
734 |
|
735 |
-
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
736 |
-
msgid "Random"
|
737 |
-
msgstr "Довільно"
|
738 |
-
|
739 |
#: includes/class-gllr-settings.php:516
|
740 |
msgid ""
|
741 |
"Select images sorting order in your gallery. By default, you can sort images "
|
@@ -896,22 +928,6 @@ msgstr "Колір рамки зображення альбому"
|
|
896 |
msgid "Sort Albums by"
|
897 |
msgstr "Сортувати альбоми за"
|
898 |
|
899 |
-
#: includes/class-gllr-settings.php:678
|
900 |
-
msgid "Gallery ID"
|
901 |
-
msgstr "ID галереї"
|
902 |
-
|
903 |
-
#: includes/class-gllr-settings.php:681
|
904 |
-
msgid "Last modified date"
|
905 |
-
msgstr "Дата останньої зміни"
|
906 |
-
|
907 |
-
#: includes/class-gllr-settings.php:682
|
908 |
-
msgid "Comment count"
|
909 |
-
msgstr "Кількість коментарів"
|
910 |
-
|
911 |
-
#: includes/class-gllr-settings.php:683
|
912 |
-
msgid "\"Order\" field on the gallery edit page"
|
913 |
-
msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
|
914 |
-
|
915 |
#: includes/class-gllr-settings.php:687
|
916 |
msgid "Select galleries sorting order in your galleries page."
|
917 |
msgstr "Оберіть порядок сортування галерей на сторінці галерей."
|
@@ -941,14 +957,26 @@ msgid "Lightbox Settings"
|
|
941 |
msgstr "Налаштування лайтбоксу"
|
942 |
|
943 |
#: includes/class-gllr-settings.php:735
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
944 |
msgid "Enable Lightbox"
|
945 |
msgstr "Увімкнути лайтбокс"
|
946 |
|
947 |
-
#: includes/class-gllr-settings.php:
|
948 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
949 |
msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
|
950 |
|
951 |
-
#: includes/class-gllr-settings.php:
|
952 |
msgid ""
|
953 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
954 |
"will display the original, full size image."
|
@@ -956,15 +984,15 @@ msgstr ""
|
|
956 |
"Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
|
957 |
"замовчуванням буде відображатися оригінал, повний розмір."
|
958 |
|
959 |
-
#: includes/class-gllr-settings.php:
|
960 |
msgid "Overlay Color"
|
961 |
msgstr "Колір підкладки"
|
962 |
|
963 |
-
#: includes/class-gllr-settings.php:
|
964 |
msgid "Overlay Opacity"
|
965 |
msgstr "Прозорість підкладки"
|
966 |
|
967 |
-
#: includes/class-gllr-settings.php:
|
968 |
#, php-format
|
969 |
msgid ""
|
970 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
@@ -973,76 +1001,76 @@ msgstr ""
|
|
973 |
"Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
|
974 |
"(за замовчуванням %s, максимум %s)."
|
975 |
|
976 |
-
#: includes/class-gllr-settings.php:
|
977 |
msgid "Slideshow"
|
978 |
msgstr "Слайд-шоу"
|
979 |
|
980 |
-
#: includes/class-gllr-settings.php:
|
981 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
982 |
msgstr ""
|
983 |
"Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
|
984 |
|
985 |
-
#: includes/class-gllr-settings.php:
|
986 |
msgid "Slideshow Duration"
|
987 |
msgstr "Інтервал часу"
|
988 |
|
989 |
-
#: includes/class-gllr-settings.php:
|
990 |
msgid "ms"
|
991 |
msgstr "мс"
|
992 |
|
993 |
-
#: includes/class-gllr-settings.php:
|
994 |
msgid "Slideshow interval duration between two images."
|
995 |
msgstr "Інтервал перемикання між двома зображеннями."
|
996 |
|
997 |
-
#: includes/class-gllr-settings.php:
|
998 |
msgid "Lightbox Helpers"
|
999 |
msgstr "Допоміжні елементи лайтбоксу"
|
1000 |
|
1001 |
-
#: includes/class-gllr-settings.php:
|
1002 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1003 |
msgstr ""
|
1004 |
"Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
|
1005 |
|
1006 |
-
#: includes/class-gllr-settings.php:
|
1007 |
msgid "Lightbox Thumbnails"
|
1008 |
msgstr "Мініатюри в лайтбоксі"
|
1009 |
|
1010 |
-
#: includes/class-gllr-settings.php:
|
1011 |
msgid "Enable to use a lightbox helper navigation between images."
|
1012 |
msgstr ""
|
1013 |
"Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
|
1014 |
"зображеннями."
|
1015 |
|
1016 |
-
#: includes/class-gllr-settings.php:
|
1017 |
msgid "Lightbox Thumbnails Position"
|
1018 |
msgstr "Розташування мініатюр в лайтбоксі"
|
1019 |
|
1020 |
-
#: includes/class-gllr-settings.php:
|
1021 |
msgid "Top"
|
1022 |
msgstr "Верх"
|
1023 |
|
1024 |
-
#: includes/class-gllr-settings.php:
|
1025 |
msgid "Lightbox Button Label"
|
1026 |
msgstr "Текст кнопки в лайтбоксі"
|
1027 |
|
1028 |
-
#: includes/class-gllr-settings.php:
|
1029 |
msgid "Read More"
|
1030 |
msgstr "Дізнатися більше"
|
1031 |
|
1032 |
-
#: includes/class-gllr-settings.php:
|
1033 |
msgid "Download Button"
|
1034 |
msgstr "Кнопка \"Завантажити\""
|
1035 |
|
1036 |
-
#: includes/class-gllr-settings.php:
|
1037 |
msgid "Enable to display download button."
|
1038 |
msgstr ""
|
1039 |
"Увімкніть, щоб показати посилання на завантаження оригінального зображення."
|
1040 |
|
1041 |
-
#: includes/class-gllr-settings.php:
|
1042 |
msgid "Single Lightbox"
|
1043 |
msgstr "Один лайтбокс"
|
1044 |
|
1045 |
-
#: includes/class-gllr-settings.php:
|
1046 |
msgid ""
|
1047 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1048 |
"page."
|
@@ -1050,27 +1078,27 @@ msgstr ""
|
|
1050 |
"Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
|
1051 |
"розташованих на одній сторінці."
|
1052 |
|
1053 |
-
#: includes/class-gllr-settings.php:
|
1054 |
msgid "Social Sharing Buttons Settings"
|
1055 |
msgstr "Налаштування соціальних кнопок"
|
1056 |
|
1057 |
-
#: includes/class-gllr-settings.php:
|
1058 |
msgid "Social Buttons"
|
1059 |
msgstr "Соціальні кнопки"
|
1060 |
|
1061 |
-
#: includes/class-gllr-settings.php:
|
1062 |
msgid "Enable social sharing buttons in the lightbox."
|
1063 |
msgstr "Увімкніть соціальні кнопки в лайтбоксі."
|
1064 |
|
1065 |
-
#: includes/class-gllr-settings.php:
|
1066 |
msgid "Social Networks"
|
1067 |
msgstr "Соціальні мережі"
|
1068 |
|
1069 |
-
#: includes/class-gllr-settings.php:
|
1070 |
msgid "Counter"
|
1071 |
msgstr "Лічильник"
|
1072 |
|
1073 |
-
#: includes/class-gllr-settings.php:
|
1074 |
msgid ""
|
1075 |
"Enable to show likes counter for each social button (not available for "
|
1076 |
"Google +1)."
|
@@ -1078,11 +1106,11 @@ msgstr ""
|
|
1078 |
"Увімкніть, щоб показати лічильник для кожної соціальної кнопки (недоступно "
|
1079 |
"для Google+1)."
|
1080 |
|
1081 |
-
#: includes/class-gllr-settings.php:
|
1082 |
msgid "Demo Data"
|
1083 |
msgstr "Демо-дані"
|
1084 |
|
1085 |
-
#: includes/class-gllr-settings.php:
|
1086 |
msgid ""
|
1087 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1088 |
"page with a list of all galleries."
|
@@ -1090,11 +1118,11 @@ msgstr ""
|
|
1090 |
"Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
|
1091 |
"шорткодами і сторінку зі списком усіх галерей."
|
1092 |
|
1093 |
-
#: includes/class-gllr-settings.php:
|
1094 |
msgid "Gallery Post Type"
|
1095 |
msgstr "Тип запису галереї"
|
1096 |
|
1097 |
-
#: includes/class-gllr-settings.php:
|
1098 |
msgid ""
|
1099 |
"Enable to avoid conflicts with other gallery plugins installed. All "
|
1100 |
"galleries created earlier will stay unchanged. However, after enabling we "
|
@@ -1106,27 +1134,27 @@ msgstr ""
|
|
1106 |
"перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
|
1107 |
"запису \"gallery\"."
|
1108 |
|
1109 |
-
#: includes/class-gllr-settings.php:
|
1110 |
msgid "Gallery Slug"
|
1111 |
msgstr "Слаґ галереї"
|
1112 |
|
1113 |
-
#: includes/class-gllr-settings.php:
|
1114 |
msgid "Enter the unique gallery slug."
|
1115 |
msgstr "Введіть унікальний слаґ галереї."
|
1116 |
|
1117 |
-
#: includes/class-gllr-settings.php:
|
1118 |
msgid "Activate Now"
|
1119 |
msgstr "Активувати зараз"
|
1120 |
|
1121 |
-
#: includes/class-gllr-settings.php:
|
1122 |
msgid "Install Now"
|
1123 |
msgstr "Встановити зараз"
|
1124 |
|
1125 |
-
#: includes/class-gllr-settings.php:
|
1126 |
msgid "Enable to include galleries to your website search."
|
1127 |
msgstr "Включити галерею в пошук на вашому сайті."
|
1128 |
|
1129 |
-
#: includes/class-gllr-settings.php:
|
1130 |
#, php-format
|
1131 |
msgid "%s is required."
|
1132 |
msgstr "Потребується %s."
|
@@ -1220,6 +1248,17 @@ msgstr ""
|
|
1220 |
msgid "Yes, install demo now"
|
1221 |
msgstr "Так, встановити демо-дані зараз"
|
1222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1223 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1224 |
#~ msgstr "Порядок сортування (поле введення для сортування)"
|
1225 |
|
@@ -1294,12 +1333,6 @@ msgstr "Так, встановити демо-дані зараз"
|
|
1294 |
#~ "Увімкніть, щоб показати посилання на вихідний файл під кожним зображенням "
|
1295 |
#~ "в лайтбоксі."
|
1296 |
|
1297 |
-
#~ msgid "Download high resolution image"
|
1298 |
-
#~ msgstr "Завантажити зображення у високій роздільності"
|
1299 |
-
|
1300 |
-
#~ msgid "Image"
|
1301 |
-
#~ msgstr "Зображення"
|
1302 |
-
|
1303 |
#~ msgid "Lightbox Helper Type"
|
1304 |
#~ msgstr "Тип допоміжних елементів лайтбоксу"
|
1305 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-21 17:07+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-21 17:10+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"
|
24 |
msgid "Global Settings"
|
25 |
msgstr "Загальні налаштування"
|
26 |
|
27 |
+
#: gallery-plugin.php:43 gallery-plugin.php:2779
|
28 |
msgid "Upgrade to Pro"
|
29 |
msgstr "Оновитися до Pro"
|
30 |
|
31 |
+
#: gallery-plugin.php:222
|
32 |
msgid "Return to all albums"
|
33 |
msgstr "Повернутись до всіх альбомів"
|
34 |
|
35 |
+
#: gallery-plugin.php:236
|
36 |
msgid "See images »"
|
37 |
msgstr "Переглянути фото »"
|
38 |
|
39 |
+
#: gallery-plugin.php:324 gallery-plugin.php:333
|
40 |
msgid "Galleries"
|
41 |
msgstr "Галереї"
|
42 |
|
43 |
+
#: gallery-plugin.php:325 gallery-plugin.php:3198
|
44 |
msgid "Gallery"
|
45 |
msgstr "Галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:326
|
48 |
msgid "Add New Gallery"
|
49 |
msgstr "Додати нову галерею"
|
50 |
|
51 |
+
#: gallery-plugin.php:327
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Редагувати галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:328
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Нова галерея"
|
58 |
|
59 |
+
#: gallery-plugin.php:329
|
60 |
msgid "View Gallery"
|
61 |
msgstr "Переглянути галерею"
|
62 |
|
63 |
+
#: gallery-plugin.php:330 includes/class-gllr-settings.php:948
|
64 |
msgid "Search Galleries"
|
65 |
msgstr "Шукати галереї"
|
66 |
|
67 |
+
#: gallery-plugin.php:331
|
68 |
msgid "No Gallery found"
|
69 |
msgstr "Жодної галереї не знайдено"
|
70 |
|
71 |
+
#: gallery-plugin.php:353 gallery-plugin.php:1596 gallery-plugin.php:2925
|
72 |
+
#: gallery-plugin.php:2933 gallery-plugin.php:2971 gallery-plugin.php:2994
|
73 |
+
#: gallery-plugin.php:3170
|
74 |
msgid "Gallery Categories"
|
75 |
msgstr "Категорії галерей"
|
76 |
|
77 |
+
#: gallery-plugin.php:354 gallery-plugin.php:795
|
78 |
msgid "Gallery Category"
|
79 |
msgstr "Категорія галерей"
|
80 |
|
81 |
+
#: gallery-plugin.php:355
|
82 |
msgid "Add Gallery Category"
|
83 |
msgstr "Додати категорію галерей"
|
84 |
|
85 |
+
#: gallery-plugin.php:356
|
86 |
msgid "Add New Gallery Category"
|
87 |
msgstr "Додати нову категорію галерей"
|
88 |
|
89 |
+
#: gallery-plugin.php:357 gallery-plugin.php:358
|
90 |
msgid "Edit Gallery Category"
|
91 |
msgstr "Редагувати категорію галерей"
|
92 |
|
93 |
+
#: gallery-plugin.php:359
|
94 |
msgid "New Gallery Category"
|
95 |
msgstr "Нова категорія галерей"
|
96 |
|
97 |
+
#: gallery-plugin.php:360 gallery-plugin.php:361
|
98 |
msgid "View Gallery Category"
|
99 |
msgstr "Переглянути категорію галерей"
|
100 |
|
101 |
+
#: gallery-plugin.php:362
|
102 |
msgid "Find Gallery Category"
|
103 |
msgstr "Знайти категорію галерей"
|
104 |
|
105 |
+
#: gallery-plugin.php:363
|
106 |
msgid "No Gallery Categories found"
|
107 |
msgstr "Не знайдено жодної категорії галерей"
|
108 |
|
109 |
+
#: gallery-plugin.php:364
|
110 |
msgid "No Gallery Categories found in Trash"
|
111 |
msgstr "В кошику не знайдено жодної категорії галерей"
|
112 |
|
113 |
+
#: gallery-plugin.php:365
|
114 |
msgid "Parent Gallery Category"
|
115 |
msgstr "Батьківська категорія галерей"
|
116 |
|
117 |
+
#: gallery-plugin.php:366
|
118 |
msgid "Gallery Categories list navigation"
|
119 |
msgstr "Навігація списку категорій галерей"
|
120 |
|
121 |
+
#: gallery-plugin.php:367
|
122 |
msgid "Gallery Categories list"
|
123 |
msgstr "Список категорій галерей"
|
124 |
|
125 |
+
#: gallery-plugin.php:414
|
126 |
msgid "Gallery Shortcode"
|
127 |
msgstr "Шорткод галереї"
|
128 |
|
129 |
+
#: gallery-plugin.php:423
|
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:427
|
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:540
|
146 |
msgid "Note"
|
147 |
msgstr "Примітка"
|
148 |
|
149 |
+
#: gallery-plugin.php:540
|
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:551
|
159 |
+
msgid "Sort Galleries in Category by"
|
160 |
+
msgstr "Сортувати галереї в категорії по"
|
161 |
+
|
162 |
+
#: gallery-plugin.php:554 gallery-plugin.php:3184
|
163 |
+
#: includes/class-gllr-settings.php:678
|
164 |
+
msgid "Gallery ID"
|
165 |
+
msgstr "ID галереї"
|
166 |
+
|
167 |
+
#: gallery-plugin.php:555 gallery-plugin.php:1593 gallery-plugin.php:2634
|
168 |
+
#: gallery-plugin.php:2740 gallery-plugin.php:2851 gallery-plugin.php:3185
|
169 |
+
#: includes/class-gllr-settings.php:679
|
170 |
+
msgid "Title"
|
171 |
+
msgstr "Назва"
|
172 |
+
|
173 |
+
#: gallery-plugin.php:556 gallery-plugin.php:1598 gallery-plugin.php:3186
|
174 |
+
#: includes/class-gllr-settings.php:513 includes/class-gllr-settings.php:680
|
175 |
+
msgid "Date"
|
176 |
+
msgstr "Дата"
|
177 |
+
|
178 |
+
#: gallery-plugin.php:557 gallery-plugin.php:3187
|
179 |
+
#: includes/class-gllr-settings.php:681
|
180 |
+
msgid "Last modified date"
|
181 |
+
msgstr "Дата останньої зміни"
|
182 |
+
|
183 |
+
#: gallery-plugin.php:558 gallery-plugin.php:3188
|
184 |
+
#: includes/class-gllr-settings.php:682
|
185 |
+
msgid "Comment count"
|
186 |
+
msgstr "Кількість коментарів"
|
187 |
+
|
188 |
+
#: gallery-plugin.php:559 gallery-plugin.php:3189
|
189 |
+
#: includes/class-gllr-settings.php:683
|
190 |
+
msgid "\"Order\" field on the gallery edit page"
|
191 |
+
msgstr "Поле \"Порядок розміщення\" на сторінці редагування"
|
192 |
+
|
193 |
+
#: gallery-plugin.php:560 gallery-plugin.php:1597 gallery-plugin.php:3190
|
194 |
+
#: includes/class-gllr-settings.php:684
|
195 |
+
msgid "Author"
|
196 |
+
msgstr "Автор"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:561 gallery-plugin.php:3191
|
199 |
+
#: includes/class-gllr-settings.php:514 includes/class-gllr-settings.php:685
|
200 |
+
msgid "Random"
|
201 |
+
msgstr "Довільно"
|
202 |
+
|
203 |
+
#: gallery-plugin.php:562 gallery-plugin.php:3192
|
204 |
+
msgid "Plugin Settings"
|
205 |
+
msgstr "Налаштування плагіна"
|
206 |
+
|
207 |
+
#: gallery-plugin.php:564 gallery-plugin.php:3194
|
208 |
+
msgid "Select galleries sorting order in your category."
|
209 |
+
msgstr "Виберіть порядок сортування галерей у вашій категорії."
|
210 |
+
|
211 |
+
#: gallery-plugin.php:584 gallery-plugin.php:1595
|
212 |
msgid "Shortcode"
|
213 |
msgstr "Шорткод"
|
214 |
|
215 |
+
#: gallery-plugin.php:630
|
216 |
msgid "All Gallery Categories"
|
217 |
msgstr "Усі категорії галерей"
|
218 |
|
219 |
+
#: gallery-plugin.php:707
|
220 |
msgid "You can't delete default gallery category."
|
221 |
msgstr "Ви не можете видалити стандартну категорію галереї."
|
222 |
|
223 |
+
#: gallery-plugin.php:1085 gallery-plugin.php:1192 gallery-plugin.php:2114
|
224 |
+
#: template/gallery-single-template.php:95
|
225 |
msgid "Sorry, nothing found."
|
226 |
msgstr "Вибачте, нічого не знайдено."
|
227 |
|
228 |
+
#: gallery-plugin.php:1592
|
229 |
msgid "Featured Image"
|
230 |
msgstr "Зображення альбому"
|
231 |
|
232 |
+
#: gallery-plugin.php:1594 includes/class-gllr-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
233 |
msgid "Images"
|
234 |
msgstr "Зображення"
|
235 |
|
236 |
+
#: gallery-plugin.php:1684
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
#, php-format
|
238 |
msgid "%s Settings"
|
239 |
msgstr "Налаштування %s"
|
240 |
|
241 |
+
#: gallery-plugin.php:1711 gallery-plugin.php:1729
|
242 |
#: includes/class-gllr-settings.php:30 includes/class-gllr-settings.php:42
|
243 |
msgid "Settings"
|
244 |
msgstr "Налаштування"
|
245 |
|
246 |
+
#: gallery-plugin.php:1712
|
247 |
msgid "FAQ"
|
248 |
msgstr "FAQ"
|
249 |
|
250 |
+
#: gallery-plugin.php:1713
|
251 |
msgid "Support"
|
252 |
msgstr "Техпідтримка"
|
253 |
|
254 |
+
#: gallery-plugin.php:1752
|
255 |
msgid "Updating images..."
|
256 |
msgstr "Оновлення зображень..."
|
257 |
|
258 |
+
#: gallery-plugin.php:1753
|
259 |
msgid "No images found."
|
260 |
msgstr "Зображення не знайдені."
|
261 |
|
262 |
+
#: gallery-plugin.php:1754
|
263 |
msgid "All images were updated."
|
264 |
msgstr "Усі зображення оновлено."
|
265 |
|
266 |
+
#: gallery-plugin.php:1755
|
267 |
msgid "Error."
|
268 |
msgstr "Помилка."
|
269 |
|
270 |
+
#: gallery-plugin.php:1767
|
271 |
msgid ""
|
272 |
"You are about to remove these items from this gallery.\n"
|
273 |
" 'Cancel' to stop, 'OK' to delete."
|
275 |
"Ви збираєтесь видалити вибрані елементи з цієї галереї.\n"
|
276 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
277 |
|
278 |
+
#: gallery-plugin.php:1768
|
279 |
msgid ""
|
280 |
"You are about to remove this image from the gallery.\n"
|
281 |
" 'Cancel' to stop, 'OK' to delete."
|
283 |
"Ви збираєтеся видалити це зображення з галереї.\n"
|
284 |
" 'Відміна' - скасувати, 'OK' - видалити."
|
285 |
|
286 |
+
#: gallery-plugin.php:1769
|
287 |
msgid ""
|
288 |
"Switching to another mode, all unsaved data will be lost. Save data before "
|
289 |
"switching?"
|
291 |
"При переході на інший режим, усі незбережені дані будуть втрачені. Зберегти "
|
292 |
"їх перед переходом?"
|
293 |
|
294 |
+
#: gallery-plugin.php:1770
|
295 |
msgid "Insert Media"
|
296 |
msgstr "Додати медіафайл"
|
297 |
|
298 |
+
#: gallery-plugin.php:1771
|
299 |
msgid "Insert"
|
300 |
msgstr "Додати"
|
301 |
|
302 |
+
#: gallery-plugin.php:2306 gallery-plugin.php:2332
|
303 |
msgid "Image size not defined"
|
304 |
msgstr "Неможливо визначити розмір зображення"
|
305 |
|
306 |
+
#: gallery-plugin.php:2321
|
307 |
msgid ""
|
308 |
"Plugin updates only PNG, JPEG, GIF, WPMP or XBM filetype. For other, please "
|
309 |
"reload images manually."
|
311 |
"Плагін може оновити тільки такі типи файлів: PNG, JPEG, GIF, XBM або WPMP. "
|
312 |
"Для інших типів, будь ласка, перезавантажте зображення вручну."
|
313 |
|
314 |
+
#: gallery-plugin.php:2361 gallery-plugin.php:2364 gallery-plugin.php:2369
|
315 |
msgid "Invalid path"
|
316 |
msgstr "Невірний шлях до зображення"
|
317 |
|
318 |
+
#: gallery-plugin.php:2458
|
319 |
msgid "List View"
|
320 |
msgstr "У вигляді списку"
|
321 |
|
322 |
+
#: gallery-plugin.php:2459
|
323 |
msgid "Grid View"
|
324 |
msgstr "У вигляді сітки"
|
325 |
|
326 |
+
#: gallery-plugin.php:2514
|
327 |
msgid "Filter"
|
328 |
msgstr "Фільтр"
|
329 |
|
330 |
+
#: gallery-plugin.php:2518
|
331 |
msgid "Empty Trash"
|
332 |
msgstr "Очистити кошик"
|
333 |
|
334 |
+
#: gallery-plugin.php:2539
|
335 |
msgid "No images found"
|
336 |
msgstr "Жодного зображення не знайдено"
|
337 |
|
338 |
+
#: gallery-plugin.php:2591
|
339 |
msgid "Select bulk action"
|
340 |
msgstr "Вибрати групову дію"
|
341 |
|
342 |
+
#: gallery-plugin.php:2593
|
343 |
msgid "Bulk Actions"
|
344 |
msgstr "Групові дії"
|
345 |
|
346 |
+
#: gallery-plugin.php:2603
|
347 |
msgid "Apply"
|
348 |
msgstr "Застосувати"
|
349 |
|
350 |
+
#: gallery-plugin.php:2610
|
351 |
msgid "Delete from Gallery"
|
352 |
msgstr "Видалити з галереї"
|
353 |
|
354 |
+
#: gallery-plugin.php:2619
|
355 |
msgid "Bulk Select"
|
356 |
msgstr "Вибір"
|
357 |
|
358 |
+
#: gallery-plugin.php:2620
|
359 |
msgid "Cancel Selection"
|
360 |
msgstr "Скасувати вибір"
|
361 |
|
362 |
+
#: gallery-plugin.php:2621
|
363 |
msgid "Delete Selected"
|
364 |
msgstr "Видалити вибране"
|
365 |
|
366 |
+
#: gallery-plugin.php:2632
|
367 |
msgid "File"
|
368 |
msgstr "Файл"
|
369 |
|
370 |
+
#: gallery-plugin.php:2633 gallery-plugin.php:2735 gallery-plugin.php:2846
|
371 |
msgid "Dimensions"
|
372 |
msgstr "Розміри"
|
373 |
|
374 |
+
#: gallery-plugin.php:2635 gallery-plugin.php:2746 gallery-plugin.php:2856
|
375 |
msgid "Alt Text"
|
376 |
msgstr "Альтернативний текст"
|
377 |
|
378 |
+
#: gallery-plugin.php:2636 gallery-plugin.php:2750 gallery-plugin.php:2861
|
379 |
msgid "URL"
|
380 |
msgstr "Посилання"
|
381 |
|
382 |
+
#: gallery-plugin.php:2636 gallery-plugin.php:2752
|
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 |
"Введіть свій власний URL, щоб зв'язати це зображення з іншою сторінкою або "
|
388 |
"файлом. Залиште порожнім, щоб відкрити повнорозмірне зображення."
|
389 |
|
390 |
+
#: gallery-plugin.php:2717
|
391 |
msgid "Remove Image from Gallery"
|
392 |
msgstr "Видалити зображення з галереї"
|
393 |
|
394 |
+
#: gallery-plugin.php:2720
|
395 |
msgid "Edit Image Info"
|
396 |
msgstr "Редагувати інформацію зображення"
|
397 |
|
398 |
+
#: gallery-plugin.php:2721
|
399 |
msgid "Deselect"
|
400 |
msgstr "Скасувати вибір"
|
401 |
|
402 |
+
#: gallery-plugin.php:2733
|
403 |
msgid "File name"
|
404 |
msgstr "Назва файлу"
|
405 |
|
406 |
+
#: gallery-plugin.php:2734
|
407 |
msgid "File type"
|
408 |
msgstr "Тип файлу"
|
409 |
|
410 |
+
#: gallery-plugin.php:2759
|
411 |
msgid "Description"
|
412 |
msgstr "Опис"
|
413 |
|
414 |
+
#: gallery-plugin.php:2765
|
415 |
msgid "Lightbox Button URL"
|
416 |
msgstr "Посилання для кнопки в лайтбоксі"
|
417 |
|
418 |
+
#: gallery-plugin.php:2772
|
419 |
msgid "New Tab"
|
420 |
msgstr "Нова вкладка"
|
421 |
|
422 |
+
#: gallery-plugin.php:2774
|
423 |
msgid "Enable to open URLs above in a new tab."
|
424 |
msgstr "Увімкніть, щоб відкрити вказаний вище URL в новій вкладці."
|
425 |
|
426 |
+
#: gallery-plugin.php:2779
|
427 |
msgid "Go Pro"
|
428 |
msgstr "Оновитися до Pro"
|
429 |
|
430 |
+
#: gallery-plugin.php:2785
|
431 |
msgid "Edit more details"
|
432 |
msgstr "Змінити деталі"
|
433 |
|
434 |
+
#: gallery-plugin.php:2787
|
435 |
msgid "Remove from Gallery"
|
436 |
msgstr "Видалити з галереї"
|
437 |
|
438 |
+
#: gallery-plugin.php:2821
|
439 |
#, php-format
|
440 |
msgid "Select %s"
|
441 |
msgstr "Вибрати %s"
|
442 |
|
443 |
+
#: gallery-plugin.php:2834
|
444 |
#, php-format
|
445 |
msgid "Edit “%s”"
|
446 |
msgstr "Редагувати “%s”"
|
447 |
|
448 |
+
#: gallery-plugin.php:2842
|
449 |
msgid "Edit Attachment Info"
|
450 |
msgstr "Змінити інформацію зображення"
|
451 |
|
452 |
+
#: gallery-plugin.php:2879 gallery-plugin.php:2892
|
453 |
msgid "Edit"
|
454 |
msgstr "Змінити"
|
455 |
|
456 |
+
#: gallery-plugin.php:2882 gallery-plugin.php:2897
|
457 |
msgid "Trash"
|
458 |
msgstr "Кошик"
|
459 |
|
460 |
+
#: gallery-plugin.php:2885 gallery-plugin.php:2900
|
461 |
msgid "Delete Permanently"
|
462 |
msgstr "Видалити назавжди"
|
463 |
|
464 |
+
#: gallery-plugin.php:2887 gallery-plugin.php:2906
|
465 |
#, php-format
|
466 |
msgid "View “%s”"
|
467 |
msgstr "Перегляд “%s”"
|
468 |
|
469 |
+
#: gallery-plugin.php:2887 gallery-plugin.php:2906 gallery-plugin.php:2989
|
470 |
msgid "View"
|
471 |
msgstr "Перегляд"
|
472 |
|
473 |
+
#: gallery-plugin.php:2889
|
474 |
msgid "Attach"
|
475 |
msgstr "Прикріпити"
|
476 |
|
477 |
+
#: gallery-plugin.php:2895
|
478 |
msgid "Restore"
|
479 |
msgstr "Відновити"
|
480 |
|
481 |
+
#: gallery-plugin.php:2924
|
482 |
msgid "A list or dropdown of Gallery categories."
|
483 |
msgstr "Список чи випадаюче меню категорій галерей."
|
484 |
|
485 |
+
#: gallery-plugin.php:2969
|
486 |
msgid "Select Gallery Category"
|
487 |
msgstr "Оберіть категорію галерей"
|
488 |
|
489 |
+
#: gallery-plugin.php:3027
|
490 |
msgid "Title:"
|
491 |
msgstr "Заголовок:"
|
492 |
|
493 |
+
#: gallery-plugin.php:3030
|
494 |
msgid "Display as dropdown"
|
495 |
msgstr "У вигляді випадаючого меню"
|
496 |
|
497 |
+
#: gallery-plugin.php:3032
|
498 |
msgid "Show gallery counts"
|
499 |
msgstr "Показати кількість галерей"
|
500 |
|
501 |
+
#: gallery-plugin.php:3034
|
502 |
msgid "Show hierarchy"
|
503 |
msgstr "Показати ієрархію"
|
504 |
|
505 |
+
#: gallery-plugin.php:3150
|
506 |
msgid "Warning"
|
507 |
msgstr "Увага"
|
508 |
|
509 |
+
#: gallery-plugin.php:3150
|
510 |
msgid "You can add only images to the gallery"
|
511 |
msgstr "В галерею можна додати лише зображення"
|
512 |
|
513 |
+
#: gallery-plugin.php:3205
|
|
|
|
|
|
|
|
|
514 |
msgid "no title"
|
515 |
msgstr "без назви"
|
516 |
|
517 |
+
#: gallery-plugin.php:3215
|
518 |
msgid ""
|
519 |
"Display an album image with the description and the link to a single gallery "
|
520 |
"page"
|
522 |
"Відобразити зображення альбому з описом і посиланням на окрему сторінку "
|
523 |
"галереї"
|
524 |
|
525 |
+
#: gallery-plugin.php:3219
|
526 |
msgid "Sorry, no gallery found."
|
527 |
msgstr "Вибачте, жодної галереї не знайдено."
|
528 |
|
604 |
#: includes/class-gllr-settings.php:332 includes/class-gllr-settings.php:389
|
605 |
#: includes/class-gllr-settings.php:433 includes/class-gllr-settings.php:483
|
606 |
#: includes/class-gllr-settings.php:621 includes/class-gllr-settings.php:709
|
607 |
+
#: includes/class-gllr-settings.php:752 includes/class-gllr-settings.php:802
|
608 |
+
#: includes/class-gllr-settings.php:930
|
609 |
msgid "Close"
|
610 |
msgstr "Закрити"
|
611 |
|
630 |
msgid "Number of gallery columns (default is %s)."
|
631 |
msgstr "Кількість колонок галерей (за замовчуванням - %s)."
|
632 |
|
633 |
+
#: includes/class-gllr-settings.php:367 includes/class-gllr-settings.php:756
|
634 |
msgid "Image Size"
|
635 |
msgstr "Розмір зображення"
|
636 |
|
768 |
msgid "Name"
|
769 |
msgstr "Назва"
|
770 |
|
|
|
|
|
|
|
|
|
771 |
#: includes/class-gllr-settings.php:516
|
772 |
msgid ""
|
773 |
"Select images sorting order in your gallery. By default, you can sort images "
|
928 |
msgid "Sort Albums by"
|
929 |
msgstr "Сортувати альбоми за"
|
930 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
#: includes/class-gllr-settings.php:687
|
932 |
msgid "Select galleries sorting order in your galleries page."
|
933 |
msgstr "Оберіть порядок сортування галерей на сторінці галерей."
|
957 |
msgstr "Налаштування лайтбоксу"
|
958 |
|
959 |
#: includes/class-gllr-settings.php:735
|
960 |
+
msgid "Unclickable Thumbnail Images"
|
961 |
+
msgstr "Некликабельна картинка"
|
962 |
+
|
963 |
+
#: includes/class-gllr-settings.php:738
|
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:742
|
972 |
msgid "Enable Lightbox"
|
973 |
msgstr "Увімкнути лайтбокс"
|
974 |
|
975 |
+
#: includes/class-gllr-settings.php:745
|
976 |
msgid "Enable to show the lightbox when clicking on gallery images."
|
977 |
msgstr "Увімкніть, щоб показати лайтбокс при натисканні на зображення галереї."
|
978 |
|
979 |
+
#: includes/class-gllr-settings.php:763
|
980 |
msgid ""
|
981 |
"Select the maximum gallery image size for the lightbox view. \"Default\" "
|
982 |
"will display the original, full size image."
|
984 |
"Оберіть максимальний розмір зображень галереї для перегляду в лайтбоксі. За "
|
985 |
"замовчуванням буде відображатися оригінал, повний розмір."
|
986 |
|
987 |
+
#: includes/class-gllr-settings.php:767
|
988 |
msgid "Overlay Color"
|
989 |
msgstr "Колір підкладки"
|
990 |
|
991 |
+
#: includes/class-gllr-settings.php:773
|
992 |
msgid "Overlay Opacity"
|
993 |
msgstr "Прозорість підкладки"
|
994 |
|
995 |
+
#: includes/class-gllr-settings.php:776
|
996 |
#, php-format
|
997 |
msgid ""
|
998 |
"Lightbox overlay opacity. Leave blank to disable opacity (default is %s, max "
|
1001 |
"Прозорість підкладки лайтбоксу. Залиште порожнім, щоб відключити прозорість "
|
1002 |
"(за замовчуванням %s, максимум %s)."
|
1003 |
|
1004 |
+
#: includes/class-gllr-settings.php:786
|
1005 |
msgid "Slideshow"
|
1006 |
msgstr "Слайд-шоу"
|
1007 |
|
1008 |
+
#: includes/class-gllr-settings.php:788
|
1009 |
msgid "Enable to start the slideshow automatically when the lightbox is used."
|
1010 |
msgstr ""
|
1011 |
"Увімкніть для автоматичного запуску слайд-шоу при використанні лайтбоксу."
|
1012 |
|
1013 |
+
#: includes/class-gllr-settings.php:792
|
1014 |
msgid "Slideshow Duration"
|
1015 |
msgstr "Інтервал часу"
|
1016 |
|
1017 |
+
#: includes/class-gllr-settings.php:794
|
1018 |
msgid "ms"
|
1019 |
msgstr "мс"
|
1020 |
|
1021 |
+
#: includes/class-gllr-settings.php:795
|
1022 |
msgid "Slideshow interval duration between two images."
|
1023 |
msgstr "Інтервал перемикання між двома зображеннями."
|
1024 |
|
1025 |
+
#: includes/class-gllr-settings.php:806
|
1026 |
msgid "Lightbox Helpers"
|
1027 |
msgstr "Допоміжні елементи лайтбоксу"
|
1028 |
|
1029 |
+
#: includes/class-gllr-settings.php:808
|
1030 |
msgid "Enable to display the lightbox toolbar and arrows."
|
1031 |
msgstr ""
|
1032 |
"Увімкніть для того, щоб показати панель інструментів та кнопки навігації."
|
1033 |
|
1034 |
+
#: includes/class-gllr-settings.php:812
|
1035 |
msgid "Lightbox Thumbnails"
|
1036 |
msgstr "Мініатюри в лайтбоксі"
|
1037 |
|
1038 |
+
#: includes/class-gllr-settings.php:814
|
1039 |
msgid "Enable to use a lightbox helper navigation between images."
|
1040 |
msgstr ""
|
1041 |
"Дозволити використовувати допоміжні елементи лайтбоксу для навігації між "
|
1042 |
"зображеннями."
|
1043 |
|
1044 |
+
#: includes/class-gllr-settings.php:818
|
1045 |
msgid "Lightbox Thumbnails Position"
|
1046 |
msgstr "Розташування мініатюр в лайтбоксі"
|
1047 |
|
1048 |
+
#: includes/class-gllr-settings.php:821
|
1049 |
msgid "Top"
|
1050 |
msgstr "Верх"
|
1051 |
|
1052 |
+
#: includes/class-gllr-settings.php:826
|
1053 |
msgid "Lightbox Button Label"
|
1054 |
msgstr "Текст кнопки в лайтбоксі"
|
1055 |
|
1056 |
+
#: includes/class-gllr-settings.php:828
|
1057 |
msgid "Read More"
|
1058 |
msgstr "Дізнатися більше"
|
1059 |
|
1060 |
+
#: includes/class-gllr-settings.php:838
|
1061 |
msgid "Download Button"
|
1062 |
msgstr "Кнопка \"Завантажити\""
|
1063 |
|
1064 |
+
#: includes/class-gllr-settings.php:840
|
1065 |
msgid "Enable to display download button."
|
1066 |
msgstr ""
|
1067 |
"Увімкніть, щоб показати посилання на завантаження оригінального зображення."
|
1068 |
|
1069 |
+
#: includes/class-gllr-settings.php:844
|
1070 |
msgid "Single Lightbox"
|
1071 |
msgstr "Один лайтбокс"
|
1072 |
|
1073 |
+
#: includes/class-gllr-settings.php:846
|
1074 |
msgid ""
|
1075 |
"Enable to use a single lightbox for multiple galleries located on a single "
|
1076 |
"page."
|
1078 |
"Увімкніть, щоб використовувати один лайтбокс для декількох галерей, "
|
1079 |
"розташованих на одній сторінці."
|
1080 |
|
1081 |
+
#: includes/class-gllr-settings.php:856
|
1082 |
msgid "Social Sharing Buttons Settings"
|
1083 |
msgstr "Налаштування соціальних кнопок"
|
1084 |
|
1085 |
+
#: includes/class-gllr-settings.php:864
|
1086 |
msgid "Social Buttons"
|
1087 |
msgstr "Соціальні кнопки"
|
1088 |
|
1089 |
+
#: includes/class-gllr-settings.php:866
|
1090 |
msgid "Enable social sharing buttons in the lightbox."
|
1091 |
msgstr "Увімкніть соціальні кнопки в лайтбоксі."
|
1092 |
|
1093 |
+
#: includes/class-gllr-settings.php:870
|
1094 |
msgid "Social Networks"
|
1095 |
msgstr "Соціальні мережі"
|
1096 |
|
1097 |
+
#: includes/class-gllr-settings.php:881
|
1098 |
msgid "Counter"
|
1099 |
msgstr "Лічильник"
|
1100 |
|
1101 |
+
#: includes/class-gllr-settings.php:884
|
1102 |
msgid ""
|
1103 |
"Enable to show likes counter for each social button (not available for "
|
1104 |
"Google +1)."
|
1106 |
"Увімкніть, щоб показати лічильник для кожної соціальної кнопки (недоступно "
|
1107 |
"для Google+1)."
|
1108 |
|
1109 |
+
#: includes/class-gllr-settings.php:899
|
1110 |
msgid "Demo Data"
|
1111 |
msgstr "Демо-дані"
|
1112 |
|
1113 |
+
#: includes/class-gllr-settings.php:901
|
1114 |
msgid ""
|
1115 |
"Install demo data to create galleries with images, post with shortcodes and "
|
1116 |
"page with a list of all galleries."
|
1118 |
"Встановіть демо-дані, щоб створити галереї з зображеннями, запис з "
|
1119 |
"шорткодами і сторінку зі списком усіх галерей."
|
1120 |
|
1121 |
+
#: includes/class-gllr-settings.php:920
|
1122 |
msgid "Gallery Post Type"
|
1123 |
msgstr "Тип запису галереї"
|
1124 |
|
1125 |
+
#: includes/class-gllr-settings.php:922
|
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 |
"перевірте, будь ласка, налаштування інших плагінів, де використовується тип "
|
1135 |
"запису \"gallery\"."
|
1136 |
|
1137 |
+
#: includes/class-gllr-settings.php:934
|
1138 |
msgid "Gallery Slug"
|
1139 |
msgstr "Слаґ галереї"
|
1140 |
|
1141 |
+
#: includes/class-gllr-settings.php:938
|
1142 |
msgid "Enter the unique gallery slug."
|
1143 |
msgstr "Введіть унікальний слаґ галереї."
|
1144 |
|
1145 |
+
#: includes/class-gllr-settings.php:954
|
1146 |
msgid "Activate Now"
|
1147 |
msgstr "Активувати зараз"
|
1148 |
|
1149 |
+
#: includes/class-gllr-settings.php:969
|
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:972
|
1158 |
#, php-format
|
1159 |
msgid "%s is required."
|
1160 |
msgstr "Потребується %s."
|
1248 |
msgid "Yes, install demo now"
|
1249 |
msgstr "Так, встановити демо-дані зараз"
|
1250 |
|
1251 |
+
#: template/gallery-single-template.php:19
|
1252 |
+
msgid "Download high resolution image"
|
1253 |
+
msgstr "Завантажити зображення у високій роздільності"
|
1254 |
+
|
1255 |
+
#: template/gallery-single-template.php:114
|
1256 |
+
msgid "Image"
|
1257 |
+
msgstr "Зображення"
|
1258 |
+
|
1259 |
+
#~ msgid "or"
|
1260 |
+
#~ msgstr "або"
|
1261 |
+
|
1262 |
#~ msgid "Sorting order (the input field for sorting order)"
|
1263 |
#~ msgstr "Порядок сортування (поле введення для сортування)"
|
1264 |
|
1333 |
#~ "Увімкніть, щоб показати посилання на вихідний файл під кожним зображенням "
|
1334 |
#~ "в лайтбоксі."
|
1335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1336 |
#~ msgid "Lightbox Helper Type"
|
1337 |
#~ msgstr "Тип допоміжних елементів лайтбоксу"
|
1338 |
|
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: 4.9.
|
7 |
-
Stable tag: 4.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -31,7 +31,8 @@ https://www.youtube.com/watch?v=aydaTdOpaRM
|
|
31 |
* Column
|
32 |
* Rows
|
33 |
* Change image for album cover and its dimensions
|
34 |
-
*
|
|
|
35 |
* Attachment ID
|
36 |
* Image Name
|
37 |
* Date
|
@@ -39,7 +40,7 @@ https://www.youtube.com/watch?v=aydaTdOpaRM
|
|
39 |
* Random
|
40 |
* ASC (ascending order from lowest to highest values)
|
41 |
* DESC (descending order from highest to lowest values)
|
42 |
-
* Set default gallery projects sorting order by:
|
43 |
* Gallery ID
|
44 |
* Title
|
45 |
* Date
|
@@ -50,6 +51,7 @@ https://www.youtube.com/watch?v=aydaTdOpaRM
|
|
50 |
* Random
|
51 |
* ASC (ascending order from lowest to highest values)
|
52 |
* DESC (descending order from highest to lowest values)
|
|
|
53 |
* Add gallery categories widget and select the additional info:
|
54 |
* Display as dropdown
|
55 |
* Show galleries count
|
@@ -224,6 +226,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
= V4.5.4 - 15.12.2017 =
|
228 |
* Bugfix: Gallery styles have been fixed.
|
229 |
|
@@ -639,6 +647,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
639 |
|
640 |
== Upgrade Notice ==
|
641 |
|
|
|
|
|
|
|
|
|
642 |
= V4.5.4 =
|
643 |
* Bugs fixed.
|
644 |
|
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: 4.9.4
|
7 |
+
Stable tag: 4.5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
31 |
* Column
|
32 |
* Rows
|
33 |
* Change image for album cover and its dimensions
|
34 |
+
* Disable image opening from the thumbnail in a single gallery [NEW]
|
35 |
+
* Set default sorting order for images by: [NEW]
|
36 |
* Attachment ID
|
37 |
* Image Name
|
38 |
* Date
|
40 |
* Random
|
41 |
* ASC (ascending order from lowest to highest values)
|
42 |
* DESC (descending order from highest to lowest values)
|
43 |
+
* Set default gallery projects sorting order by: [NEW]
|
44 |
* Gallery ID
|
45 |
* Title
|
46 |
* Date
|
51 |
* Random
|
52 |
* ASC (ascending order from lowest to highest values)
|
53 |
* DESC (descending order from highest to lowest values)
|
54 |
+
* Sort galleries in a category
|
55 |
* Add gallery categories widget and select the additional info:
|
56 |
* Display as dropdown
|
57 |
* Show galleries count
|
226 |
|
227 |
== Changelog ==
|
228 |
|
229 |
+
= V4.5.5 - 08.03.2018 =
|
230 |
+
* NEW : Ability to disable the opening of the image from the thumbnail in a single gallery.
|
231 |
+
* NEW : Ability to sort galleries in a category has been added.
|
232 |
+
* NEW : Ability to sort galleries displayed by a shortcode has been added.
|
233 |
+
* Update : The compatibility with new WordPress version updated.
|
234 |
+
|
235 |
= V4.5.4 - 15.12.2017 =
|
236 |
* Bugfix: Gallery styles have been fixed.
|
237 |
|
647 |
|
648 |
== Upgrade Notice ==
|
649 |
|
650 |
+
= V4.5.5 =
|
651 |
+
* Functionality expanded.
|
652 |
+
* Bugs fixed.
|
653 |
+
|
654 |
= V4.5.4 =
|
655 |
* Bugs fixed.
|
656 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
screenshot-4.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
screenshot-6.png
CHANGED
Binary file
|
screenshot-7.png
CHANGED
Binary file
|
screenshot-8.png
CHANGED
Binary file
|
screenshot-9.png
CHANGED
Binary file
|