Version Description
- 27.07.2012 =
- NEW : Lituanian language file is added to the plugin.
- NEW : Added drag and drop function to change the order of the output of images
- NEW : Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.5 |
Comparing to | |
See all releases |
Code changes from version 3.4 to 3.5
- css/stylesheet.css +12 -2
- gallery-plugin.php +95 -20
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +86 -61
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +86 -61
- languages/gallery-es.mo +0 -0
- languages/gallery-es.po +86 -61
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +86 -61
- languages/gallery-he_IL.mo +0 -0
- languages/gallery-he_IL.po +90 -63
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +86 -61
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +86 -61
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +86 -61
- languages/gallery-lt_LT.mo +0 -0
- languages/gallery-lt_LT.po +299 -0
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +86 -61
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +86 -61
- languages/gallery-pt_BR.mo +0 -0
- languages/gallery-pt_BR.po +90 -63
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +86 -61
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +86 -61
- readme.txt +15 -2
- screenshot-1.jpg +0 -0
- screenshot-3.jpg +0 -0
- template/gallery-single-template.php +0 -0
- template/gallery-template.php +1 -1
css/stylesheet.css
CHANGED
@@ -41,6 +41,10 @@ ul.gallery {
|
|
41 |
width:150px;
|
42 |
}
|
43 |
|
|
|
|
|
|
|
|
|
44 |
.gallery .gllr_image_block {
|
45 |
float: left;
|
46 |
}
|
@@ -49,11 +53,17 @@ ul.gallery {
|
|
49 |
border: 10px solid #F1F1F1;
|
50 |
}
|
51 |
|
|
|
|
|
|
|
|
|
52 |
#Upload-File .gallery .gllr_image_block {
|
53 |
-
border: 1px solid #BDBDBD;
|
54 |
float: left;
|
|
|
|
|
|
|
|
|
55 |
height: 170px;
|
56 |
-
margin: 15px 6px 50px 0;
|
57 |
width: 170px;
|
58 |
}
|
59 |
|
41 |
width:150px;
|
42 |
}
|
43 |
|
44 |
+
.gllr_order_text {
|
45 |
+
width:20px;
|
46 |
+
}
|
47 |
+
|
48 |
.gallery .gllr_image_block {
|
49 |
float: left;
|
50 |
}
|
53 |
border: 10px solid #F1F1F1;
|
54 |
}
|
55 |
|
56 |
+
#Upload-File .gllr_order_message{
|
57 |
+
padding-bottom:10px;
|
58 |
+
}
|
59 |
+
|
60 |
#Upload-File .gallery .gllr_image_block {
|
|
|
61 |
float: left;
|
62 |
+
}
|
63 |
+
|
64 |
+
#Upload-File .gallery .gllr_border_image{
|
65 |
+
border: 1px solid #BDBDBD;
|
66 |
height: 170px;
|
|
|
67 |
width: 170px;
|
68 |
}
|
69 |
|
gallery-plugin.php
CHANGED
@@ -31,15 +31,15 @@ if( ! function_exists( 'gllr_plugin_install' ) ) {
|
|
31 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
32 |
}
|
33 |
else {
|
34 |
-
|
35 |
-
|
36 |
}
|
37 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
38 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
39 |
}
|
40 |
else {
|
41 |
-
|
42 |
-
|
43 |
}
|
44 |
}
|
45 |
}
|
@@ -171,6 +171,11 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
171 |
<ul id="files" ></ul>
|
172 |
<div id="hidden"></div>
|
173 |
<div style="clear:both;"></div></div>
|
|
|
|
|
|
|
|
|
|
|
174 |
<script type="text/javascript">
|
175 |
<?php if ($uploader === true) { ?>
|
176 |
jQuery(document).ready(function()
|
@@ -212,12 +217,13 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
212 |
<ul class="gallery clearfix">
|
213 |
<?php foreach ( $posts as $page ):
|
214 |
$image_text = get_post_meta( $page->ID, $key, FALSE );
|
215 |
-
echo '<li id="'.$page->ID.'" class="gllr_image_block">';
|
216 |
$image_attributes = wp_get_attachment_image_src( $page->ID, 'thumbnail' );
|
217 |
-
echo '<img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'"
|
218 |
echo '<input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
|
|
|
219 |
echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">Delete</a><div/>';
|
220 |
-
echo '</li>';
|
221 |
endforeach; ?>
|
222 |
</ul><div style="clear:both;"></div>
|
223 |
<div id="delete_images"></div>
|
@@ -232,6 +238,8 @@ if ( ! function_exists( 'gllr_post_shortcode_box' ) ) {
|
|
232 |
?>
|
233 |
<p><?php _e( 'You can add the Single Gallery on the page or in the post by inserting this shortcode in the content', 'gallery' ); ?>:</p>
|
234 |
<p><code>[print_gllr id=<?php echo $post->ID; ?>]</code></p>
|
|
|
|
|
235 |
<?php }
|
236 |
}
|
237 |
|
@@ -311,6 +319,11 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
311 |
}
|
312 |
}
|
313 |
}
|
|
|
|
|
|
|
|
|
|
|
314 |
}
|
315 |
}
|
316 |
|
@@ -581,6 +594,7 @@ if( ! function_exists( 'register_gllr_settings' ) ) {
|
|
581 |
'slideshow_interval' => 2000,
|
582 |
'order_by' => 'menu_order',
|
583 |
'order' => 'ASC',
|
|
|
584 |
'return_link' => 0,
|
585 |
'return_link_text' => 'Return to all albums',
|
586 |
'return_link_shortcode' => 0
|
@@ -605,6 +619,9 @@ if( ! function_exists( 'register_gllr_settings' ) ) {
|
|
605 |
|
606 |
// array merge incase this version has added new options
|
607 |
$gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
|
|
|
|
|
|
|
608 |
if ( function_exists( 'add_image_size' ) ) {
|
609 |
add_image_size( 'album-thumb', $gllr_options['gllr_custom_size_px'][0][0], $gllr_options['gllr_custom_size_px'][0][1], true );
|
610 |
add_image_size( 'photo-thumb', $gllr_options['gllr_custom_size_px'][1][0], $gllr_options['gllr_custom_size_px'][1][1], true );
|
@@ -649,6 +666,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
649 |
$gllr_request_options["return_link_shortcode"] = 0;
|
650 |
|
651 |
$gllr_request_options["return_link_text"] = $_REQUEST['return_link_text'];
|
|
|
652 |
|
653 |
// array merge incase this version has added new options
|
654 |
$gllr_options = array_merge( $gllr_options, $gllr_request_options );
|
@@ -747,6 +765,12 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
747 |
<input type="text" name="return_link_text" value="<?php echo $gllr_options["return_link_text"]; ?>" style="width:200px;" />
|
748 |
</td>
|
749 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
</table>
|
751 |
<input type="hidden" name="gllr_form_submit" value="submit" />
|
752 |
<p class="submit">
|
@@ -784,20 +808,41 @@ if( ! function_exists( 'gllr_plugin_action_links' ) ) {
|
|
784 |
} // end function gllr_plugin_action_links
|
785 |
}
|
786 |
|
787 |
-
if( ! function_exists( '
|
788 |
-
function
|
789 |
-
<script
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
795 |
}
|
796 |
|
797 |
if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
798 |
function gllr_admin_head() {
|
799 |
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
800 |
wp_enqueue_style( 'gllrFileuploaderCss', plugins_url( 'upload/fileuploader.css', __FILE__ ) );
|
|
|
|
|
|
|
|
|
801 |
wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
|
802 |
}
|
803 |
}
|
@@ -806,6 +851,7 @@ if ( ! function_exists ( 'gllr_wp_head' ) ) {
|
|
806 |
function gllr_wp_head() {
|
807 |
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
808 |
wp_enqueue_style( 'gllrFancyboxStylesheet', plugins_url( 'fancybox/jquery.fancybox-1.3.4.css', __FILE__ ) );
|
|
|
809 |
wp_enqueue_script( 'gllrFancyboxMousewheelJs', plugins_url( 'fancybox/jquery.mousewheel-3.0.4.pack.js', __FILE__ ), array( 'jquery' ) );
|
810 |
wp_enqueue_script( 'gllrFancyboxJs', plugins_url( 'fancybox/jquery.fancybox-1.3.4.pack.js', __FILE__ ), array( 'jquery' ) );
|
811 |
}
|
@@ -814,7 +860,8 @@ if ( ! function_exists ( 'gllr_wp_head' ) ) {
|
|
814 |
if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
815 |
function gllr_shortcode( $attr ) {
|
816 |
extract( shortcode_atts( array(
|
817 |
-
'id' => ''
|
|
|
818 |
), $attr )
|
819 |
);
|
820 |
$args = array(
|
@@ -826,6 +873,34 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
826 |
ob_start();
|
827 |
$second_query = new WP_Query( $args );
|
828 |
$gllr_options = get_option( 'gllr_options' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
829 |
if ($second_query->have_posts()) :
|
830 |
while ($second_query->have_posts()) :
|
831 |
global $post;
|
@@ -904,7 +979,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
904 |
});
|
905 |
})(jQuery);
|
906 |
</script>
|
907 |
-
<?php
|
908 |
$gllr_output = ob_get_clean();
|
909 |
wp_reset_query();
|
910 |
return $gllr_output;
|
@@ -1104,11 +1179,11 @@ add_filter( 'page_css_class', 'gllr_page_css_class', 10, 2 );
|
|
1104 |
add_filter( 'manage_gallery_posts_columns', 'gllr_change_columns' );
|
1105 |
add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 );
|
1106 |
|
1107 |
-
add_action( '
|
1108 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
1109 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
1110 |
|
1111 |
add_shortcode( 'print_gllr', 'gllr_shortcode' );
|
1112 |
|
1113 |
-
add_action('wp_ajax_upload_gallery_image', 'upload_gallery_image');
|
1114 |
-
?>
|
31 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
32 |
}
|
33 |
else {
|
34 |
+
@copy( get_stylesheet_directory() .'/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php.bak' );
|
35 |
+
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
36 |
}
|
37 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
38 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
39 |
}
|
40 |
else {
|
41 |
+
@copy( get_stylesheet_directory() .'/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php.bak' );
|
42 |
+
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
43 |
}
|
44 |
}
|
45 |
}
|
171 |
<ul id="files" ></ul>
|
172 |
<div id="hidden"></div>
|
173 |
<div style="clear:both;"></div></div>
|
174 |
+
<div class="gllr_order_message hidden">
|
175 |
+
<?php _e( 'Please use drag and drop function to change the order of the output of images and do not forget to save post.', 'gallery'); ?>
|
176 |
+
<br />
|
177 |
+
<?php _e( 'Please do not forget to select ', 'gallery'); echo ' `'; _e('Attachments order by', 'gallery' ); echo '` -> `'; _e('attachments order', 'gallery' ); echo '` '; _e('in the settings of the plugin (page ', 'gallery'); ?><a href="<?php echo admin_url( 'admin.php?page=gallery-plugin.php', 'http' ); ?>" target="_blank"><?php echo admin_url( 'admin.php?page=gallery-plugin.php', 'http' ); ?></a>)
|
178 |
+
</div>
|
179 |
<script type="text/javascript">
|
180 |
<?php if ($uploader === true) { ?>
|
181 |
jQuery(document).ready(function()
|
217 |
<ul class="gallery clearfix">
|
218 |
<?php foreach ( $posts as $page ):
|
219 |
$image_text = get_post_meta( $page->ID, $key, FALSE );
|
220 |
+
echo '<li id="'.$page->ID.'" class="gllr_image_block"><div class="gllr_drag">';
|
221 |
$image_attributes = wp_get_attachment_image_src( $page->ID, 'thumbnail' );
|
222 |
+
echo '<div class="gllr_border_image"><img src="'.$image_attributes[0].'" alt="'.$page->post_title.'" title="'.$page->post_title.'" height="'.get_option( 'thumbnail_size_h' ).'" width="'.get_option( 'thumbnail_size_w' ).'" /></div>';
|
223 |
echo '<input type="text" name="gllr_image_text['.$page->ID.']" value="'.get_post_meta( $page->ID, $key, TRUE ).'" class="gllr_image_text" />';
|
224 |
+
echo '<input type="text" name="gllr_order_text['.$page->ID.']" value="'.$page->menu_order.'" class="gllr_order_text '.( $page->menu_order == 0 ? "hidden" : '' ).'" />';
|
225 |
echo '<div class="delete"><a href="javascript:void(0);" onclick="img_delete('.$page->ID.');">Delete</a><div/>';
|
226 |
+
echo '</div></li>';
|
227 |
endforeach; ?>
|
228 |
</ul><div style="clear:both;"></div>
|
229 |
<div id="delete_images"></div>
|
238 |
?>
|
239 |
<p><?php _e( 'You can add the Single Gallery on the page or in the post by inserting this shortcode in the content', 'gallery' ); ?>:</p>
|
240 |
<p><code>[print_gllr id=<?php echo $post->ID; ?>]</code></p>
|
241 |
+
<p><?php _e( 'If you want to take a brief display of the gallery with a link to a Single Sallery Page', 'gallery' ); ?>:</p>
|
242 |
+
<p><code>[print_gllr id=<?php echo $post->ID; ?> display=short]</code></p>
|
243 |
<?php }
|
244 |
}
|
245 |
|
319 |
}
|
320 |
}
|
321 |
}
|
322 |
+
if( isset( $_REQUEST['gllr_order_text'] ) ) {
|
323 |
+
foreach( $_REQUEST['gllr_order_text'] as $key=>$val ){
|
324 |
+
wp_update_post( array( 'ID'=>$key, 'menu_order'=>$val ) );
|
325 |
+
}
|
326 |
+
}
|
327 |
}
|
328 |
}
|
329 |
|
594 |
'slideshow_interval' => 2000,
|
595 |
'order_by' => 'menu_order',
|
596 |
'order' => 'ASC',
|
597 |
+
'read_more_link_text' => __( 'See photo »', 'gallery' ),
|
598 |
'return_link' => 0,
|
599 |
'return_link_text' => 'Return to all albums',
|
600 |
'return_link_shortcode' => 0
|
619 |
|
620 |
// array merge incase this version has added new options
|
621 |
$gllr_options = array_merge( $gllr_option_defaults, $gllr_options );
|
622 |
+
|
623 |
+
update_option( 'gllr_options', $gllr_options );
|
624 |
+
|
625 |
if ( function_exists( 'add_image_size' ) ) {
|
626 |
add_image_size( 'album-thumb', $gllr_options['gllr_custom_size_px'][0][0], $gllr_options['gllr_custom_size_px'][0][1], true );
|
627 |
add_image_size( 'photo-thumb', $gllr_options['gllr_custom_size_px'][1][0], $gllr_options['gllr_custom_size_px'][1][1], true );
|
666 |
$gllr_request_options["return_link_shortcode"] = 0;
|
667 |
|
668 |
$gllr_request_options["return_link_text"] = $_REQUEST['return_link_text'];
|
669 |
+
$gllr_request_options["read_more_link_text"] = $_REQUEST['read_more_link_text'];
|
670 |
|
671 |
// array merge incase this version has added new options
|
672 |
$gllr_options = array_merge( $gllr_options, $gllr_request_options );
|
765 |
<input type="text" name="return_link_text" value="<?php echo $gllr_options["return_link_text"]; ?>" style="width:200px;" />
|
766 |
</td>
|
767 |
</tr>
|
768 |
+
<tr valign="top">
|
769 |
+
<th scope="row"><?php _e('Label for Read More link', 'gallery' ); ?> </th>
|
770 |
+
<td>
|
771 |
+
<input type="text" name="read_more_link_text" value="<?php echo $gllr_options["read_more_link_text"]; ?>" style="width:200px;" />
|
772 |
+
</td>
|
773 |
+
</tr>
|
774 |
</table>
|
775 |
<input type="hidden" name="gllr_form_submit" value="submit" />
|
776 |
<p class="submit">
|
808 |
} // end function gllr_plugin_action_links
|
809 |
}
|
810 |
|
811 |
+
if ( ! function_exists ( 'gllr_add_admin_script' ) ) {
|
812 |
+
function gllr_add_admin_script() { ?>
|
813 |
+
<script>
|
814 |
+
(function($) {
|
815 |
+
$(document).ready(function(){
|
816 |
+
$('.gllr_image_block img').css('cursor', 'all-scroll' );
|
817 |
+
$('.gllr_order_message').removeClass('hidden');
|
818 |
+
var d=false;
|
819 |
+
$( '#Upload-File .gallery' ).sortable({
|
820 |
+
stop: function(event, ui) {
|
821 |
+
$('.gllr_order_text').removeClass('hidden');
|
822 |
+
var g=$('#Upload-File .gallery').sortable('toArray');
|
823 |
+
var f=g.length;
|
824 |
+
$.each( g,
|
825 |
+
function( k,l ){
|
826 |
+
var j=d?(f-k):(1+k);
|
827 |
+
$('.gllr_order_text[name^="gllr_order_text['+l+']"]').val(j);
|
828 |
+
}
|
829 |
+
)
|
830 |
+
}
|
831 |
+
});
|
832 |
+
});
|
833 |
+
})(jQuery);
|
834 |
+
</script>
|
835 |
+
<?php }
|
836 |
}
|
837 |
|
838 |
if ( ! function_exists ( 'gllr_admin_head' ) ) {
|
839 |
function gllr_admin_head() {
|
840 |
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
841 |
wp_enqueue_style( 'gllrFileuploaderCss', plugins_url( 'upload/fileuploader.css', __FILE__ ) );
|
842 |
+
wp_enqueue_script( 'jquery' );
|
843 |
+
//wp_enqueue_script( 'jquery-ui-draggable' );
|
844 |
+
//wp_enqueue_script( 'jquery-ui-droppable' );
|
845 |
+
wp_enqueue_script( 'jquery-ui-sortable' );
|
846 |
wp_enqueue_script( 'gllrFileuploaderJs', plugins_url( 'upload/fileuploader.js', __FILE__ ), array( 'jquery' ) );
|
847 |
}
|
848 |
}
|
851 |
function gllr_wp_head() {
|
852 |
wp_enqueue_style( 'gllrStylesheet', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
853 |
wp_enqueue_style( 'gllrFancyboxStylesheet', plugins_url( 'fancybox/jquery.fancybox-1.3.4.css', __FILE__ ) );
|
854 |
+
wp_enqueue_script( 'jquery' );
|
855 |
wp_enqueue_script( 'gllrFancyboxMousewheelJs', plugins_url( 'fancybox/jquery.mousewheel-3.0.4.pack.js', __FILE__ ), array( 'jquery' ) );
|
856 |
wp_enqueue_script( 'gllrFancyboxJs', plugins_url( 'fancybox/jquery.fancybox-1.3.4.pack.js', __FILE__ ), array( 'jquery' ) );
|
857 |
}
|
860 |
if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
861 |
function gllr_shortcode( $attr ) {
|
862 |
extract( shortcode_atts( array(
|
863 |
+
'id' => '',
|
864 |
+
'display' => 'full'
|
865 |
), $attr )
|
866 |
);
|
867 |
$args = array(
|
873 |
ob_start();
|
874 |
$second_query = new WP_Query( $args );
|
875 |
$gllr_options = get_option( 'gllr_options' );
|
876 |
+
if( $display == 'short' ) { ?>
|
877 |
+
<div class="gallery_box">
|
878 |
+
<ul>
|
879 |
+
<?php
|
880 |
+
global $post, $wpdb, $wp_query;
|
881 |
+
if ( $second_query->have_posts() ) : $second_query->the_post();
|
882 |
+
$attachments = get_post_thumbnail_id( $post->ID );
|
883 |
+
if( empty ( $attachments ) ) {
|
884 |
+
$attachments = get_children( 'post_parent='.$post->ID.'&post_type=attachment&post_mime_type=image&numberposts=1' );
|
885 |
+
$id = key($attachments);
|
886 |
+
$image_attributes = wp_get_attachment_image_src( $id, 'album-thumb' );
|
887 |
+
}
|
888 |
+
else {
|
889 |
+
$image_attributes = wp_get_attachment_image_src( $attachments, 'album-thumb' );
|
890 |
+
}
|
891 |
+
?>
|
892 |
+
<li>
|
893 |
+
<img style="width:<?php echo $gllr_options['gllr_custom_size_px'][0][0]; ?>px;" alt="<?php echo $post->post_title; ?>" title="<?php echo $post->post_title; ?>" src="<?php echo $image_attributes[0]; ?>" />
|
894 |
+
<div class="gallery_detail_box">
|
895 |
+
<div><?php echo $post->post_title; ?></div>
|
896 |
+
<div><?php echo the_excerpt_max_charlength(100); ?></div>
|
897 |
+
<a href="<?php echo get_permalink( $post->ID ); ?>"><?php echo $gllr_options["read_more_link_text"]; ?></a>
|
898 |
+
</div>
|
899 |
+
<div class="clear"></div>
|
900 |
+
</li>
|
901 |
+
<?php endif; ?>
|
902 |
+
</ul></div>
|
903 |
+
<?php } else {
|
904 |
if ($second_query->have_posts()) :
|
905 |
while ($second_query->have_posts()) :
|
906 |
global $post;
|
979 |
});
|
980 |
})(jQuery);
|
981 |
</script>
|
982 |
+
<?php }
|
983 |
$gllr_output = ob_get_clean();
|
984 |
wp_reset_query();
|
985 |
return $gllr_output;
|
1179 |
add_filter( 'manage_gallery_posts_columns', 'gllr_change_columns' );
|
1180 |
add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 );
|
1181 |
|
1182 |
+
add_action( 'admin_head', 'gllr_add_admin_script' );
|
1183 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
1184 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
1185 |
|
1186 |
add_shortcode( 'print_gllr', 'gllr_shortcode' );
|
1187 |
|
1188 |
+
add_action( 'wp_ajax_upload_gallery_image', 'upload_gallery_image' );
|
1189 |
+
?>
|
languages/gallery-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -80,183 +80,212 @@ msgstr "Vyberte náhled pro nahrání:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "Title"
|
89 |
msgstr "Název"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Autor"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotky"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Veřejné"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivní pluginy"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Další informace"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Nastavení"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Nainstalované pluginy"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Doporučené pluginy"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Stáhnout"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Instaluj %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Instaluj ihned z wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "Options saved."
|
150 |
msgstr "Nastavení uložena."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Nastavení galerie"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Rozměry náhledu alba v galerii"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Název rozměru"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Šířka (v px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Výška (v px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Rozměry náhledu obrázku v albu"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
msgid "Attachments order by"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Uložit změny"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Podpora"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Omlouvám se - nic nenalezeno."
|
@@ -265,10 +294,6 @@ msgstr "Omlouvám se - nic nenalezeno."
|
|
265 |
msgid "Image "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: template/gallery-template.php:69
|
269 |
-
msgid "See photo »"
|
270 |
-
msgstr "Zobrazit obsah galerie »"
|
271 |
-
|
272 |
#~ msgid "Size for gallery album cover"
|
273 |
#~ msgstr "Размер для "
|
274 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:56+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
82 |
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
msgid "Title"
|
114 |
msgstr "Název"
|
115 |
|
116 |
+
#: gallery-plugin.php:395
|
117 |
msgid "Author"
|
118 |
msgstr "Autor"
|
119 |
|
120 |
+
#: gallery-plugin.php:396
|
121 |
msgid "Photo's"
|
122 |
msgstr "Fotky"
|
123 |
|
124 |
+
#: gallery-plugin.php:397
|
125 |
msgid "Public"
|
126 |
msgstr "Veřejné"
|
127 |
|
128 |
+
#: gallery-plugin.php:398
|
129 |
msgid "Date"
|
130 |
msgstr "Datum"
|
131 |
|
132 |
+
#: gallery-plugin.php:545
|
133 |
msgid "Activated plugins"
|
134 |
msgstr "Aktivní pluginy"
|
135 |
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
msgid "Read more"
|
140 |
msgstr "Další informace"
|
141 |
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
msgid "Settings"
|
146 |
msgstr "Nastavení"
|
147 |
|
148 |
+
#: gallery-plugin.php:553
|
149 |
msgid "Installed plugins"
|
150 |
msgstr "Nainstalované pluginy"
|
151 |
|
152 |
+
#: gallery-plugin.php:561
|
153 |
msgid "Recommended plugins"
|
154 |
msgstr "Doporučené pluginy"
|
155 |
|
156 |
+
#: gallery-plugin.php:563
|
157 |
msgid "Download"
|
158 |
msgstr "Stáhnout"
|
159 |
|
160 |
+
#: gallery-plugin.php:563
|
161 |
#, php-format
|
162 |
msgid "Install %s"
|
163 |
msgstr "Instaluj %s"
|
164 |
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Install now from wordpress.org"
|
167 |
msgstr "Instaluj ihned z wordpress.org"
|
168 |
|
169 |
+
#: gallery-plugin.php:565
|
170 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
|
172 |
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Zobrazit obsah galerie »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
msgid "Options saved."
|
179 |
msgstr "Nastavení uložena."
|
180 |
|
181 |
+
#: gallery-plugin.php:690
|
182 |
msgid "Gallery Options"
|
183 |
msgstr "Nastavení galerie"
|
184 |
|
185 |
+
#: gallery-plugin.php:693
|
186 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: gallery-plugin.php:697
|
190 |
msgid "The size of the cover album for gallery"
|
191 |
msgstr "Rozměry náhledu alba v galerii"
|
192 |
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
msgid "Image size name"
|
196 |
msgstr "Název rozměru"
|
197 |
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Width (in px)"
|
201 |
msgstr "Šířka (v px)"
|
202 |
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
msgid "Height (in px)"
|
206 |
msgstr "Výška (v px)"
|
207 |
|
208 |
+
#: gallery-plugin.php:705
|
209 |
msgid "Size for gallery image"
|
210 |
msgstr "Rozměry náhledu obrázku v albu"
|
211 |
|
212 |
+
#: gallery-plugin.php:713
|
213 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
215 |
|
216 |
+
#: gallery-plugin.php:716
|
217 |
msgid "Count images in row"
|
218 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "Start slideshow"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:728
|
225 |
msgid "Slideshow interval"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
229 |
msgid "attachment id"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: gallery-plugin.php:737
|
233 |
msgid "attachment title"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:738
|
237 |
msgid "date"
|
238 |
msgstr "Datum"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: gallery-plugin.php:740
|
245 |
msgid "random"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: gallery-plugin.php:744
|
249 |
msgid "Attachments order"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: gallery-plugin.php:746
|
253 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: gallery-plugin.php:747
|
257 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: gallery-plugin.php:751
|
261 |
msgid "Display Return link"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: gallery-plugin.php:757
|
265 |
msgid "Display Return link in shortcode"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: gallery-plugin.php:763
|
269 |
msgid "Label for Return link"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Uložit změny"
|
279 |
|
280 |
+
#: gallery-plugin.php:790
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ "
|
283 |
|
284 |
+
#: gallery-plugin.php:791
|
285 |
msgid "Support"
|
286 |
msgstr "Podpora"
|
287 |
|
288 |
+
#: gallery-plugin.php:953
|
289 |
#: template/gallery-single-template.php:60
|
290 |
msgid "Sorry - nothing to found."
|
291 |
msgstr "Omlouvám se - nic nenalezeno."
|
294 |
msgid "Image "
|
295 |
msgstr ""
|
296 |
|
|
|
|
|
|
|
|
|
297 |
#~ msgid "Size for gallery album cover"
|
298 |
#~ msgstr "Размер для "
|
299 |
|
languages/gallery-de_DE.mo
CHANGED
Binary file
|
languages/gallery-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -80,183 +80,212 @@ msgstr "Screenshot zum hochladen auswählen:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "Title"
|
89 |
msgstr "Titel"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Author"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotos"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Öffentlich"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivierte Plugins"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Mehr erfahren"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Einstellungen"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Installierte Plugins"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Benötigte Plugins"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installiere %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Direkt von wordpress.org installieren"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "Options saved."
|
150 |
msgstr "Einstellungen gespeichert."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Galerie Einstellungen"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Name der Bilder"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Breite (in px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Höhe (in px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Die Größe der Bilder in der Galerie"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Anzahl Bilder in der Reihe"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
msgid "Attachments order by"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Einstellungen speichern"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Support"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Leider nichts gefunden."
|
@@ -265,10 +294,6 @@ msgstr "Leider nichts gefunden."
|
|
265 |
msgid "Image "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: template/gallery-template.php:69
|
269 |
-
msgid "See photo »"
|
270 |
-
msgstr "Fotos anzeigen »"
|
271 |
-
|
272 |
#~ msgid "Size for gallery album cover"
|
273 |
#~ msgstr "Размер для "
|
274 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:56+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
82 |
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
msgid "Title"
|
114 |
msgstr "Titel"
|
115 |
|
116 |
+
#: gallery-plugin.php:395
|
117 |
msgid "Author"
|
118 |
msgstr "Author"
|
119 |
|
120 |
+
#: gallery-plugin.php:396
|
121 |
msgid "Photo's"
|
122 |
msgstr "Fotos"
|
123 |
|
124 |
+
#: gallery-plugin.php:397
|
125 |
msgid "Public"
|
126 |
msgstr "Öffentlich"
|
127 |
|
128 |
+
#: gallery-plugin.php:398
|
129 |
msgid "Date"
|
130 |
msgstr "Datum"
|
131 |
|
132 |
+
#: gallery-plugin.php:545
|
133 |
msgid "Activated plugins"
|
134 |
msgstr "Aktivierte Plugins"
|
135 |
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
msgid "Read more"
|
140 |
msgstr "Mehr erfahren"
|
141 |
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
msgid "Settings"
|
146 |
msgstr "Einstellungen"
|
147 |
|
148 |
+
#: gallery-plugin.php:553
|
149 |
msgid "Installed plugins"
|
150 |
msgstr "Installierte Plugins"
|
151 |
|
152 |
+
#: gallery-plugin.php:561
|
153 |
msgid "Recommended plugins"
|
154 |
msgstr "Benötigte Plugins"
|
155 |
|
156 |
+
#: gallery-plugin.php:563
|
157 |
msgid "Download"
|
158 |
msgstr "Download"
|
159 |
|
160 |
+
#: gallery-plugin.php:563
|
161 |
#, php-format
|
162 |
msgid "Install %s"
|
163 |
msgstr "Installiere %s"
|
164 |
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Install now from wordpress.org"
|
167 |
msgstr "Direkt von wordpress.org installieren"
|
168 |
|
169 |
+
#: gallery-plugin.php:565
|
170 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
172 |
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Fotos anzeigen »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
msgid "Options saved."
|
179 |
msgstr "Einstellungen gespeichert."
|
180 |
|
181 |
+
#: gallery-plugin.php:690
|
182 |
msgid "Gallery Options"
|
183 |
msgstr "Galerie Einstellungen"
|
184 |
|
185 |
+
#: gallery-plugin.php:693
|
186 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: gallery-plugin.php:697
|
190 |
msgid "The size of the cover album for gallery"
|
191 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
192 |
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
msgid "Image size name"
|
196 |
msgstr "Name der Bilder"
|
197 |
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Width (in px)"
|
201 |
msgstr "Breite (in px)"
|
202 |
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
msgid "Height (in px)"
|
206 |
msgstr "Höhe (in px)"
|
207 |
|
208 |
+
#: gallery-plugin.php:705
|
209 |
msgid "Size for gallery image"
|
210 |
msgstr "Die Größe der Bilder in der Galerie"
|
211 |
|
212 |
+
#: gallery-plugin.php:713
|
213 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
215 |
|
216 |
+
#: gallery-plugin.php:716
|
217 |
msgid "Count images in row"
|
218 |
msgstr "Anzahl Bilder in der Reihe"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "Start slideshow"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:728
|
225 |
msgid "Slideshow interval"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
229 |
msgid "attachment id"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: gallery-plugin.php:737
|
233 |
msgid "attachment title"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:738
|
237 |
msgid "date"
|
238 |
msgstr "Datum"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: gallery-plugin.php:740
|
245 |
msgid "random"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: gallery-plugin.php:744
|
249 |
msgid "Attachments order"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: gallery-plugin.php:746
|
253 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: gallery-plugin.php:747
|
257 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: gallery-plugin.php:751
|
261 |
msgid "Display Return link"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: gallery-plugin.php:757
|
265 |
msgid "Display Return link in shortcode"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: gallery-plugin.php:763
|
269 |
msgid "Label for Return link"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Einstellungen speichern"
|
279 |
|
280 |
+
#: gallery-plugin.php:790
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
+
#: gallery-plugin.php:791
|
285 |
msgid "Support"
|
286 |
msgstr "Support"
|
287 |
|
288 |
+
#: gallery-plugin.php:953
|
289 |
#: template/gallery-single-template.php:60
|
290 |
msgid "Sorry - nothing to found."
|
291 |
msgstr "Leider nichts gefunden."
|
294 |
msgid "Image "
|
295 |
msgstr ""
|
296 |
|
|
|
|
|
|
|
|
|
297 |
#~ msgid "Size for gallery album cover"
|
298 |
#~ msgstr "Размер для "
|
299 |
|
languages/gallery-es.mo
CHANGED
Binary file
|
languages/gallery-es.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
@@ -82,183 +82,212 @@ msgstr "Escoger una imagen para subir:"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Plugins Activados"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Leer más"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nombre del tamaño de la imagen"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Ancho (en px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Alto (en px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
msgid "Attachments order by"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
msgid "date"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "random"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Attachments order"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "Display Return link"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Display Return link in shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid "Label for Return link"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar Cambios"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ "
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Support"
|
259 |
msgstr "Soporte"
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#: template/gallery-single-template.php:60
|
263 |
msgid "Sorry - nothing to found."
|
264 |
msgstr "Lo sentimos - nada que encontrar."
|
@@ -267,10 +296,6 @@ msgstr "Lo sentimos - nada que encontrar."
|
|
267 |
msgid "Image "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: template/gallery-template.php:69
|
271 |
-
msgid "See photo »"
|
272 |
-
msgstr "Ver foto »"
|
273 |
-
|
274 |
#~ msgid "Size for gallery album cover"
|
275 |
#~ msgstr "Размер для "
|
276 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:56+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
24 |
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
84 |
|
85 |
+
#: gallery-plugin.php:175
|
86 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: gallery-plugin.php:177
|
90 |
+
msgid "Please do not forget to select "
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: gallery-plugin.php:177
|
94 |
+
#: gallery-plugin.php:734
|
95 |
+
msgid "Attachments order by"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: gallery-plugin.php:177
|
99 |
+
msgid "attachments order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: gallery-plugin.php:177
|
103 |
+
msgid "in the settings of the plugin (page "
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: gallery-plugin.php:239
|
107 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:241
|
111 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: gallery-plugin.php:394
|
115 |
msgid "Title"
|
116 |
msgstr "Título"
|
117 |
|
118 |
+
#: gallery-plugin.php:395
|
119 |
msgid "Author"
|
120 |
msgstr "Autor"
|
121 |
|
122 |
+
#: gallery-plugin.php:396
|
123 |
msgid "Photo's"
|
124 |
msgstr "Foto de"
|
125 |
|
126 |
+
#: gallery-plugin.php:397
|
127 |
msgid "Public"
|
128 |
msgstr "Pública"
|
129 |
|
130 |
+
#: gallery-plugin.php:398
|
131 |
msgid "Date"
|
132 |
msgstr "Fecha"
|
133 |
|
134 |
+
#: gallery-plugin.php:545
|
135 |
msgid "Activated plugins"
|
136 |
msgstr "Plugins Activados"
|
137 |
|
138 |
+
#: gallery-plugin.php:547
|
139 |
+
#: gallery-plugin.php:555
|
140 |
+
#: gallery-plugin.php:563
|
141 |
msgid "Read more"
|
142 |
msgstr "Leer más"
|
143 |
|
144 |
+
#: gallery-plugin.php:547
|
145 |
+
#: gallery-plugin.php:789
|
146 |
+
#: gallery-plugin.php:804
|
147 |
msgid "Settings"
|
148 |
msgstr "Configuración"
|
149 |
|
150 |
+
#: gallery-plugin.php:553
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Plugins instalados"
|
153 |
|
154 |
+
#: gallery-plugin.php:561
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "Plugins recomendados"
|
157 |
|
158 |
+
#: gallery-plugin.php:563
|
159 |
msgid "Download"
|
160 |
msgstr "Descargar"
|
161 |
|
162 |
+
#: gallery-plugin.php:563
|
163 |
#, php-format
|
164 |
msgid "Install %s"
|
165 |
msgstr "Instalar %s"
|
166 |
|
167 |
+
#: gallery-plugin.php:563
|
168 |
msgid "Install now from wordpress.org"
|
169 |
msgstr "Instalar ahora desde wordpress.org"
|
170 |
|
171 |
+
#: gallery-plugin.php:565
|
172 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
173 |
msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
|
174 |
|
175 |
+
#: gallery-plugin.php:597
|
176 |
+
msgid "See photo »"
|
177 |
+
msgstr "Ver foto »"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676
|
180 |
msgid "Options saved."
|
181 |
msgstr "Opciones guardadas."
|
182 |
|
183 |
+
#: gallery-plugin.php:690
|
184 |
msgid "Gallery Options"
|
185 |
msgstr "Opciones de Galería"
|
186 |
|
187 |
+
#: gallery-plugin.php:693
|
188 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:697
|
192 |
msgid "The size of the cover album for gallery"
|
193 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
194 |
|
195 |
+
#: gallery-plugin.php:699
|
196 |
+
#: gallery-plugin.php:707
|
197 |
msgid "Image size name"
|
198 |
msgstr "Nombre del tamaño de la imagen"
|
199 |
|
200 |
+
#: gallery-plugin.php:700
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Width (in px)"
|
203 |
msgstr "Ancho (en px)"
|
204 |
|
205 |
+
#: gallery-plugin.php:701
|
206 |
+
#: gallery-plugin.php:709
|
207 |
msgid "Height (in px)"
|
208 |
msgstr "Alto (en px)"
|
209 |
|
210 |
+
#: gallery-plugin.php:705
|
211 |
msgid "Size for gallery image"
|
212 |
msgstr "Tamaño de la galería de imágenes"
|
213 |
|
214 |
+
#: gallery-plugin.php:713
|
215 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
216 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
217 |
|
218 |
+
#: gallery-plugin.php:716
|
219 |
msgid "Count images in row"
|
220 |
msgstr "Contar las imágenes en la fila"
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "Start slideshow"
|
224 |
msgstr "Comenzar presentación diapositivas"
|
225 |
|
226 |
+
#: gallery-plugin.php:728
|
227 |
msgid "Slideshow interval"
|
228 |
msgstr "Intervalo de presentación diapositivas"
|
229 |
|
230 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
231 |
msgid "attachment id"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:737
|
235 |
msgid "attachment title"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:738
|
239 |
msgid "date"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:739
|
243 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:740
|
247 |
msgid "random"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:744
|
251 |
msgid "Attachments order"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: gallery-plugin.php:746
|
255 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: gallery-plugin.php:747
|
259 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: gallery-plugin.php:751
|
263 |
msgid "Display Return link"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: gallery-plugin.php:757
|
267 |
msgid "Display Return link in shortcode"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: gallery-plugin.php:763
|
271 |
msgid "Label for Return link"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: gallery-plugin.php:769
|
275 |
+
msgid "Label for Read More link"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: gallery-plugin.php:777
|
279 |
msgid "Save Changes"
|
280 |
msgstr "Guardar Cambios"
|
281 |
|
282 |
+
#: gallery-plugin.php:790
|
283 |
msgid "FAQ"
|
284 |
msgstr "FAQ "
|
285 |
|
286 |
+
#: gallery-plugin.php:791
|
287 |
msgid "Support"
|
288 |
msgstr "Soporte"
|
289 |
|
290 |
+
#: gallery-plugin.php:953
|
291 |
#: template/gallery-single-template.php:60
|
292 |
msgid "Sorry - nothing to found."
|
293 |
msgstr "Lo sentimos - nada que encontrar."
|
296 |
msgid "Image "
|
297 |
msgstr ""
|
298 |
|
|
|
|
|
|
|
|
|
299 |
#~ msgid "Size for gallery album cover"
|
300 |
#~ msgstr "Размер для "
|
301 |
|
languages/gallery-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: gallery-plugin.php:55
|
22 |
-
#: gallery-plugin.php:
|
23 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
24 |
msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
25 |
|
@@ -29,7 +29,7 @@ msgid "Galleries"
|
|
29 |
msgstr "Galeries"
|
30 |
|
31 |
#: gallery-plugin.php:80
|
32 |
-
#: gallery-plugin.php:
|
33 |
msgid "Gallery"
|
34 |
msgstr "Galerie"
|
35 |
|
@@ -81,183 +81,212 @@ msgstr "Choisir l'image à envoyer :"
|
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
83 |
|
84 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
86 |
msgstr "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code court dans le contenu"
|
87 |
|
88 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
89 |
msgid "Title"
|
90 |
msgstr "Titre"
|
91 |
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Author"
|
94 |
msgstr "Auteur"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Photo's"
|
98 |
msgstr "Photo's"
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Public"
|
102 |
msgstr "Public"
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Date"
|
106 |
msgstr "Date"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
msgid "Activated plugins"
|
110 |
msgstr "Extensions activées"
|
111 |
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Read more"
|
116 |
msgstr "Lire plus..."
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Settings"
|
122 |
msgstr "Paramètres"
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Extensions installées"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Extensions recommandées"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Télécharger"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Installation %s"
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid "Install now from wordpress.org"
|
143 |
msgstr "Installation à partir de wordpress.org"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
147 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
150 |
msgid "Options saved."
|
151 |
msgstr "Options sauvegardées."
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Options de galerie"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
159 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "The size of the cover album for gallery"
|
163 |
msgstr "Taille de la vignette de l'album"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Image size name"
|
168 |
msgstr "Nom de la vignette"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Width (in px)"
|
173 |
msgstr "Largeur (en pixels)"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "Height (in px)"
|
178 |
msgstr "Hauteur (en pixels)"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Size for gallery image"
|
182 |
msgstr "Taille de la vignette de la galerie"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Count images in row"
|
190 |
msgstr "Nombre d'images par ligne"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Start slideshow"
|
194 |
msgstr "Démarer le diaporama"
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Slideshow interval"
|
198 |
msgstr "Interval de transition pour le diaporama"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
-
msgid "Attachments order by"
|
202 |
-
msgstr "Fichiers trier par"
|
203 |
-
|
204 |
-
#: gallery-plugin.php:718
|
205 |
msgid "attachment id"
|
206 |
msgstr "id du fichier"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachment title"
|
210 |
msgstr "titre du fichier"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "date"
|
214 |
msgstr "date"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
218 |
msgstr "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "random"
|
222 |
msgstr "aléatoire"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "Attachments order"
|
226 |
msgstr "Ordre des fichiers"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
230 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
234 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Display Return link"
|
238 |
msgstr "Afficher le lien de retour"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Display Return link in shortcode"
|
242 |
msgstr "Afficher le lien de retour dans le code court"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "Label for Return link"
|
246 |
msgstr "Texte du lien de retour"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Sauvegarder"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Support"
|
258 |
msgstr "Soutien"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Désolé, rien de trouvé"
|
@@ -266,7 +295,3 @@ msgstr "Désolé, rien de trouvé"
|
|
266 |
msgid "Image "
|
267 |
msgstr "Image "
|
268 |
|
269 |
-
#: template/gallery-template.php:69
|
270 |
-
msgid "See photo »"
|
271 |
-
msgstr "Voir la photo »"
|
272 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: gallery-plugin.php:55
|
22 |
+
#: gallery-plugin.php:683
|
23 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
24 |
msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
25 |
|
29 |
msgstr "Galeries"
|
30 |
|
31 |
#: gallery-plugin.php:80
|
32 |
+
#: gallery-plugin.php:576
|
33 |
msgid "Gallery"
|
34 |
msgstr "Galerie"
|
35 |
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
83 |
|
84 |
+
#: gallery-plugin.php:175
|
85 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: gallery-plugin.php:177
|
89 |
+
msgid "Please do not forget to select "
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: gallery-plugin.php:177
|
93 |
+
#: gallery-plugin.php:734
|
94 |
+
msgid "Attachments order by"
|
95 |
+
msgstr "Fichiers trier par"
|
96 |
+
|
97 |
+
#: gallery-plugin.php:177
|
98 |
+
msgid "attachments order"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: gallery-plugin.php:177
|
102 |
+
msgid "in the settings of the plugin (page "
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: gallery-plugin.php:239
|
106 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
107 |
msgstr "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code court dans le contenu"
|
108 |
|
109 |
+
#: gallery-plugin.php:241
|
110 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: gallery-plugin.php:394
|
114 |
msgid "Title"
|
115 |
msgstr "Titre"
|
116 |
|
117 |
+
#: gallery-plugin.php:395
|
118 |
msgid "Author"
|
119 |
msgstr "Auteur"
|
120 |
|
121 |
+
#: gallery-plugin.php:396
|
122 |
msgid "Photo's"
|
123 |
msgstr "Photo's"
|
124 |
|
125 |
+
#: gallery-plugin.php:397
|
126 |
msgid "Public"
|
127 |
msgstr "Public"
|
128 |
|
129 |
+
#: gallery-plugin.php:398
|
130 |
msgid "Date"
|
131 |
msgstr "Date"
|
132 |
|
133 |
+
#: gallery-plugin.php:545
|
134 |
msgid "Activated plugins"
|
135 |
msgstr "Extensions activées"
|
136 |
|
137 |
+
#: gallery-plugin.php:547
|
138 |
+
#: gallery-plugin.php:555
|
139 |
+
#: gallery-plugin.php:563
|
140 |
msgid "Read more"
|
141 |
msgstr "Lire plus..."
|
142 |
|
143 |
+
#: gallery-plugin.php:547
|
144 |
+
#: gallery-plugin.php:789
|
145 |
+
#: gallery-plugin.php:804
|
146 |
msgid "Settings"
|
147 |
msgstr "Paramètres"
|
148 |
|
149 |
+
#: gallery-plugin.php:553
|
150 |
msgid "Installed plugins"
|
151 |
msgstr "Extensions installées"
|
152 |
|
153 |
+
#: gallery-plugin.php:561
|
154 |
msgid "Recommended plugins"
|
155 |
msgstr "Extensions recommandées"
|
156 |
|
157 |
+
#: gallery-plugin.php:563
|
158 |
msgid "Download"
|
159 |
msgstr "Télécharger"
|
160 |
|
161 |
+
#: gallery-plugin.php:563
|
162 |
#, php-format
|
163 |
msgid "Install %s"
|
164 |
msgstr "Installation %s"
|
165 |
|
166 |
+
#: gallery-plugin.php:563
|
167 |
msgid "Install now from wordpress.org"
|
168 |
msgstr "Installation à partir de wordpress.org"
|
169 |
|
170 |
+
#: gallery-plugin.php:565
|
171 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
172 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
173 |
|
174 |
+
#: gallery-plugin.php:597
|
175 |
+
msgid "See photo »"
|
176 |
+
msgstr "Voir la photo »"
|
177 |
+
|
178 |
+
#: gallery-plugin.php:676
|
179 |
msgid "Options saved."
|
180 |
msgstr "Options sauvegardées."
|
181 |
|
182 |
+
#: gallery-plugin.php:690
|
183 |
msgid "Gallery Options"
|
184 |
msgstr "Options de galerie"
|
185 |
|
186 |
+
#: gallery-plugin.php:693
|
187 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
188 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
189 |
|
190 |
+
#: gallery-plugin.php:697
|
191 |
msgid "The size of the cover album for gallery"
|
192 |
msgstr "Taille de la vignette de l'album"
|
193 |
|
194 |
+
#: gallery-plugin.php:699
|
195 |
+
#: gallery-plugin.php:707
|
196 |
msgid "Image size name"
|
197 |
msgstr "Nom de la vignette"
|
198 |
|
199 |
+
#: gallery-plugin.php:700
|
200 |
+
#: gallery-plugin.php:708
|
201 |
msgid "Width (in px)"
|
202 |
msgstr "Largeur (en pixels)"
|
203 |
|
204 |
+
#: gallery-plugin.php:701
|
205 |
+
#: gallery-plugin.php:709
|
206 |
msgid "Height (in px)"
|
207 |
msgstr "Hauteur (en pixels)"
|
208 |
|
209 |
+
#: gallery-plugin.php:705
|
210 |
msgid "Size for gallery image"
|
211 |
msgstr "Taille de la vignette de la galerie"
|
212 |
|
213 |
+
#: gallery-plugin.php:713
|
214 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
215 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
216 |
|
217 |
+
#: gallery-plugin.php:716
|
218 |
msgid "Count images in row"
|
219 |
msgstr "Nombre d'images par ligne"
|
220 |
|
221 |
+
#: gallery-plugin.php:722
|
222 |
msgid "Start slideshow"
|
223 |
msgstr "Démarer le diaporama"
|
224 |
|
225 |
+
#: gallery-plugin.php:728
|
226 |
msgid "Slideshow interval"
|
227 |
msgstr "Interval de transition pour le diaporama"
|
228 |
|
229 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
230 |
msgid "attachment id"
|
231 |
msgstr "id du fichier"
|
232 |
|
233 |
+
#: gallery-plugin.php:737
|
234 |
msgid "attachment title"
|
235 |
msgstr "titre du fichier"
|
236 |
|
237 |
+
#: gallery-plugin.php:738
|
238 |
msgid "date"
|
239 |
msgstr "date"
|
240 |
|
241 |
+
#: gallery-plugin.php:739
|
242 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
243 |
msgstr "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
244 |
|
245 |
+
#: gallery-plugin.php:740
|
246 |
msgid "random"
|
247 |
msgstr "aléatoire"
|
248 |
|
249 |
+
#: gallery-plugin.php:744
|
250 |
msgid "Attachments order"
|
251 |
msgstr "Ordre des fichiers"
|
252 |
|
253 |
+
#: gallery-plugin.php:746
|
254 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
255 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
256 |
|
257 |
+
#: gallery-plugin.php:747
|
258 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
259 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
260 |
|
261 |
+
#: gallery-plugin.php:751
|
262 |
msgid "Display Return link"
|
263 |
msgstr "Afficher le lien de retour"
|
264 |
|
265 |
+
#: gallery-plugin.php:757
|
266 |
msgid "Display Return link in shortcode"
|
267 |
msgstr "Afficher le lien de retour dans le code court"
|
268 |
|
269 |
+
#: gallery-plugin.php:763
|
270 |
msgid "Label for Return link"
|
271 |
msgstr "Texte du lien de retour"
|
272 |
|
273 |
+
#: gallery-plugin.php:769
|
274 |
+
msgid "Label for Read More link"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: gallery-plugin.php:777
|
278 |
msgid "Save Changes"
|
279 |
msgstr "Sauvegarder"
|
280 |
|
281 |
+
#: gallery-plugin.php:790
|
282 |
msgid "FAQ"
|
283 |
msgstr "FAQ"
|
284 |
|
285 |
+
#: gallery-plugin.php:791
|
286 |
msgid "Support"
|
287 |
msgstr "Soutien"
|
288 |
|
289 |
+
#: gallery-plugin.php:953
|
290 |
#: template/gallery-single-template.php:60
|
291 |
msgid "Sorry - nothing to found."
|
292 |
msgstr "Désolé, rien de trouvé"
|
295 |
msgid "Image "
|
296 |
msgstr "Image "
|
297 |
|
|
|
|
|
|
|
|
languages/gallery-he_IL.mo
CHANGED
Binary file
|
languages/gallery-he_IL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
|
22 |
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
|
27 |
|
@@ -33,7 +33,7 @@ msgstr "גלריות"
|
|
33 |
|
34 |
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
-
#: gallery-plugin.php:
|
37 |
msgid "Gallery"
|
38 |
msgstr "גלריה"
|
39 |
|
@@ -97,226 +97,258 @@ msgstr "בחר תמונה להעלאה:"
|
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
# @ gallery
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
103 |
msgstr "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד בתוכן"
|
104 |
|
|
|
|
|
|
|
|
|
105 |
# @ gallery
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "Title"
|
108 |
msgstr "כותרת"
|
109 |
|
110 |
# @ gallery
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Author"
|
113 |
msgstr "מחבר"
|
114 |
|
115 |
# @ gallery
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "Photo's"
|
118 |
msgstr "של התמונה"
|
119 |
|
120 |
# @ gallery
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Public"
|
123 |
msgstr "ציבורי"
|
124 |
|
125 |
# @ gallery
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Date"
|
128 |
msgstr "תאריך"
|
129 |
|
130 |
# @ gallery
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Activated plugins"
|
133 |
msgstr "תוספים פעילים"
|
134 |
|
135 |
# @ gallery
|
136 |
-
#: gallery-plugin.php:
|
137 |
-
#: gallery-plugin.php:
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "Read more"
|
140 |
msgstr "קרא עוד"
|
141 |
|
142 |
# @ gallery
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Settings"
|
147 |
msgstr "הגדרות"
|
148 |
|
149 |
# @ gallery
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "תוספים מותקנים"
|
153 |
|
154 |
# @ gallery
|
155 |
-
#: gallery-plugin.php:
|
156 |
msgid "Recommended plugins"
|
157 |
msgstr "תוספים מומלצים"
|
158 |
|
159 |
# @ gallery
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Download"
|
162 |
msgstr "הורד"
|
163 |
|
164 |
# @ default
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, php-format
|
167 |
msgid "Install %s"
|
168 |
msgstr "התקן %s"
|
169 |
|
170 |
# @ gallery
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Install now from wordpress.org"
|
173 |
msgstr "הורד כעת מ wordpress.org"
|
174 |
|
175 |
# @ gallery
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
178 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
179 |
|
180 |
# @ gallery
|
181 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "Options saved."
|
183 |
msgstr "האפשרויות נשמרו."
|
184 |
|
185 |
# @ gallery
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Gallery Options"
|
188 |
msgstr "אפשרויות גלריה"
|
189 |
|
190 |
# @ gallery
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
193 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
194 |
|
195 |
# @ gallery
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "The size of the cover album for gallery"
|
198 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
199 |
|
200 |
# @ gallery
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "Image size name"
|
204 |
msgstr "שם גודל תמונה"
|
205 |
|
206 |
# @ gallery
|
207 |
-
#: gallery-plugin.php:
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Width (in px)"
|
210 |
msgstr "רוחב (בפיקסלים)"
|
211 |
|
212 |
# @ gallery
|
213 |
-
#: gallery-plugin.php:
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Height (in px)"
|
216 |
msgstr "גובה (בפיקסלים)"
|
217 |
|
218 |
# @ gallery
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Size for gallery image"
|
221 |
msgstr "גודל תמונת גלריה"
|
222 |
|
223 |
# @ gallery
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
226 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
227 |
|
228 |
# @ gallery
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Count images in row"
|
231 |
msgstr "מספר תמונות בשורה"
|
232 |
|
233 |
# @ gallery
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "Start slideshow"
|
236 |
msgstr "התחל מצגת"
|
237 |
|
238 |
# @ gallery
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Slideshow interval"
|
241 |
msgstr "מרווח מצגת"
|
242 |
|
243 |
# @ gallery
|
244 |
-
#: gallery-plugin.php:
|
245 |
-
msgid "Attachments order by"
|
246 |
-
msgstr "סדר הקבצים המצורפים"
|
247 |
-
|
248 |
-
# @ gallery
|
249 |
-
#: gallery-plugin.php:718
|
250 |
msgid "attachment id"
|
251 |
msgstr "מזהה קובץ מצורף"
|
252 |
|
253 |
# @ gallery
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "attachment title"
|
256 |
msgstr "כותרת קובץ מצורף"
|
257 |
|
258 |
# @ gallery
|
259 |
-
#: gallery-plugin.php:
|
260 |
msgid "date"
|
261 |
msgstr "תאריך"
|
262 |
|
263 |
# @ gallery
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
266 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
267 |
|
268 |
# @ gallery
|
269 |
-
#: gallery-plugin.php:
|
270 |
msgid "random"
|
271 |
msgstr "אקראי"
|
272 |
|
273 |
# @ gallery
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Attachments order"
|
276 |
msgstr "סדר קבצים מצורפים"
|
277 |
|
278 |
# @ gallery
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
281 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
282 |
|
283 |
# @ gallery
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
286 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
287 |
|
288 |
# @ gallery
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Display Return link"
|
291 |
msgstr "הצג קישור חזרה"
|
292 |
|
293 |
# @ gallery
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Display Return link in shortcode"
|
296 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
297 |
|
298 |
# @ gallery
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Label for Return link"
|
301 |
msgstr "תוית לקישור חזרה"
|
302 |
|
|
|
|
|
|
|
|
|
|
|
303 |
# @ default
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Save Changes"
|
306 |
msgstr "שמור שינויים"
|
307 |
|
308 |
# @ gallery
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "FAQ"
|
311 |
msgstr "שאלות ותשובות"
|
312 |
|
313 |
# @ gallery
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Support"
|
316 |
msgstr "תמיכה"
|
317 |
|
318 |
# @ gallery
|
319 |
-
#: gallery-plugin.php:
|
320 |
#: template/gallery-single-template.php:60
|
321 |
msgid "Sorry - nothing to found."
|
322 |
msgstr "מצטערים, אין מה למצוא."
|
@@ -326,8 +358,3 @@ msgstr "מצטערים, אין מה למצוא."
|
|
326 |
msgid "Image "
|
327 |
msgstr "תמונה "
|
328 |
|
329 |
-
# @ gallery
|
330 |
-
#: template/gallery-template.php:69
|
331 |
-
msgid "See photo »"
|
332 |
-
msgstr "ראו תמונה »"
|
333 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
21 |
|
22 |
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
+
#: gallery-plugin.php:683
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
|
27 |
|
33 |
|
34 |
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
+
#: gallery-plugin.php:576
|
37 |
msgid "Gallery"
|
38 |
msgstr "גלריה"
|
39 |
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
|
99 |
|
100 |
+
#: gallery-plugin.php:175
|
101 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:177
|
105 |
+
msgid "Please do not forget to select "
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
# @ gallery
|
109 |
+
#: gallery-plugin.php:177
|
110 |
+
#: gallery-plugin.php:734
|
111 |
+
msgid "Attachments order by"
|
112 |
+
msgstr "סדר הקבצים המצורפים"
|
113 |
+
|
114 |
+
# @ gallery
|
115 |
+
#: gallery-plugin.php:177
|
116 |
+
msgid "attachments order"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: gallery-plugin.php:177
|
120 |
+
msgid "in the settings of the plugin (page "
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
# @ gallery
|
124 |
+
#: gallery-plugin.php:239
|
125 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
126 |
msgstr "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד בתוכן"
|
127 |
|
128 |
+
#: gallery-plugin.php:241
|
129 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
# @ gallery
|
133 |
+
#: gallery-plugin.php:394
|
134 |
msgid "Title"
|
135 |
msgstr "כותרת"
|
136 |
|
137 |
# @ gallery
|
138 |
+
#: gallery-plugin.php:395
|
139 |
msgid "Author"
|
140 |
msgstr "מחבר"
|
141 |
|
142 |
# @ gallery
|
143 |
+
#: gallery-plugin.php:396
|
144 |
msgid "Photo's"
|
145 |
msgstr "של התמונה"
|
146 |
|
147 |
# @ gallery
|
148 |
+
#: gallery-plugin.php:397
|
149 |
msgid "Public"
|
150 |
msgstr "ציבורי"
|
151 |
|
152 |
# @ gallery
|
153 |
+
#: gallery-plugin.php:398
|
154 |
msgid "Date"
|
155 |
msgstr "תאריך"
|
156 |
|
157 |
# @ gallery
|
158 |
+
#: gallery-plugin.php:545
|
159 |
msgid "Activated plugins"
|
160 |
msgstr "תוספים פעילים"
|
161 |
|
162 |
# @ gallery
|
163 |
+
#: gallery-plugin.php:547
|
164 |
+
#: gallery-plugin.php:555
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Read more"
|
167 |
msgstr "קרא עוד"
|
168 |
|
169 |
# @ gallery
|
170 |
+
#: gallery-plugin.php:547
|
171 |
+
#: gallery-plugin.php:789
|
172 |
+
#: gallery-plugin.php:804
|
173 |
msgid "Settings"
|
174 |
msgstr "הגדרות"
|
175 |
|
176 |
# @ gallery
|
177 |
+
#: gallery-plugin.php:553
|
178 |
msgid "Installed plugins"
|
179 |
msgstr "תוספים מותקנים"
|
180 |
|
181 |
# @ gallery
|
182 |
+
#: gallery-plugin.php:561
|
183 |
msgid "Recommended plugins"
|
184 |
msgstr "תוספים מומלצים"
|
185 |
|
186 |
# @ gallery
|
187 |
+
#: gallery-plugin.php:563
|
188 |
msgid "Download"
|
189 |
msgstr "הורד"
|
190 |
|
191 |
# @ default
|
192 |
+
#: gallery-plugin.php:563
|
193 |
#, php-format
|
194 |
msgid "Install %s"
|
195 |
msgstr "התקן %s"
|
196 |
|
197 |
# @ gallery
|
198 |
+
#: gallery-plugin.php:563
|
199 |
msgid "Install now from wordpress.org"
|
200 |
msgstr "הורד כעת מ wordpress.org"
|
201 |
|
202 |
# @ gallery
|
203 |
+
#: gallery-plugin.php:565
|
204 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
205 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
206 |
|
207 |
# @ gallery
|
208 |
+
#: gallery-plugin.php:597
|
209 |
+
msgid "See photo »"
|
210 |
+
msgstr "ראו תמונה »"
|
211 |
+
|
212 |
+
# @ gallery
|
213 |
+
#: gallery-plugin.php:676
|
214 |
msgid "Options saved."
|
215 |
msgstr "האפשרויות נשמרו."
|
216 |
|
217 |
# @ gallery
|
218 |
+
#: gallery-plugin.php:690
|
219 |
msgid "Gallery Options"
|
220 |
msgstr "אפשרויות גלריה"
|
221 |
|
222 |
# @ gallery
|
223 |
+
#: gallery-plugin.php:693
|
224 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
225 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
226 |
|
227 |
# @ gallery
|
228 |
+
#: gallery-plugin.php:697
|
229 |
msgid "The size of the cover album for gallery"
|
230 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
231 |
|
232 |
# @ gallery
|
233 |
+
#: gallery-plugin.php:699
|
234 |
+
#: gallery-plugin.php:707
|
235 |
msgid "Image size name"
|
236 |
msgstr "שם גודל תמונה"
|
237 |
|
238 |
# @ gallery
|
239 |
+
#: gallery-plugin.php:700
|
240 |
+
#: gallery-plugin.php:708
|
241 |
msgid "Width (in px)"
|
242 |
msgstr "רוחב (בפיקסלים)"
|
243 |
|
244 |
# @ gallery
|
245 |
+
#: gallery-plugin.php:701
|
246 |
+
#: gallery-plugin.php:709
|
247 |
msgid "Height (in px)"
|
248 |
msgstr "גובה (בפיקסלים)"
|
249 |
|
250 |
# @ gallery
|
251 |
+
#: gallery-plugin.php:705
|
252 |
msgid "Size for gallery image"
|
253 |
msgstr "גודל תמונת גלריה"
|
254 |
|
255 |
# @ gallery
|
256 |
+
#: gallery-plugin.php:713
|
257 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
258 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
259 |
|
260 |
# @ gallery
|
261 |
+
#: gallery-plugin.php:716
|
262 |
msgid "Count images in row"
|
263 |
msgstr "מספר תמונות בשורה"
|
264 |
|
265 |
# @ gallery
|
266 |
+
#: gallery-plugin.php:722
|
267 |
msgid "Start slideshow"
|
268 |
msgstr "התחל מצגת"
|
269 |
|
270 |
# @ gallery
|
271 |
+
#: gallery-plugin.php:728
|
272 |
msgid "Slideshow interval"
|
273 |
msgstr "מרווח מצגת"
|
274 |
|
275 |
# @ gallery
|
276 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
|
|
277 |
msgid "attachment id"
|
278 |
msgstr "מזהה קובץ מצורף"
|
279 |
|
280 |
# @ gallery
|
281 |
+
#: gallery-plugin.php:737
|
282 |
msgid "attachment title"
|
283 |
msgstr "כותרת קובץ מצורף"
|
284 |
|
285 |
# @ gallery
|
286 |
+
#: gallery-plugin.php:738
|
287 |
msgid "date"
|
288 |
msgstr "תאריך"
|
289 |
|
290 |
# @ gallery
|
291 |
+
#: gallery-plugin.php:739
|
292 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
293 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
294 |
|
295 |
# @ gallery
|
296 |
+
#: gallery-plugin.php:740
|
297 |
msgid "random"
|
298 |
msgstr "אקראי"
|
299 |
|
300 |
# @ gallery
|
301 |
+
#: gallery-plugin.php:744
|
302 |
msgid "Attachments order"
|
303 |
msgstr "סדר קבצים מצורפים"
|
304 |
|
305 |
# @ gallery
|
306 |
+
#: gallery-plugin.php:746
|
307 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
308 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
309 |
|
310 |
# @ gallery
|
311 |
+
#: gallery-plugin.php:747
|
312 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
313 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
314 |
|
315 |
# @ gallery
|
316 |
+
#: gallery-plugin.php:751
|
317 |
msgid "Display Return link"
|
318 |
msgstr "הצג קישור חזרה"
|
319 |
|
320 |
# @ gallery
|
321 |
+
#: gallery-plugin.php:757
|
322 |
msgid "Display Return link in shortcode"
|
323 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
324 |
|
325 |
# @ gallery
|
326 |
+
#: gallery-plugin.php:763
|
327 |
msgid "Label for Return link"
|
328 |
msgstr "תוית לקישור חזרה"
|
329 |
|
330 |
+
# @ gallery
|
331 |
+
#: gallery-plugin.php:769
|
332 |
+
msgid "Label for Read More link"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
# @ default
|
336 |
+
#: gallery-plugin.php:777
|
337 |
msgid "Save Changes"
|
338 |
msgstr "שמור שינויים"
|
339 |
|
340 |
# @ gallery
|
341 |
+
#: gallery-plugin.php:790
|
342 |
msgid "FAQ"
|
343 |
msgstr "שאלות ותשובות"
|
344 |
|
345 |
# @ gallery
|
346 |
+
#: gallery-plugin.php:791
|
347 |
msgid "Support"
|
348 |
msgstr "תמיכה"
|
349 |
|
350 |
# @ gallery
|
351 |
+
#: gallery-plugin.php:953
|
352 |
#: template/gallery-single-template.php:60
|
353 |
msgid "Sorry - nothing to found."
|
354 |
msgstr "מצטערים, אין מה למצוא."
|
358 |
msgid "Image "
|
359 |
msgstr "תמונה "
|
360 |
|
|
|
|
|
|
|
|
|
|
languages/gallery-hu_HU.mo
CHANGED
Binary file
|
languages/gallery-hu_HU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
@@ -82,184 +82,213 @@ msgstr "Nézőkép kiválasztása a feltöltéshez"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivált bővítmények"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Bővebben"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Az Album borítójának mérete a Galériában"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Kép méret neve"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szélesség (px-ben)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Magasság (px-ben)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
msgid "Attachments order by"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Dátum"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Változások mentése"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "Gy.I.K."
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Támogatás"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
@@ -268,10 +297,6 @@ msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
|
268 |
msgid "Image "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: template/gallery-template.php:69
|
272 |
-
msgid "See photo »"
|
273 |
-
msgstr "Fotó megtekintése »"
|
274 |
-
|
275 |
#~ msgid "Size for gallery album cover"
|
276 |
#~ msgstr "Размер для "
|
277 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
84 |
|
85 |
+
#: gallery-plugin.php:175
|
86 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: gallery-plugin.php:177
|
90 |
+
msgid "Please do not forget to select "
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: gallery-plugin.php:177
|
94 |
+
#: gallery-plugin.php:734
|
95 |
+
msgid "Attachments order by"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: gallery-plugin.php:177
|
99 |
+
msgid "attachments order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: gallery-plugin.php:177
|
103 |
+
msgid "in the settings of the plugin (page "
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: gallery-plugin.php:239
|
107 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:241
|
111 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: gallery-plugin.php:394
|
115 |
msgid "Title"
|
116 |
msgstr "Cím"
|
117 |
|
118 |
+
#: gallery-plugin.php:395
|
119 |
msgid "Author"
|
120 |
msgstr "Szerző"
|
121 |
|
122 |
+
#: gallery-plugin.php:396
|
123 |
msgid "Photo's"
|
124 |
msgstr "Fotók"
|
125 |
|
126 |
+
#: gallery-plugin.php:397
|
127 |
msgid "Public"
|
128 |
msgstr "Publikus"
|
129 |
|
130 |
+
#: gallery-plugin.php:398
|
131 |
msgid "Date"
|
132 |
msgstr "Dátum"
|
133 |
|
134 |
+
#: gallery-plugin.php:545
|
135 |
msgid "Activated plugins"
|
136 |
msgstr "Aktivált bővítmények"
|
137 |
|
138 |
+
#: gallery-plugin.php:547
|
139 |
+
#: gallery-plugin.php:555
|
140 |
+
#: gallery-plugin.php:563
|
141 |
msgid "Read more"
|
142 |
msgstr "Bővebben"
|
143 |
|
144 |
+
#: gallery-plugin.php:547
|
145 |
+
#: gallery-plugin.php:789
|
146 |
+
#: gallery-plugin.php:804
|
147 |
msgid "Settings"
|
148 |
msgstr "Beállítások"
|
149 |
|
150 |
+
#: gallery-plugin.php:553
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Telepített bővítmények"
|
153 |
|
154 |
+
#: gallery-plugin.php:561
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "Javasolt bővítmények"
|
157 |
|
158 |
+
#: gallery-plugin.php:563
|
159 |
msgid "Download"
|
160 |
msgstr "Letöltés"
|
161 |
|
162 |
+
#: gallery-plugin.php:563
|
163 |
#, php-format
|
164 |
msgid "Install %s"
|
165 |
msgstr "Telepítés %s"
|
166 |
|
167 |
+
#: gallery-plugin.php:563
|
168 |
msgid "Install now from wordpress.org"
|
169 |
msgstr "Telepítés a wordpress.org -ról"
|
170 |
|
171 |
+
#: gallery-plugin.php:565
|
172 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
173 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
174 |
|
175 |
+
#: gallery-plugin.php:597
|
176 |
+
msgid "See photo »"
|
177 |
+
msgstr "Fotó megtekintése »"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676
|
180 |
msgid "Options saved."
|
181 |
msgstr "Beállítások elmentve."
|
182 |
|
183 |
+
#: gallery-plugin.php:690
|
184 |
msgid "Gallery Options"
|
185 |
msgstr "Galéria beállítások"
|
186 |
|
187 |
+
#: gallery-plugin.php:693
|
188 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:697
|
192 |
msgid "The size of the cover album for gallery"
|
193 |
msgstr "Az Album borítójának mérete a Galériában"
|
194 |
|
195 |
+
#: gallery-plugin.php:699
|
196 |
+
#: gallery-plugin.php:707
|
197 |
msgid "Image size name"
|
198 |
msgstr "Kép méret neve"
|
199 |
|
200 |
+
#: gallery-plugin.php:700
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Width (in px)"
|
203 |
msgstr "Szélesség (px-ben)"
|
204 |
|
205 |
+
#: gallery-plugin.php:701
|
206 |
+
#: gallery-plugin.php:709
|
207 |
msgid "Height (in px)"
|
208 |
msgstr "Magasság (px-ben)"
|
209 |
|
210 |
+
#: gallery-plugin.php:705
|
211 |
msgid "Size for gallery image"
|
212 |
msgstr "A Galéria képeinek mérete"
|
213 |
|
214 |
+
#: gallery-plugin.php:713
|
215 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
216 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
217 |
|
218 |
+
#: gallery-plugin.php:716
|
219 |
msgid "Count images in row"
|
220 |
msgstr "Képek száma egy sorban"
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "Start slideshow"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:728
|
227 |
msgid "Slideshow interval"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
231 |
msgid "attachment id"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:737
|
235 |
msgid "attachment title"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:738
|
239 |
#, fuzzy
|
240 |
msgid "date"
|
241 |
msgstr "Dátum"
|
242 |
|
243 |
+
#: gallery-plugin.php:739
|
244 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:740
|
248 |
msgid "random"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:744
|
252 |
msgid "Attachments order"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: gallery-plugin.php:746
|
256 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: gallery-plugin.php:747
|
260 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: gallery-plugin.php:751
|
264 |
msgid "Display Return link"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: gallery-plugin.php:757
|
268 |
msgid "Display Return link in shortcode"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: gallery-plugin.php:763
|
272 |
msgid "Label for Return link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: gallery-plugin.php:769
|
276 |
+
msgid "Label for Read More link"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:777
|
280 |
msgid "Save Changes"
|
281 |
msgstr "Változások mentése"
|
282 |
|
283 |
+
#: gallery-plugin.php:790
|
284 |
msgid "FAQ"
|
285 |
msgstr "Gy.I.K."
|
286 |
|
287 |
+
#: gallery-plugin.php:791
|
288 |
msgid "Support"
|
289 |
msgstr "Támogatás"
|
290 |
|
291 |
+
#: gallery-plugin.php:953
|
292 |
#: template/gallery-single-template.php:60
|
293 |
msgid "Sorry - nothing to found."
|
294 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
297 |
msgid "Image "
|
298 |
msgstr ""
|
299 |
|
|
|
|
|
|
|
|
|
300 |
#~ msgid "Size for gallery album cover"
|
301 |
#~ msgstr "Размер для "
|
302 |
|
languages/gallery-it_IT.mo
CHANGED
Binary file
|
languages/gallery-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
@@ -80,183 +80,212 @@ msgstr "Sceli una immagine da caricare:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Per favore abilita JavaScript per usare il file uploader."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Puoi aggiungere una singola Galleria in una pagina o un post inserendo questo codice nel contenuto"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "Title"
|
89 |
msgstr "Titolo"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Autore"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Foto"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Pubblico"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Data"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Attivare plugin"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Leggi altro"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Impostazioni"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Plugin installati"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Plugin consigliati"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installа %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Installa ora da wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "Options saved."
|
150 |
msgstr "Opzioni salvate."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Opzioni gallerie"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Image size name"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Larghezza in px"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Altezza in px"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Grandezza per le immagini della galleria"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Conta immagini"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Avvia presentazione"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Intervallo presentazione"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
msgid "Attachments order by"
|
201 |
-
msgstr "Ordine di visualizzazione per"
|
202 |
-
|
203 |
-
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr "Id di visualizzazione"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr "Titolo immagine"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Data"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr "Casuale"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Ordine di visualizzazione"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Mostra lin di ritorno"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Mostra il link di ritorno col codice"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Etichetta per il link di ritorno"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Salva cambiamenti"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Supporto"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Spiacente - non è stato trovato nulla."
|
@@ -265,10 +294,6 @@ msgstr "Spiacente - non è stato trovato nulla."
|
|
265 |
msgid "Image "
|
266 |
msgstr "Immagine"
|
267 |
|
268 |
-
#: template/gallery-template.php:69
|
269 |
-
msgid "See photo »"
|
270 |
-
msgstr "Guarda foto »"
|
271 |
-
|
272 |
#~ msgid "Size for gallery album cover"
|
273 |
#~ msgstr "Размер для "
|
274 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
24 |
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Per favore abilita JavaScript per usare il file uploader."
|
82 |
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr "Ordine di visualizzazione per"
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
msgstr "Puoi aggiungere una singola Galleria in una pagina o un post inserendo questo codice nel contenuto"
|
107 |
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
msgid "Title"
|
114 |
msgstr "Titolo"
|
115 |
|
116 |
+
#: gallery-plugin.php:395
|
117 |
msgid "Author"
|
118 |
msgstr "Autore"
|
119 |
|
120 |
+
#: gallery-plugin.php:396
|
121 |
msgid "Photo's"
|
122 |
msgstr "Foto"
|
123 |
|
124 |
+
#: gallery-plugin.php:397
|
125 |
msgid "Public"
|
126 |
msgstr "Pubblico"
|
127 |
|
128 |
+
#: gallery-plugin.php:398
|
129 |
msgid "Date"
|
130 |
msgstr "Data"
|
131 |
|
132 |
+
#: gallery-plugin.php:545
|
133 |
msgid "Activated plugins"
|
134 |
msgstr "Attivare plugin"
|
135 |
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
msgid "Read more"
|
140 |
msgstr "Leggi altro"
|
141 |
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
msgid "Settings"
|
146 |
msgstr "Impostazioni"
|
147 |
|
148 |
+
#: gallery-plugin.php:553
|
149 |
msgid "Installed plugins"
|
150 |
msgstr "Plugin installati"
|
151 |
|
152 |
+
#: gallery-plugin.php:561
|
153 |
msgid "Recommended plugins"
|
154 |
msgstr "Plugin consigliati"
|
155 |
|
156 |
+
#: gallery-plugin.php:563
|
157 |
msgid "Download"
|
158 |
msgstr "Download"
|
159 |
|
160 |
+
#: gallery-plugin.php:563
|
161 |
#, php-format
|
162 |
msgid "Install %s"
|
163 |
msgstr "Installа %s"
|
164 |
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Install now from wordpress.org"
|
167 |
msgstr "Installa ora da wordpress.org"
|
168 |
|
169 |
+
#: gallery-plugin.php:565
|
170 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
172 |
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Guarda foto »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
msgid "Options saved."
|
179 |
msgstr "Opzioni salvate."
|
180 |
|
181 |
+
#: gallery-plugin.php:690
|
182 |
msgid "Gallery Options"
|
183 |
msgstr "Opzioni gallerie"
|
184 |
|
185 |
+
#: gallery-plugin.php:693
|
186 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
188 |
|
189 |
+
#: gallery-plugin.php:697
|
190 |
msgid "The size of the cover album for gallery"
|
191 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
192 |
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
msgid "Image size name"
|
196 |
msgstr "Image size name"
|
197 |
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Width (in px)"
|
201 |
msgstr "Larghezza in px"
|
202 |
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
msgid "Height (in px)"
|
206 |
msgstr "Altezza in px"
|
207 |
|
208 |
+
#: gallery-plugin.php:705
|
209 |
msgid "Size for gallery image"
|
210 |
msgstr "Grandezza per le immagini della galleria"
|
211 |
|
212 |
+
#: gallery-plugin.php:713
|
213 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
215 |
|
216 |
+
#: gallery-plugin.php:716
|
217 |
msgid "Count images in row"
|
218 |
msgstr "Conta immagini"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "Start slideshow"
|
222 |
msgstr "Avvia presentazione"
|
223 |
|
224 |
+
#: gallery-plugin.php:728
|
225 |
msgid "Slideshow interval"
|
226 |
msgstr "Intervallo presentazione"
|
227 |
|
228 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
229 |
msgid "attachment id"
|
230 |
msgstr "Id di visualizzazione"
|
231 |
|
232 |
+
#: gallery-plugin.php:737
|
233 |
msgid "attachment title"
|
234 |
msgstr "Titolo immagine"
|
235 |
|
236 |
+
#: gallery-plugin.php:738
|
237 |
msgid "date"
|
238 |
msgstr "Data"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
243 |
|
244 |
+
#: gallery-plugin.php:740
|
245 |
msgid "random"
|
246 |
msgstr "Casuale"
|
247 |
|
248 |
+
#: gallery-plugin.php:744
|
249 |
msgid "Attachments order"
|
250 |
msgstr "Ordine di visualizzazione"
|
251 |
|
252 |
+
#: gallery-plugin.php:746
|
253 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
255 |
|
256 |
+
#: gallery-plugin.php:747
|
257 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
259 |
|
260 |
+
#: gallery-plugin.php:751
|
261 |
msgid "Display Return link"
|
262 |
msgstr "Mostra lin di ritorno"
|
263 |
|
264 |
+
#: gallery-plugin.php:757
|
265 |
msgid "Display Return link in shortcode"
|
266 |
msgstr "Mostra il link di ritorno col codice"
|
267 |
|
268 |
+
#: gallery-plugin.php:763
|
269 |
msgid "Label for Return link"
|
270 |
msgstr "Etichetta per il link di ritorno"
|
271 |
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Salva cambiamenti"
|
279 |
|
280 |
+
#: gallery-plugin.php:790
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ "
|
283 |
|
284 |
+
#: gallery-plugin.php:791
|
285 |
msgid "Support"
|
286 |
msgstr "Supporto"
|
287 |
|
288 |
+
#: gallery-plugin.php:953
|
289 |
#: template/gallery-single-template.php:60
|
290 |
msgid "Sorry - nothing to found."
|
291 |
msgstr "Spiacente - non è stato trovato nulla."
|
294 |
msgid "Image "
|
295 |
msgstr "Immagine"
|
296 |
|
|
|
|
|
|
|
|
|
297 |
#~ msgid "Size for gallery album cover"
|
298 |
#~ msgstr "Размер для "
|
299 |
|
languages/gallery-ka_GE.mo
CHANGED
Binary file
|
languages/gallery-ka_GE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
@@ -82,184 +82,213 @@ msgstr "აირჩიეთ სურათი ასატვირთად:
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "გააქტიურებული დანამატები:"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "სრულად ნახვა"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "ზომის სახელი"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "სიგანე(პიქსელებში)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "სიმაღლე(პიქსელებში)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
msgid "Attachments order by"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "თარიღი"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
251 |
msgid "Save Changes"
|
252 |
msgstr "ცვლილებების შენახვა"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
@@ -268,10 +297,6 @@ msgstr "მაპატიეთ - არაფერია ნაპოვნ
|
|
268 |
msgid "Image "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: template/gallery-template.php:69
|
272 |
-
msgid "See photo »"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
#~ msgid "Size for gallery album cover"
|
276 |
#~ msgstr "Размер для "
|
277 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
+
#: gallery-plugin.php:175
|
86 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: gallery-plugin.php:177
|
90 |
+
msgid "Please do not forget to select "
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: gallery-plugin.php:177
|
94 |
+
#: gallery-plugin.php:734
|
95 |
+
msgid "Attachments order by"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: gallery-plugin.php:177
|
99 |
+
msgid "attachments order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: gallery-plugin.php:177
|
103 |
+
msgid "in the settings of the plugin (page "
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: gallery-plugin.php:239
|
107 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:241
|
111 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: gallery-plugin.php:394
|
115 |
msgid "Title"
|
116 |
msgstr "სათაური"
|
117 |
|
118 |
+
#: gallery-plugin.php:395
|
119 |
msgid "Author"
|
120 |
msgstr "ავტორი"
|
121 |
|
122 |
+
#: gallery-plugin.php:396
|
123 |
msgid "Photo's"
|
124 |
msgstr "ფოტო"
|
125 |
|
126 |
+
#: gallery-plugin.php:397
|
127 |
msgid "Public"
|
128 |
msgstr "საჯარო"
|
129 |
|
130 |
+
#: gallery-plugin.php:398
|
131 |
msgid "Date"
|
132 |
msgstr "თარიღი"
|
133 |
|
134 |
+
#: gallery-plugin.php:545
|
135 |
msgid "Activated plugins"
|
136 |
msgstr "გააქტიურებული დანამატები:"
|
137 |
|
138 |
+
#: gallery-plugin.php:547
|
139 |
+
#: gallery-plugin.php:555
|
140 |
+
#: gallery-plugin.php:563
|
141 |
msgid "Read more"
|
142 |
msgstr "სრულად ნახვა"
|
143 |
|
144 |
+
#: gallery-plugin.php:547
|
145 |
+
#: gallery-plugin.php:789
|
146 |
+
#: gallery-plugin.php:804
|
147 |
msgid "Settings"
|
148 |
msgstr "პარამეტრები"
|
149 |
|
150 |
+
#: gallery-plugin.php:553
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "დაყენებული დანამატები"
|
153 |
|
154 |
+
#: gallery-plugin.php:561
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "რეკომენდირებული დანამატები"
|
157 |
|
158 |
+
#: gallery-plugin.php:563
|
159 |
msgid "Download"
|
160 |
msgstr "გადმოტვირთვა"
|
161 |
|
162 |
+
#: gallery-plugin.php:563
|
163 |
#, php-format
|
164 |
msgid "Install %s"
|
165 |
msgstr "დაყენებულია %s"
|
166 |
|
167 |
+
#: gallery-plugin.php:563
|
168 |
msgid "Install now from wordpress.org"
|
169 |
msgstr "დააყენეთ wordpress.org-იდან"
|
170 |
|
171 |
+
#: gallery-plugin.php:565
|
172 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
173 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
174 |
|
175 |
+
#: gallery-plugin.php:597
|
176 |
+
msgid "See photo »"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676
|
180 |
msgid "Options saved."
|
181 |
msgstr "პარამეტრები შენახულია"
|
182 |
|
183 |
+
#: gallery-plugin.php:690
|
184 |
msgid "Gallery Options"
|
185 |
msgstr "გალერეის პარამეტრები"
|
186 |
|
187 |
+
#: gallery-plugin.php:693
|
188 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:697
|
192 |
msgid "The size of the cover album for gallery"
|
193 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
194 |
|
195 |
+
#: gallery-plugin.php:699
|
196 |
+
#: gallery-plugin.php:707
|
197 |
msgid "Image size name"
|
198 |
msgstr "ზომის სახელი"
|
199 |
|
200 |
+
#: gallery-plugin.php:700
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Width (in px)"
|
203 |
msgstr "სიგანე(პიქსელებში)"
|
204 |
|
205 |
+
#: gallery-plugin.php:701
|
206 |
+
#: gallery-plugin.php:709
|
207 |
msgid "Height (in px)"
|
208 |
msgstr "სიმაღლე(პიქსელებში)"
|
209 |
|
210 |
+
#: gallery-plugin.php:705
|
211 |
msgid "Size for gallery image"
|
212 |
msgstr "ზომა გალერეის სურათისთვის"
|
213 |
|
214 |
+
#: gallery-plugin.php:713
|
215 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
216 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
217 |
|
218 |
+
#: gallery-plugin.php:716
|
219 |
msgid "Count images in row"
|
220 |
msgstr "სურათების რაოდენობა მწკრივში"
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "Start slideshow"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:728
|
227 |
msgid "Slideshow interval"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
231 |
msgid "attachment id"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:737
|
235 |
msgid "attachment title"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:738
|
239 |
#, fuzzy
|
240 |
msgid "date"
|
241 |
msgstr "თარიღი"
|
242 |
|
243 |
+
#: gallery-plugin.php:739
|
244 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:740
|
248 |
msgid "random"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:744
|
252 |
msgid "Attachments order"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: gallery-plugin.php:746
|
256 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: gallery-plugin.php:747
|
260 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: gallery-plugin.php:751
|
264 |
msgid "Display Return link"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: gallery-plugin.php:757
|
268 |
msgid "Display Return link in shortcode"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: gallery-plugin.php:763
|
272 |
msgid "Label for Return link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: gallery-plugin.php:769
|
276 |
+
msgid "Label for Read More link"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:777
|
280 |
msgid "Save Changes"
|
281 |
msgstr "ცვლილებების შენახვა"
|
282 |
|
283 |
+
#: gallery-plugin.php:790
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ"
|
286 |
|
287 |
+
#: gallery-plugin.php:791
|
288 |
msgid "Support"
|
289 |
msgstr "Support"
|
290 |
|
291 |
+
#: gallery-plugin.php:953
|
292 |
#: template/gallery-single-template.php:60
|
293 |
msgid "Sorry - nothing to found."
|
294 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
297 |
msgid "Image "
|
298 |
msgstr ""
|
299 |
|
|
|
|
|
|
|
|
|
300 |
#~ msgid "Size for gallery album cover"
|
301 |
#~ msgstr "Размер для "
|
302 |
|
languages/gallery-lt_LT.mo
ADDED
Binary file
|
languages/gallery-lt_LT.po
ADDED
@@ -0,0 +1,299 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: gallery\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-Language: Lithuanian\n"
|
16 |
+
"X-Poedit-Country: LITHUANIA\n"
|
17 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
+
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
+
msgstr "Jūsų temos aplanke nėra failų \"gallery-template.php\" bei \"gallery-single-template.php\". Jei norite, kad galerijos įskiepis tinkamai veiktų, prašome nukopijuoti juos iš `/wp-content/plugins/gallery-plugin/template/` aplanko į savo temos aplanką."
|
24 |
+
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
+
msgid "Galleries"
|
28 |
+
msgstr "Galerijos"
|
29 |
+
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
+
msgid "Gallery"
|
33 |
+
msgstr "Galerija"
|
34 |
+
|
35 |
+
#: gallery-plugin.php:81
|
36 |
+
msgid "Add New"
|
37 |
+
msgstr "Pridėti naują"
|
38 |
+
|
39 |
+
#: gallery-plugin.php:82
|
40 |
+
msgid "Add New Gallery"
|
41 |
+
msgstr "Pridėti naują galeriją"
|
42 |
+
|
43 |
+
#: gallery-plugin.php:83
|
44 |
+
msgid "Edit Gallery"
|
45 |
+
msgstr "Redaguoti galeriją"
|
46 |
+
|
47 |
+
#: gallery-plugin.php:84
|
48 |
+
msgid "New Gallery"
|
49 |
+
msgstr "Nauja galerija"
|
50 |
+
|
51 |
+
#: gallery-plugin.php:85
|
52 |
+
msgid "View Gallery"
|
53 |
+
msgstr "Peržiūrėti galeriją"
|
54 |
+
|
55 |
+
#: gallery-plugin.php:86
|
56 |
+
msgid "Search Galleries"
|
57 |
+
msgstr "Ieškoti galerijose"
|
58 |
+
|
59 |
+
#: gallery-plugin.php:87
|
60 |
+
msgid "No Galleries found"
|
61 |
+
msgstr "Galerijų nėra"
|
62 |
+
|
63 |
+
#: gallery-plugin.php:144
|
64 |
+
msgid "Upload File"
|
65 |
+
msgstr "Įkelti failą"
|
66 |
+
|
67 |
+
#: gallery-plugin.php:145
|
68 |
+
msgid "Gallery Shortcode"
|
69 |
+
msgstr "Galerijos trumpasis kodas"
|
70 |
+
|
71 |
+
#: gallery-plugin.php:159
|
72 |
+
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
+
msgstr "Serveriui nesuteikta rašymo teisių į galerijos laikinąjį aplanką (gallery-plugin/upload/files). Prašome naudoti numatytąsias WordPress funkcijas paveikslėliams įkelti (failų galerija)"
|
74 |
+
|
75 |
+
#: gallery-plugin.php:163
|
76 |
+
msgid "Choose an image to upload:"
|
77 |
+
msgstr "Pasirinkite paveikslėlį įkėlimui:"
|
78 |
+
|
79 |
+
#: gallery-plugin.php:168
|
80 |
+
msgid "Please enable JavaScript to use the file uploader."
|
81 |
+
msgstr "Prašome įjungti JavaScript jei norite naudotis failų įkėlikliu."
|
82 |
+
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr "Prisegtukus rikiuoti pagal"
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
+
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
+
msgstr "Galite įterpti galeriją puslapyje ar įraše įterpdami šį trumpąjį kodą į turinį"
|
107 |
+
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
+
msgid "Title"
|
114 |
+
msgstr "Pavadinimas"
|
115 |
+
|
116 |
+
#: gallery-plugin.php:395
|
117 |
+
msgid "Author"
|
118 |
+
msgstr "Autorius"
|
119 |
+
|
120 |
+
#: gallery-plugin.php:396
|
121 |
+
msgid "Photo's"
|
122 |
+
msgstr "Nuotraukos"
|
123 |
+
|
124 |
+
#: gallery-plugin.php:397
|
125 |
+
msgid "Public"
|
126 |
+
msgstr "Vieša"
|
127 |
+
|
128 |
+
#: gallery-plugin.php:398
|
129 |
+
msgid "Date"
|
130 |
+
msgstr "Data"
|
131 |
+
|
132 |
+
#: gallery-plugin.php:545
|
133 |
+
msgid "Activated plugins"
|
134 |
+
msgstr "Įjungti įskiepiai"
|
135 |
+
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
+
msgid "Read more"
|
140 |
+
msgstr "Skaityti daugiau"
|
141 |
+
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
+
msgid "Settings"
|
146 |
+
msgstr "Nustatymai"
|
147 |
+
|
148 |
+
#: gallery-plugin.php:553
|
149 |
+
msgid "Installed plugins"
|
150 |
+
msgstr "Įdiegti įskiepiai"
|
151 |
+
|
152 |
+
#: gallery-plugin.php:561
|
153 |
+
msgid "Recommended plugins"
|
154 |
+
msgstr "Rekomenduojami įskiepiai"
|
155 |
+
|
156 |
+
#: gallery-plugin.php:563
|
157 |
+
msgid "Download"
|
158 |
+
msgstr "Atsisiųsti"
|
159 |
+
|
160 |
+
#: gallery-plugin.php:563
|
161 |
+
#, php-format
|
162 |
+
msgid "Install %s"
|
163 |
+
msgstr "Įdiegti %s"
|
164 |
+
|
165 |
+
#: gallery-plugin.php:563
|
166 |
+
msgid "Install now from wordpress.org"
|
167 |
+
msgstr "Įdiegti tiesiai iš wordpress.org"
|
168 |
+
|
169 |
+
#: gallery-plugin.php:565
|
170 |
+
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
+
msgstr "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, arba užpildykite susisiekimo formą mūsų tinklalapyje"
|
172 |
+
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Peržiūrėti nuotrauką »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
+
msgid "Options saved."
|
179 |
+
msgstr "Pasirinktys išsaugotos."
|
180 |
+
|
181 |
+
#: gallery-plugin.php:690
|
182 |
+
msgid "Gallery Options"
|
183 |
+
msgstr "Galerijų pasirinktys"
|
184 |
+
|
185 |
+
#: gallery-plugin.php:693
|
186 |
+
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
+
msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
|
188 |
+
|
189 |
+
#: gallery-plugin.php:697
|
190 |
+
msgid "The size of the cover album for gallery"
|
191 |
+
msgstr "Galerijos viršelio matmenys"
|
192 |
+
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
+
msgid "Image size name"
|
196 |
+
msgstr "Paveikslėlio matmenų klasės vardas"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
+
msgid "Width (in px)"
|
201 |
+
msgstr "Plotis (pikseliais)"
|
202 |
+
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
+
msgid "Height (in px)"
|
206 |
+
msgstr "Aukštis (pikseliais)"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:705
|
209 |
+
msgid "Size for gallery image"
|
210 |
+
msgstr "Galerijos paveikslėlio matmenys"
|
211 |
+
|
212 |
+
#: gallery-plugin.php:713
|
213 |
+
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
+
msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
|
215 |
+
|
216 |
+
#: gallery-plugin.php:716
|
217 |
+
msgid "Count images in row"
|
218 |
+
msgstr "Paveikslėlių eilėje kiekis"
|
219 |
+
|
220 |
+
#: gallery-plugin.php:722
|
221 |
+
msgid "Start slideshow"
|
222 |
+
msgstr "Pradėti demonstraciją"
|
223 |
+
|
224 |
+
#: gallery-plugin.php:728
|
225 |
+
msgid "Slideshow interval"
|
226 |
+
msgstr "Demonstracijos trukmė"
|
227 |
+
|
228 |
+
#: gallery-plugin.php:736
|
229 |
+
msgid "attachment id"
|
230 |
+
msgstr "prisegtuko ID"
|
231 |
+
|
232 |
+
#: gallery-plugin.php:737
|
233 |
+
msgid "attachment title"
|
234 |
+
msgstr "prisegtuko pavadinimą"
|
235 |
+
|
236 |
+
#: gallery-plugin.php:738
|
237 |
+
msgid "date"
|
238 |
+
msgstr "datą"
|
239 |
+
|
240 |
+
#: gallery-plugin.php:739
|
241 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
+
msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
|
243 |
+
|
244 |
+
#: gallery-plugin.php:740
|
245 |
+
msgid "random"
|
246 |
+
msgstr "atsitiktine tvarka"
|
247 |
+
|
248 |
+
#: gallery-plugin.php:744
|
249 |
+
msgid "Attachments order"
|
250 |
+
msgstr "Prisegtukų išdėstymas"
|
251 |
+
|
252 |
+
#: gallery-plugin.php:746
|
253 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
+
msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
|
255 |
+
|
256 |
+
#: gallery-plugin.php:747
|
257 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
+
msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
|
259 |
+
|
260 |
+
#: gallery-plugin.php:751
|
261 |
+
msgid "Display Return link"
|
262 |
+
msgstr "Rodyti Sugrįžimo nuorodą"
|
263 |
+
|
264 |
+
#: gallery-plugin.php:757
|
265 |
+
msgid "Display Return link in shortcode"
|
266 |
+
msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
|
267 |
+
|
268 |
+
#: gallery-plugin.php:763
|
269 |
+
msgid "Label for Return link"
|
270 |
+
msgstr "Sugrįžimo nuorodos tekstas"
|
271 |
+
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
+
msgid "Save Changes"
|
278 |
+
msgstr "Išsaugoti pakeitimus"
|
279 |
+
|
280 |
+
#: gallery-plugin.php:790
|
281 |
+
msgid "FAQ"
|
282 |
+
msgstr "D. U. K."
|
283 |
+
|
284 |
+
#: gallery-plugin.php:791
|
285 |
+
msgid "Support"
|
286 |
+
msgstr "Palaikymas"
|
287 |
+
|
288 |
+
#: gallery-plugin.php:953
|
289 |
+
#: template/gallery-single-template.php:60
|
290 |
+
msgid "Sorry - nothing to found."
|
291 |
+
msgstr "Deja, nieko nerasta."
|
292 |
+
|
293 |
+
#: template/gallery-single-template.php:82
|
294 |
+
msgid "Image "
|
295 |
+
msgstr "Paveikslėlis"
|
296 |
+
|
297 |
+
#~ msgid "Size for gallery album cover"
|
298 |
+
#~ msgstr "Размер для "
|
299 |
+
|
languages/gallery-nl_NL.mo
CHANGED
Binary file
|
languages/gallery-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
@@ -82,184 +82,213 @@ msgstr "Foto's uploaden: "
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Geactiveerde plugins"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Lees verder"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "De afmetingen voor de cover van het album"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Afbeelding grootte"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breedte (in px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hoogte (in px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
msgid "Attachments order by"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Bewaar veranderingen"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Helaas - niets gevonden"
|
@@ -268,7 +297,3 @@ msgstr "Helaas - niets gevonden"
|
|
268 |
msgid "Image "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: template/gallery-template.php:69
|
272 |
-
msgid "See photo »"
|
273 |
-
msgstr "Bekijk foto »"
|
274 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:57+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
84 |
|
85 |
+
#: gallery-plugin.php:175
|
86 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: gallery-plugin.php:177
|
90 |
+
msgid "Please do not forget to select "
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: gallery-plugin.php:177
|
94 |
+
#: gallery-plugin.php:734
|
95 |
+
msgid "Attachments order by"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: gallery-plugin.php:177
|
99 |
+
msgid "attachments order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: gallery-plugin.php:177
|
103 |
+
msgid "in the settings of the plugin (page "
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: gallery-plugin.php:239
|
107 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:241
|
111 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: gallery-plugin.php:394
|
115 |
msgid "Title"
|
116 |
msgstr "Titel"
|
117 |
|
118 |
+
#: gallery-plugin.php:395
|
119 |
msgid "Author"
|
120 |
msgstr "Auteur"
|
121 |
|
122 |
+
#: gallery-plugin.php:396
|
123 |
msgid "Photo's"
|
124 |
msgstr "Foto's"
|
125 |
|
126 |
+
#: gallery-plugin.php:397
|
127 |
msgid "Public"
|
128 |
msgstr "Gepubliceerd"
|
129 |
|
130 |
+
#: gallery-plugin.php:398
|
131 |
msgid "Date"
|
132 |
msgstr "Datum"
|
133 |
|
134 |
+
#: gallery-plugin.php:545
|
135 |
msgid "Activated plugins"
|
136 |
msgstr "Geactiveerde plugins"
|
137 |
|
138 |
+
#: gallery-plugin.php:547
|
139 |
+
#: gallery-plugin.php:555
|
140 |
+
#: gallery-plugin.php:563
|
141 |
msgid "Read more"
|
142 |
msgstr "Lees verder"
|
143 |
|
144 |
+
#: gallery-plugin.php:547
|
145 |
+
#: gallery-plugin.php:789
|
146 |
+
#: gallery-plugin.php:804
|
147 |
msgid "Settings"
|
148 |
msgstr "Instellingen"
|
149 |
|
150 |
+
#: gallery-plugin.php:553
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Geinstalleerde plugins"
|
153 |
|
154 |
+
#: gallery-plugin.php:561
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "Aanbevolen plugins"
|
157 |
|
158 |
+
#: gallery-plugin.php:563
|
159 |
msgid "Download"
|
160 |
msgstr "Download"
|
161 |
|
162 |
+
#: gallery-plugin.php:563
|
163 |
#, php-format
|
164 |
msgid "Install %s"
|
165 |
msgstr "Install %s"
|
166 |
|
167 |
+
#: gallery-plugin.php:563
|
168 |
msgid "Install now from wordpress.org"
|
169 |
msgstr "Installeer nu vanaf wordpress.org"
|
170 |
|
171 |
+
#: gallery-plugin.php:565
|
172 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
173 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
174 |
|
175 |
+
#: gallery-plugin.php:597
|
176 |
+
msgid "See photo »"
|
177 |
+
msgstr "Bekijk foto »"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676
|
180 |
msgid "Options saved."
|
181 |
msgstr "Opties opgeslagen"
|
182 |
|
183 |
+
#: gallery-plugin.php:690
|
184 |
msgid "Gallery Options"
|
185 |
msgstr "Fotoalbum opties"
|
186 |
|
187 |
+
#: gallery-plugin.php:693
|
188 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:697
|
192 |
msgid "The size of the cover album for gallery"
|
193 |
msgstr "De afmetingen voor de cover van het album"
|
194 |
|
195 |
+
#: gallery-plugin.php:699
|
196 |
+
#: gallery-plugin.php:707
|
197 |
msgid "Image size name"
|
198 |
msgstr "Afbeelding grootte"
|
199 |
|
200 |
+
#: gallery-plugin.php:700
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Width (in px)"
|
203 |
msgstr "Breedte (in px)"
|
204 |
|
205 |
+
#: gallery-plugin.php:701
|
206 |
+
#: gallery-plugin.php:709
|
207 |
msgid "Height (in px)"
|
208 |
msgstr "Hoogte (in px)"
|
209 |
|
210 |
+
#: gallery-plugin.php:705
|
211 |
msgid "Size for gallery image"
|
212 |
msgstr "Grootte voor album afbeelding"
|
213 |
|
214 |
+
#: gallery-plugin.php:713
|
215 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
216 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
217 |
|
218 |
+
#: gallery-plugin.php:716
|
219 |
msgid "Count images in row"
|
220 |
msgstr "Aantal afbeeldingen op een rij"
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "Start slideshow"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:728
|
227 |
msgid "Slideshow interval"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
231 |
msgid "attachment id"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:737
|
235 |
msgid "attachment title"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:738
|
239 |
#, fuzzy
|
240 |
msgid "date"
|
241 |
msgstr "Datum"
|
242 |
|
243 |
+
#: gallery-plugin.php:739
|
244 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:740
|
248 |
msgid "random"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:744
|
252 |
msgid "Attachments order"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: gallery-plugin.php:746
|
256 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: gallery-plugin.php:747
|
260 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: gallery-plugin.php:751
|
264 |
msgid "Display Return link"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: gallery-plugin.php:757
|
268 |
msgid "Display Return link in shortcode"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: gallery-plugin.php:763
|
272 |
msgid "Label for Return link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: gallery-plugin.php:769
|
276 |
+
msgid "Label for Read More link"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:777
|
280 |
msgid "Save Changes"
|
281 |
msgstr "Bewaar veranderingen"
|
282 |
|
283 |
+
#: gallery-plugin.php:790
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ"
|
286 |
|
287 |
+
#: gallery-plugin.php:791
|
288 |
msgid "Support"
|
289 |
msgstr "Support"
|
290 |
|
291 |
+
#: gallery-plugin.php:953
|
292 |
#: template/gallery-single-template.php:60
|
293 |
msgid "Sorry - nothing to found."
|
294 |
msgstr "Helaas - niets gevonden"
|
297 |
msgid "Image "
|
298 |
msgstr ""
|
299 |
|
|
|
|
|
|
|
|
languages/gallery-pl_PL.mo
CHANGED
Binary file
|
languages/gallery-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
@@ -82,184 +82,213 @@ msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktywny plugin"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Czytaj dalej"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozmiar okładki albumu"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nazwa rozmiaru obrazka"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szerokość (w px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Wysokość (w px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
msgid "Attachments order by"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Zapisz zmiany"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Wsparcie"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Przykro nam - nic nie znaleziono."
|
@@ -268,10 +297,6 @@ msgstr "Przykro nam - nic nie znaleziono."
|
|
268 |
msgid "Image "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: template/gallery-template.php:69
|
272 |
-
msgid "See photo »"
|
273 |
-
msgstr "Zobacz zdjęcia »"
|
274 |
-
|
275 |
#~ msgid "Size for gallery album cover"
|
276 |
#~ msgstr "Размер для "
|
277 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:58+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
84 |
|
85 |
+
#: gallery-plugin.php:175
|
86 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: gallery-plugin.php:177
|
90 |
+
msgid "Please do not forget to select "
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: gallery-plugin.php:177
|
94 |
+
#: gallery-plugin.php:734
|
95 |
+
msgid "Attachments order by"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: gallery-plugin.php:177
|
99 |
+
msgid "attachments order"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: gallery-plugin.php:177
|
103 |
+
msgid "in the settings of the plugin (page "
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: gallery-plugin.php:239
|
107 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: gallery-plugin.php:241
|
111 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: gallery-plugin.php:394
|
115 |
msgid "Title"
|
116 |
msgstr "Tytuł"
|
117 |
|
118 |
+
#: gallery-plugin.php:395
|
119 |
msgid "Author"
|
120 |
msgstr "Autor"
|
121 |
|
122 |
+
#: gallery-plugin.php:396
|
123 |
msgid "Photo's"
|
124 |
msgstr "Zdjęcie"
|
125 |
|
126 |
+
#: gallery-plugin.php:397
|
127 |
msgid "Public"
|
128 |
msgstr "Publiczne"
|
129 |
|
130 |
+
#: gallery-plugin.php:398
|
131 |
msgid "Date"
|
132 |
msgstr "Data"
|
133 |
|
134 |
+
#: gallery-plugin.php:545
|
135 |
msgid "Activated plugins"
|
136 |
msgstr "Aktywny plugin"
|
137 |
|
138 |
+
#: gallery-plugin.php:547
|
139 |
+
#: gallery-plugin.php:555
|
140 |
+
#: gallery-plugin.php:563
|
141 |
msgid "Read more"
|
142 |
msgstr "Czytaj dalej"
|
143 |
|
144 |
+
#: gallery-plugin.php:547
|
145 |
+
#: gallery-plugin.php:789
|
146 |
+
#: gallery-plugin.php:804
|
147 |
msgid "Settings"
|
148 |
msgstr "Ustawienia"
|
149 |
|
150 |
+
#: gallery-plugin.php:553
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Zainstalowane pluginy"
|
153 |
|
154 |
+
#: gallery-plugin.php:561
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "Rekomendowane pluginy"
|
157 |
|
158 |
+
#: gallery-plugin.php:563
|
159 |
msgid "Download"
|
160 |
msgstr "Pobierz"
|
161 |
|
162 |
+
#: gallery-plugin.php:563
|
163 |
#, php-format
|
164 |
msgid "Install %s"
|
165 |
msgstr "Zainstaluj %s"
|
166 |
|
167 |
+
#: gallery-plugin.php:563
|
168 |
msgid "Install now from wordpress.org"
|
169 |
msgstr "Zainstaluj teraz z wordpress.org"
|
170 |
|
171 |
+
#: gallery-plugin.php:565
|
172 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
173 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
174 |
|
175 |
+
#: gallery-plugin.php:597
|
176 |
+
msgid "See photo »"
|
177 |
+
msgstr "Zobacz zdjęcia »"
|
178 |
+
|
179 |
+
#: gallery-plugin.php:676
|
180 |
msgid "Options saved."
|
181 |
msgstr "Opcje zostały zapisane."
|
182 |
|
183 |
+
#: gallery-plugin.php:690
|
184 |
msgid "Gallery Options"
|
185 |
msgstr "Opcje galerii."
|
186 |
|
187 |
+
#: gallery-plugin.php:693
|
188 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:697
|
192 |
msgid "The size of the cover album for gallery"
|
193 |
msgstr "Rozmiar okładki albumu"
|
194 |
|
195 |
+
#: gallery-plugin.php:699
|
196 |
+
#: gallery-plugin.php:707
|
197 |
msgid "Image size name"
|
198 |
msgstr "Nazwa rozmiaru obrazka"
|
199 |
|
200 |
+
#: gallery-plugin.php:700
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Width (in px)"
|
203 |
msgstr "Szerokość (w px)"
|
204 |
|
205 |
+
#: gallery-plugin.php:701
|
206 |
+
#: gallery-plugin.php:709
|
207 |
msgid "Height (in px)"
|
208 |
msgstr "Wysokość (w px)"
|
209 |
|
210 |
+
#: gallery-plugin.php:705
|
211 |
msgid "Size for gallery image"
|
212 |
msgstr "Rozmiar dla obrazka w galerii"
|
213 |
|
214 |
+
#: gallery-plugin.php:713
|
215 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
216 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
217 |
|
218 |
+
#: gallery-plugin.php:716
|
219 |
msgid "Count images in row"
|
220 |
msgstr "Ilość obrazków w rzędzie"
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "Start slideshow"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:728
|
227 |
msgid "Slideshow interval"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
231 |
msgid "attachment id"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:737
|
235 |
msgid "attachment title"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:738
|
239 |
#, fuzzy
|
240 |
msgid "date"
|
241 |
msgstr "Data"
|
242 |
|
243 |
+
#: gallery-plugin.php:739
|
244 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:740
|
248 |
msgid "random"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:744
|
252 |
msgid "Attachments order"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: gallery-plugin.php:746
|
256 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: gallery-plugin.php:747
|
260 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: gallery-plugin.php:751
|
264 |
msgid "Display Return link"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: gallery-plugin.php:757
|
268 |
msgid "Display Return link in shortcode"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: gallery-plugin.php:763
|
272 |
msgid "Label for Return link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: gallery-plugin.php:769
|
276 |
+
msgid "Label for Read More link"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:777
|
280 |
msgid "Save Changes"
|
281 |
msgstr "Zapisz zmiany"
|
282 |
|
283 |
+
#: gallery-plugin.php:790
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ "
|
286 |
|
287 |
+
#: gallery-plugin.php:791
|
288 |
msgid "Support"
|
289 |
msgstr "Wsparcie"
|
290 |
|
291 |
+
#: gallery-plugin.php:953
|
292 |
#: template/gallery-single-template.php:60
|
293 |
msgid "Sorry - nothing to found."
|
294 |
msgstr "Przykro nam - nic nie znaleziono."
|
297 |
msgid "Image "
|
298 |
msgstr ""
|
299 |
|
|
|
|
|
|
|
|
|
300 |
#~ msgid "Size for gallery album cover"
|
301 |
#~ msgstr "Размер для "
|
302 |
|
languages/gallery-pt_BR.mo
CHANGED
Binary file
|
languages/gallery-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
9 |
"Language: \n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
|
22 |
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
-
#: gallery-plugin.php:
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
|
27 |
|
@@ -33,7 +33,7 @@ msgstr "Galerias"
|
|
33 |
|
34 |
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
-
#: gallery-plugin.php:
|
37 |
msgid "Gallery"
|
38 |
msgstr "Galeria"
|
39 |
|
@@ -97,226 +97,258 @@ msgstr "Escolha uma imagem para enviar:"
|
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
# @ gallery
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
103 |
msgstr "Você pode adicionar a Galeria Única na página ou post inserindo este shortcode no conteúdo"
|
104 |
|
|
|
|
|
|
|
|
|
105 |
# @ gallery
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "Title"
|
108 |
msgstr "Título"
|
109 |
|
110 |
# @ gallery
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Author"
|
113 |
msgstr "Autor"
|
114 |
|
115 |
# @ gallery
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "Photo's"
|
118 |
msgstr "Fotos"
|
119 |
|
120 |
# @ gallery
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Public"
|
123 |
msgstr "Público"
|
124 |
|
125 |
# @ gallery
|
126 |
-
#: gallery-plugin.php:
|
127 |
msgid "Date"
|
128 |
msgstr "Data"
|
129 |
|
130 |
# @ gallery
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Activated plugins"
|
133 |
msgstr "Plugins ativados"
|
134 |
|
135 |
# @ gallery
|
136 |
-
#: gallery-plugin.php:
|
137 |
-
#: gallery-plugin.php:
|
138 |
-
#: gallery-plugin.php:
|
139 |
msgid "Read more"
|
140 |
msgstr "Leia mais"
|
141 |
|
142 |
# @ gallery
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
#: gallery-plugin.php:
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Settings"
|
147 |
msgstr "Configurações"
|
148 |
|
149 |
# @ gallery
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Plugins instalados"
|
153 |
|
154 |
# @ gallery
|
155 |
-
#: gallery-plugin.php:
|
156 |
msgid "Recommended plugins"
|
157 |
msgstr "Plugins recomendados"
|
158 |
|
159 |
# @ gallery
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Download"
|
162 |
msgstr "Download"
|
163 |
|
164 |
# @ default
|
165 |
-
#: gallery-plugin.php:
|
166 |
#, php-format
|
167 |
msgid "Install %s"
|
168 |
msgstr "Instalar %s"
|
169 |
|
170 |
# @ gallery
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Install now from wordpress.org"
|
173 |
msgstr "Instale agora via wordpres.org"
|
174 |
|
175 |
# @ gallery
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
178 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
179 |
|
180 |
# @ gallery
|
181 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "Options saved."
|
183 |
msgstr "Opções salvas."
|
184 |
|
185 |
# @ gallery
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Gallery Options"
|
188 |
msgstr "Opções da Galeria"
|
189 |
|
190 |
# @ gallery
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
193 |
msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
|
194 |
|
195 |
# @ gallery
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "The size of the cover album for gallery"
|
198 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
199 |
|
200 |
# @ gallery
|
201 |
-
#: gallery-plugin.php:
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "Image size name"
|
204 |
msgstr "Nome do tamanho"
|
205 |
|
206 |
# @ gallery
|
207 |
-
#: gallery-plugin.php:
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Width (in px)"
|
210 |
msgstr "Largura (em px)"
|
211 |
|
212 |
# @ gallery
|
213 |
-
#: gallery-plugin.php:
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Height (in px)"
|
216 |
msgstr "Altura (em px)"
|
217 |
|
218 |
# @ gallery
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Size for gallery image"
|
221 |
msgstr "Tamanho da imagem da galeria"
|
222 |
|
223 |
# @ gallery
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
226 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
227 |
|
228 |
# @ gallery
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Count images in row"
|
231 |
msgstr "Quantidade de imagens por linha"
|
232 |
|
233 |
# @ gallery
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "Start slideshow"
|
236 |
msgstr "Iniciar Apresentação de Slides"
|
237 |
|
238 |
# @ gallery
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Slideshow interval"
|
241 |
msgstr "Intervalo de tempo entre cada Slide"
|
242 |
|
243 |
# @ gallery
|
244 |
-
#: gallery-plugin.php:
|
245 |
-
msgid "Attachments order by"
|
246 |
-
msgstr "Ordem dos anexos por"
|
247 |
-
|
248 |
-
# @ gallery
|
249 |
-
#: gallery-plugin.php:718
|
250 |
msgid "attachment id"
|
251 |
msgstr "id do anexo"
|
252 |
|
253 |
# @ gallery
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "attachment title"
|
256 |
msgstr "título do anexo"
|
257 |
|
258 |
# @ gallery
|
259 |
-
#: gallery-plugin.php:
|
260 |
msgid "date"
|
261 |
msgstr "data"
|
262 |
|
263 |
# @ gallery
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
266 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
267 |
|
268 |
# @ gallery
|
269 |
-
#: gallery-plugin.php:
|
270 |
msgid "random"
|
271 |
msgstr "aleatório"
|
272 |
|
273 |
# @ gallery
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Attachments order"
|
276 |
msgstr "ordem dos Anexos"
|
277 |
|
278 |
# @ gallery
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
281 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
282 |
|
283 |
# @ gallery
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
286 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
287 |
|
288 |
# @ gallery
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Display Return link"
|
291 |
msgstr "Mostrar link de Retorno"
|
292 |
|
293 |
# @ gallery
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Display Return link in shortcode"
|
296 |
msgstr "Mostrar link de Retorno no shortcode"
|
297 |
|
298 |
# @ gallery
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Label for Return link"
|
301 |
msgstr "Etiqueta para o link de Retorno"
|
302 |
|
|
|
|
|
|
|
|
|
|
|
303 |
# @ default
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Save Changes"
|
306 |
msgstr "Salvar Alterações"
|
307 |
|
308 |
# @ gallery
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "FAQ"
|
311 |
msgstr "FAQ"
|
312 |
|
313 |
# @ gallery
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Support"
|
316 |
msgstr "Suporte"
|
317 |
|
318 |
# @ gallery
|
319 |
-
#: gallery-plugin.php:
|
320 |
#: template/gallery-single-template.php:60
|
321 |
msgid "Sorry - nothing to found."
|
322 |
msgstr "Desculpe - nada foi encontrado."
|
@@ -326,8 +358,3 @@ msgstr "Desculpe - nada foi encontrado."
|
|
326 |
msgid "Image "
|
327 |
msgstr "Imagem "
|
328 |
|
329 |
-
# @ gallery
|
330 |
-
#: template/gallery-template.php:69
|
331 |
-
msgid "See photo »"
|
332 |
-
msgstr "Ver foto »"
|
333 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:58+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
9 |
"Language: \n"
|
21 |
|
22 |
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
+
#: gallery-plugin.php:683
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
|
27 |
|
33 |
|
34 |
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
+
#: gallery-plugin.php:576
|
37 |
msgid "Gallery"
|
38 |
msgstr "Galeria"
|
39 |
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
99 |
|
100 |
+
#: gallery-plugin.php:175
|
101 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:177
|
105 |
+
msgid "Please do not forget to select "
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
# @ gallery
|
109 |
+
#: gallery-plugin.php:177
|
110 |
+
#: gallery-plugin.php:734
|
111 |
+
msgid "Attachments order by"
|
112 |
+
msgstr "Ordem dos anexos por"
|
113 |
+
|
114 |
+
# @ gallery
|
115 |
+
#: gallery-plugin.php:177
|
116 |
+
msgid "attachments order"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: gallery-plugin.php:177
|
120 |
+
msgid "in the settings of the plugin (page "
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
# @ gallery
|
124 |
+
#: gallery-plugin.php:239
|
125 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
126 |
msgstr "Você pode adicionar a Galeria Única na página ou post inserindo este shortcode no conteúdo"
|
127 |
|
128 |
+
#: gallery-plugin.php:241
|
129 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
# @ gallery
|
133 |
+
#: gallery-plugin.php:394
|
134 |
msgid "Title"
|
135 |
msgstr "Título"
|
136 |
|
137 |
# @ gallery
|
138 |
+
#: gallery-plugin.php:395
|
139 |
msgid "Author"
|
140 |
msgstr "Autor"
|
141 |
|
142 |
# @ gallery
|
143 |
+
#: gallery-plugin.php:396
|
144 |
msgid "Photo's"
|
145 |
msgstr "Fotos"
|
146 |
|
147 |
# @ gallery
|
148 |
+
#: gallery-plugin.php:397
|
149 |
msgid "Public"
|
150 |
msgstr "Público"
|
151 |
|
152 |
# @ gallery
|
153 |
+
#: gallery-plugin.php:398
|
154 |
msgid "Date"
|
155 |
msgstr "Data"
|
156 |
|
157 |
# @ gallery
|
158 |
+
#: gallery-plugin.php:545
|
159 |
msgid "Activated plugins"
|
160 |
msgstr "Plugins ativados"
|
161 |
|
162 |
# @ gallery
|
163 |
+
#: gallery-plugin.php:547
|
164 |
+
#: gallery-plugin.php:555
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Read more"
|
167 |
msgstr "Leia mais"
|
168 |
|
169 |
# @ gallery
|
170 |
+
#: gallery-plugin.php:547
|
171 |
+
#: gallery-plugin.php:789
|
172 |
+
#: gallery-plugin.php:804
|
173 |
msgid "Settings"
|
174 |
msgstr "Configurações"
|
175 |
|
176 |
# @ gallery
|
177 |
+
#: gallery-plugin.php:553
|
178 |
msgid "Installed plugins"
|
179 |
msgstr "Plugins instalados"
|
180 |
|
181 |
# @ gallery
|
182 |
+
#: gallery-plugin.php:561
|
183 |
msgid "Recommended plugins"
|
184 |
msgstr "Plugins recomendados"
|
185 |
|
186 |
# @ gallery
|
187 |
+
#: gallery-plugin.php:563
|
188 |
msgid "Download"
|
189 |
msgstr "Download"
|
190 |
|
191 |
# @ default
|
192 |
+
#: gallery-plugin.php:563
|
193 |
#, php-format
|
194 |
msgid "Install %s"
|
195 |
msgstr "Instalar %s"
|
196 |
|
197 |
# @ gallery
|
198 |
+
#: gallery-plugin.php:563
|
199 |
msgid "Install now from wordpress.org"
|
200 |
msgstr "Instale agora via wordpres.org"
|
201 |
|
202 |
# @ gallery
|
203 |
+
#: gallery-plugin.php:565
|
204 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
205 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
206 |
|
207 |
# @ gallery
|
208 |
+
#: gallery-plugin.php:597
|
209 |
+
msgid "See photo »"
|
210 |
+
msgstr "Ver foto »"
|
211 |
+
|
212 |
+
# @ gallery
|
213 |
+
#: gallery-plugin.php:676
|
214 |
msgid "Options saved."
|
215 |
msgstr "Opções salvas."
|
216 |
|
217 |
# @ gallery
|
218 |
+
#: gallery-plugin.php:690
|
219 |
msgid "Gallery Options"
|
220 |
msgstr "Opções da Galeria"
|
221 |
|
222 |
# @ gallery
|
223 |
+
#: gallery-plugin.php:693
|
224 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
225 |
msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
|
226 |
|
227 |
# @ gallery
|
228 |
+
#: gallery-plugin.php:697
|
229 |
msgid "The size of the cover album for gallery"
|
230 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
231 |
|
232 |
# @ gallery
|
233 |
+
#: gallery-plugin.php:699
|
234 |
+
#: gallery-plugin.php:707
|
235 |
msgid "Image size name"
|
236 |
msgstr "Nome do tamanho"
|
237 |
|
238 |
# @ gallery
|
239 |
+
#: gallery-plugin.php:700
|
240 |
+
#: gallery-plugin.php:708
|
241 |
msgid "Width (in px)"
|
242 |
msgstr "Largura (em px)"
|
243 |
|
244 |
# @ gallery
|
245 |
+
#: gallery-plugin.php:701
|
246 |
+
#: gallery-plugin.php:709
|
247 |
msgid "Height (in px)"
|
248 |
msgstr "Altura (em px)"
|
249 |
|
250 |
# @ gallery
|
251 |
+
#: gallery-plugin.php:705
|
252 |
msgid "Size for gallery image"
|
253 |
msgstr "Tamanho da imagem da galeria"
|
254 |
|
255 |
# @ gallery
|
256 |
+
#: gallery-plugin.php:713
|
257 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
258 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
259 |
|
260 |
# @ gallery
|
261 |
+
#: gallery-plugin.php:716
|
262 |
msgid "Count images in row"
|
263 |
msgstr "Quantidade de imagens por linha"
|
264 |
|
265 |
# @ gallery
|
266 |
+
#: gallery-plugin.php:722
|
267 |
msgid "Start slideshow"
|
268 |
msgstr "Iniciar Apresentação de Slides"
|
269 |
|
270 |
# @ gallery
|
271 |
+
#: gallery-plugin.php:728
|
272 |
msgid "Slideshow interval"
|
273 |
msgstr "Intervalo de tempo entre cada Slide"
|
274 |
|
275 |
# @ gallery
|
276 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
|
|
277 |
msgid "attachment id"
|
278 |
msgstr "id do anexo"
|
279 |
|
280 |
# @ gallery
|
281 |
+
#: gallery-plugin.php:737
|
282 |
msgid "attachment title"
|
283 |
msgstr "título do anexo"
|
284 |
|
285 |
# @ gallery
|
286 |
+
#: gallery-plugin.php:738
|
287 |
msgid "date"
|
288 |
msgstr "data"
|
289 |
|
290 |
# @ gallery
|
291 |
+
#: gallery-plugin.php:739
|
292 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
293 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
294 |
|
295 |
# @ gallery
|
296 |
+
#: gallery-plugin.php:740
|
297 |
msgid "random"
|
298 |
msgstr "aleatório"
|
299 |
|
300 |
# @ gallery
|
301 |
+
#: gallery-plugin.php:744
|
302 |
msgid "Attachments order"
|
303 |
msgstr "ordem dos Anexos"
|
304 |
|
305 |
# @ gallery
|
306 |
+
#: gallery-plugin.php:746
|
307 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
308 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
309 |
|
310 |
# @ gallery
|
311 |
+
#: gallery-plugin.php:747
|
312 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
313 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
314 |
|
315 |
# @ gallery
|
316 |
+
#: gallery-plugin.php:751
|
317 |
msgid "Display Return link"
|
318 |
msgstr "Mostrar link de Retorno"
|
319 |
|
320 |
# @ gallery
|
321 |
+
#: gallery-plugin.php:757
|
322 |
msgid "Display Return link in shortcode"
|
323 |
msgstr "Mostrar link de Retorno no shortcode"
|
324 |
|
325 |
# @ gallery
|
326 |
+
#: gallery-plugin.php:763
|
327 |
msgid "Label for Return link"
|
328 |
msgstr "Etiqueta para o link de Retorno"
|
329 |
|
330 |
+
# @ gallery
|
331 |
+
#: gallery-plugin.php:769
|
332 |
+
msgid "Label for Read More link"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
# @ default
|
336 |
+
#: gallery-plugin.php:777
|
337 |
msgid "Save Changes"
|
338 |
msgstr "Salvar Alterações"
|
339 |
|
340 |
# @ gallery
|
341 |
+
#: gallery-plugin.php:790
|
342 |
msgid "FAQ"
|
343 |
msgstr "FAQ"
|
344 |
|
345 |
# @ gallery
|
346 |
+
#: gallery-plugin.php:791
|
347 |
msgid "Support"
|
348 |
msgstr "Suporte"
|
349 |
|
350 |
# @ gallery
|
351 |
+
#: gallery-plugin.php:953
|
352 |
#: template/gallery-single-template.php:60
|
353 |
msgid "Sorry - nothing to found."
|
354 |
msgstr "Desculpe - nada foi encontrado."
|
358 |
msgid "Image "
|
359 |
msgstr "Imagem "
|
360 |
|
|
|
|
|
|
|
|
|
|
languages/gallery-ru_RU.mo
CHANGED
Binary file
|
languages/gallery-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
@@ -80,183 +80,212 @@ msgstr "Выбрать файлы для загрузки:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активированные плагины"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Подробнее..."
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Размер изображения для обложки альбома галереи"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Название размера изображение"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Высота (в px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
msgid "Attachments order by"
|
201 |
-
msgstr "Изображения сортируются по"
|
202 |
-
|
203 |
-
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr "id изображения"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr "названию изображения"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "дате"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr "произвольно"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Сортировать изображения"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Отображать ссылку Вернуться"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Текст для ссылки Вернуться"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
248 |
msgid "Save Changes"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Поддержка"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Извините, ничего не найдено."
|
@@ -265,10 +294,6 @@ msgstr "Извините, ничего не найдено."
|
|
265 |
msgid "Image "
|
266 |
msgstr "Изображение"
|
267 |
|
268 |
-
#: template/gallery-template.php:69
|
269 |
-
msgid "See photo »"
|
270 |
-
msgstr "Смотреть фотографии »"
|
271 |
-
|
272 |
#~ msgid "Random order"
|
273 |
#~ msgstr "Произвольная сортировка"
|
274 |
#~ msgid "Size for gallery album cover"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:58+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
24 |
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr "Изображения сортируются по"
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr "Сортировать изображения"
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
107 |
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
msgid "Title"
|
114 |
msgstr "Название"
|
115 |
|
116 |
+
#: gallery-plugin.php:395
|
117 |
msgid "Author"
|
118 |
msgstr "Автор"
|
119 |
|
120 |
+
#: gallery-plugin.php:396
|
121 |
msgid "Photo's"
|
122 |
msgstr "Фото"
|
123 |
|
124 |
+
#: gallery-plugin.php:397
|
125 |
msgid "Public"
|
126 |
msgstr "Опубликование"
|
127 |
|
128 |
+
#: gallery-plugin.php:398
|
129 |
msgid "Date"
|
130 |
msgstr "Дата"
|
131 |
|
132 |
+
#: gallery-plugin.php:545
|
133 |
msgid "Activated plugins"
|
134 |
msgstr "Активированные плагины"
|
135 |
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
msgid "Read more"
|
140 |
msgstr "Подробнее..."
|
141 |
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
msgid "Settings"
|
146 |
msgstr "Настройки"
|
147 |
|
148 |
+
#: gallery-plugin.php:553
|
149 |
msgid "Installed plugins"
|
150 |
msgstr "Установленные плагины"
|
151 |
|
152 |
+
#: gallery-plugin.php:561
|
153 |
msgid "Recommended plugins"
|
154 |
msgstr "Рекомендованные к установке плагины"
|
155 |
|
156 |
+
#: gallery-plugin.php:563
|
157 |
msgid "Download"
|
158 |
msgstr "Скачать"
|
159 |
|
160 |
+
#: gallery-plugin.php:563
|
161 |
#, php-format
|
162 |
msgid "Install %s"
|
163 |
msgstr "Установлено %s"
|
164 |
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Install now from wordpress.org"
|
167 |
msgstr "Установить с wordpress.org"
|
168 |
|
169 |
+
#: gallery-plugin.php:565
|
170 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
172 |
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Смотреть фотографии »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
msgid "Options saved."
|
179 |
msgstr "Опции сохранены"
|
180 |
|
181 |
+
#: gallery-plugin.php:690
|
182 |
msgid "Gallery Options"
|
183 |
msgstr "Настройки Галереи"
|
184 |
|
185 |
+
#: gallery-plugin.php:693
|
186 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
188 |
|
189 |
+
#: gallery-plugin.php:697
|
190 |
msgid "The size of the cover album for gallery"
|
191 |
msgstr "Размер изображения для обложки альбома галереи"
|
192 |
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
msgid "Image size name"
|
196 |
msgstr "Название размера изображение"
|
197 |
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Width (in px)"
|
201 |
msgstr "Ширина (в px)"
|
202 |
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
msgid "Height (in px)"
|
206 |
msgstr "Высота (в px)"
|
207 |
|
208 |
+
#: gallery-plugin.php:705
|
209 |
msgid "Size for gallery image"
|
210 |
msgstr "Размер изображений Галереи"
|
211 |
|
212 |
+
#: gallery-plugin.php:713
|
213 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
215 |
|
216 |
+
#: gallery-plugin.php:716
|
217 |
msgid "Count images in row"
|
218 |
msgstr "Количество изображений в строке"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "Start slideshow"
|
222 |
msgstr "Начать слайдшоу"
|
223 |
|
224 |
+
#: gallery-plugin.php:728
|
225 |
msgid "Slideshow interval"
|
226 |
msgstr "Интервал времени при показе слайдшоу"
|
227 |
|
228 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
229 |
msgid "attachment id"
|
230 |
msgstr "id изображения"
|
231 |
|
232 |
+
#: gallery-plugin.php:737
|
233 |
msgid "attachment title"
|
234 |
msgstr "названию изображения"
|
235 |
|
236 |
+
#: gallery-plugin.php:738
|
237 |
msgid "date"
|
238 |
msgstr "дате"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
243 |
|
244 |
+
#: gallery-plugin.php:740
|
245 |
msgid "random"
|
246 |
msgstr "произвольно"
|
247 |
|
248 |
+
#: gallery-plugin.php:744
|
249 |
msgid "Attachments order"
|
250 |
msgstr "Сортировать изображения"
|
251 |
|
252 |
+
#: gallery-plugin.php:746
|
253 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
255 |
|
256 |
+
#: gallery-plugin.php:747
|
257 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
259 |
|
260 |
+
#: gallery-plugin.php:751
|
261 |
msgid "Display Return link"
|
262 |
msgstr "Отображать ссылку Вернуться"
|
263 |
|
264 |
+
#: gallery-plugin.php:757
|
265 |
msgid "Display Return link in shortcode"
|
266 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
267 |
|
268 |
+
#: gallery-plugin.php:763
|
269 |
msgid "Label for Return link"
|
270 |
msgstr "Текст для ссылки Вернуться"
|
271 |
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr "Текст для ссылки Читать далее"
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
msgid "Save Changes"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: gallery-plugin.php:790
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
+
#: gallery-plugin.php:791
|
285 |
msgid "Support"
|
286 |
msgstr "Поддержка"
|
287 |
|
288 |
+
#: gallery-plugin.php:953
|
289 |
#: template/gallery-single-template.php:60
|
290 |
msgid "Sorry - nothing to found."
|
291 |
msgstr "Извините, ничего не найдено."
|
294 |
msgid "Image "
|
295 |
msgstr "Изображение"
|
296 |
|
|
|
|
|
|
|
|
|
297 |
#~ msgid "Random order"
|
298 |
#~ msgstr "Произвольная сортировка"
|
299 |
#~ msgid "Size for gallery album cover"
|
languages/gallery-uk.mo
CHANGED
Binary file
|
languages/gallery-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
@@ -80,183 +80,212 @@ msgstr "Вибрати скріншот, щоб завантажити:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "Title"
|
89 |
msgstr "Назва"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Автор "
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото "
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Громадськості"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Дата "
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активоване плагіни"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Читати далі"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Параметри"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Плагіни Рекомендовані"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Завантажити"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установка %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установити зараз від wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "Options saved."
|
150 |
msgstr "Параметри зберігаються."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Параметри галереї"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Розмір обкладинки альбому для галереї"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Ім'я розмір зображення"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Висота (в px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Розмір зображення галерея"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Кількість зображень у рядку"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
msgid "Attachments order by"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Дата"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Зберегти зміни"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Підтримка"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Вибачте - нічого не знайдено."
|
@@ -265,10 +294,6 @@ msgstr "Вибачте - нічого не знайдено."
|
|
265 |
msgid "Image "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: template/gallery-template.php:69
|
269 |
-
msgid "See photo »"
|
270 |
-
msgstr "Дивитися фото »"
|
271 |
-
|
272 |
#~ msgid "Size for gallery album cover"
|
273 |
#~ msgstr "Размер для "
|
274 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-27 14:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-27 14:58+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:683
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:576
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
82 |
|
83 |
+
#: gallery-plugin.php:175
|
84 |
+
msgid "Please use drag and drop function to change the order of the output of images and do not forget to save post."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: gallery-plugin.php:177
|
88 |
+
msgid "Please do not forget to select "
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: gallery-plugin.php:177
|
92 |
+
#: gallery-plugin.php:734
|
93 |
+
msgid "Attachments order by"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: gallery-plugin.php:177
|
97 |
+
msgid "attachments order"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: gallery-plugin.php:177
|
101 |
+
msgid "in the settings of the plugin (page "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: gallery-plugin.php:239
|
105 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: gallery-plugin.php:241
|
109 |
+
msgid "If you want to take a brief display of the gallery with a link to a Single Sallery Page"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: gallery-plugin.php:394
|
113 |
msgid "Title"
|
114 |
msgstr "Назва"
|
115 |
|
116 |
+
#: gallery-plugin.php:395
|
117 |
msgid "Author"
|
118 |
msgstr "Автор "
|
119 |
|
120 |
+
#: gallery-plugin.php:396
|
121 |
msgid "Photo's"
|
122 |
msgstr "Фото "
|
123 |
|
124 |
+
#: gallery-plugin.php:397
|
125 |
msgid "Public"
|
126 |
msgstr "Громадськості"
|
127 |
|
128 |
+
#: gallery-plugin.php:398
|
129 |
msgid "Date"
|
130 |
msgstr "Дата "
|
131 |
|
132 |
+
#: gallery-plugin.php:545
|
133 |
msgid "Activated plugins"
|
134 |
msgstr "Активоване плагіни"
|
135 |
|
136 |
+
#: gallery-plugin.php:547
|
137 |
+
#: gallery-plugin.php:555
|
138 |
+
#: gallery-plugin.php:563
|
139 |
msgid "Read more"
|
140 |
msgstr "Читати далі"
|
141 |
|
142 |
+
#: gallery-plugin.php:547
|
143 |
+
#: gallery-plugin.php:789
|
144 |
+
#: gallery-plugin.php:804
|
145 |
msgid "Settings"
|
146 |
msgstr "Параметри"
|
147 |
|
148 |
+
#: gallery-plugin.php:553
|
149 |
msgid "Installed plugins"
|
150 |
msgstr "Встановлених модулів"
|
151 |
|
152 |
+
#: gallery-plugin.php:561
|
153 |
msgid "Recommended plugins"
|
154 |
msgstr "Плагіни Рекомендовані"
|
155 |
|
156 |
+
#: gallery-plugin.php:563
|
157 |
msgid "Download"
|
158 |
msgstr "Завантажити"
|
159 |
|
160 |
+
#: gallery-plugin.php:563
|
161 |
#, php-format
|
162 |
msgid "Install %s"
|
163 |
msgstr "Установка %s"
|
164 |
|
165 |
+
#: gallery-plugin.php:563
|
166 |
msgid "Install now from wordpress.org"
|
167 |
msgstr "Установити зараз від wordpress.org"
|
168 |
|
169 |
+
#: gallery-plugin.php:565
|
170 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
171 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
172 |
|
173 |
+
#: gallery-plugin.php:597
|
174 |
+
msgid "See photo »"
|
175 |
+
msgstr "Дивитися фото »"
|
176 |
+
|
177 |
+
#: gallery-plugin.php:676
|
178 |
msgid "Options saved."
|
179 |
msgstr "Параметри зберігаються."
|
180 |
|
181 |
+
#: gallery-plugin.php:690
|
182 |
msgid "Gallery Options"
|
183 |
msgstr "Параметри галереї"
|
184 |
|
185 |
+
#: gallery-plugin.php:693
|
186 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: gallery-plugin.php:697
|
190 |
msgid "The size of the cover album for gallery"
|
191 |
msgstr "Розмір обкладинки альбому для галереї"
|
192 |
|
193 |
+
#: gallery-plugin.php:699
|
194 |
+
#: gallery-plugin.php:707
|
195 |
msgid "Image size name"
|
196 |
msgstr "Ім'я розмір зображення"
|
197 |
|
198 |
+
#: gallery-plugin.php:700
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Width (in px)"
|
201 |
msgstr "Ширина (в px)"
|
202 |
|
203 |
+
#: gallery-plugin.php:701
|
204 |
+
#: gallery-plugin.php:709
|
205 |
msgid "Height (in px)"
|
206 |
msgstr "Висота (в px)"
|
207 |
|
208 |
+
#: gallery-plugin.php:705
|
209 |
msgid "Size for gallery image"
|
210 |
msgstr "Розмір зображення галерея"
|
211 |
|
212 |
+
#: gallery-plugin.php:713
|
213 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
214 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
215 |
|
216 |
+
#: gallery-plugin.php:716
|
217 |
msgid "Count images in row"
|
218 |
msgstr "Кількість зображень у рядку"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "Start slideshow"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:728
|
225 |
msgid "Slideshow interval"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:736
|
|
|
|
|
|
|
|
|
229 |
msgid "attachment id"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: gallery-plugin.php:737
|
233 |
msgid "attachment title"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:738
|
237 |
msgid "date"
|
238 |
msgstr "Дата"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: gallery-plugin.php:740
|
245 |
msgid "random"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: gallery-plugin.php:744
|
249 |
msgid "Attachments order"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: gallery-plugin.php:746
|
253 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: gallery-plugin.php:747
|
257 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: gallery-plugin.php:751
|
261 |
msgid "Display Return link"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: gallery-plugin.php:757
|
265 |
msgid "Display Return link in shortcode"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: gallery-plugin.php:763
|
269 |
msgid "Label for Return link"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: gallery-plugin.php:769
|
273 |
+
msgid "Label for Read More link"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:777
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Зберегти зміни"
|
279 |
|
280 |
+
#: gallery-plugin.php:790
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ "
|
283 |
|
284 |
+
#: gallery-plugin.php:791
|
285 |
msgid "Support"
|
286 |
msgstr "Підтримка"
|
287 |
|
288 |
+
#: gallery-plugin.php:953
|
289 |
#: template/gallery-single-template.php:60
|
290 |
msgid "Sorry - nothing to found."
|
291 |
msgstr "Вибачте - нічого не знайдено."
|
294 |
msgid "Image "
|
295 |
msgstr ""
|
296 |
|
|
|
|
|
|
|
|
|
297 |
#~ msgid "Size for gallery album cover"
|
298 |
#~ msgstr "Размер для "
|
299 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
@@ -39,6 +39,7 @@ This plugin makes it possible to implement as many galleries as you want into yo
|
|
39 |
* Hebrew (he_IL) (thanks to Sagive SEO)
|
40 |
* Hungarian (hu_HU) (thanks to Mészöly Gábor)
|
41 |
* Italian (it_IT) (thanks to Stefano Ferruggiara)
|
|
|
42 |
* Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
|
43 |
* Russian (ru_RU)
|
44 |
* Spanish (es) (thanks to Victor Garcia)
|
@@ -98,7 +99,11 @@ After that your theme will support thumbnail option and the error won't display
|
|
98 |
|
99 |
= How to change image order on single gallery page? =
|
100 |
|
101 |
-
Please open the menu "Galleries" and choose random gallery from the list. You should be redirected to the gallery editing page.
|
|
|
|
|
|
|
|
|
102 |
There will be one or several media upload icons between the title and content adding blocks. Please choose any icon.
|
103 |
After that you'll see a popup window with three or four tabs.
|
104 |
Choose gallery tab and there'll be displayed attached files which are related to this gallery.
|
@@ -115,6 +120,11 @@ Just setup a necessary order and click 'Save' button.
|
|
115 |
|
116 |
== Changelog ==
|
117 |
|
|
|
|
|
|
|
|
|
|
|
118 |
= V3.4 - 24.07.2012 =
|
119 |
* Bugfix : Cross Site Request Forgery bug was fixed.
|
120 |
|
@@ -211,6 +221,9 @@ Just setup a necessary order and click 'Save' button.
|
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
|
|
|
|
|
|
214 |
= V3.4 =
|
215 |
Cross Site Request Forgery bug was fixed.
|
216 |
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 3.5
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
39 |
* Hebrew (he_IL) (thanks to Sagive SEO)
|
40 |
* Hungarian (hu_HU) (thanks to Mészöly Gábor)
|
41 |
* Italian (it_IT) (thanks to Stefano Ferruggiara)
|
42 |
+
* Lituanian (lt_LT) (thanks to Naglis Jonaitis)
|
43 |
* Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
|
44 |
* Russian (ru_RU)
|
45 |
* Spanish (es) (thanks to Victor Garcia)
|
99 |
|
100 |
= How to change image order on single gallery page? =
|
101 |
|
102 |
+
1. Please open the menu "Galleries" and choose random gallery from the list. You should be redirected to the gallery editing page.
|
103 |
+
Please use drag and drop function to change the order of the output of images and do not forget to save post.
|
104 |
+
Please do not forget to select `Attachments order by` -> `attachments order` in the settings of the plugin (page http://your_domain/wp-admin/admin.php?page=gallery-plugin.php)
|
105 |
+
|
106 |
+
2. Please open the menu "Galleries" and choose random gallery from the list. You should be redirected to the gallery editing page.
|
107 |
There will be one or several media upload icons between the title and content adding blocks. Please choose any icon.
|
108 |
After that you'll see a popup window with three or four tabs.
|
109 |
Choose gallery tab and there'll be displayed attached files which are related to this gallery.
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= V3.5 - 27.07.2012 =
|
124 |
+
* NEW : Lituanian language file is added to the plugin.
|
125 |
+
* NEW : Added drag and drop function to change the order of the output of images
|
126 |
+
* NEW : Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
127 |
+
|
128 |
= V3.4 - 24.07.2012 =
|
129 |
* Bugfix : Cross Site Request Forgery bug was fixed.
|
130 |
|
221 |
|
222 |
== Upgrade Notice ==
|
223 |
|
224 |
+
= V3.5 =
|
225 |
+
Lituanian language file is added to the plugin. Added drag and drop function to change the order of the output of images. Added a shortcode for displaying short gallery type (like [print_gllr id=211 display=short])
|
226 |
+
|
227 |
= V3.4 =
|
228 |
Cross Site Request Forgery bug was fixed.
|
229 |
|
screenshot-1.jpg
CHANGED
Binary file
|
screenshot-3.jpg
CHANGED
Binary file
|
template/gallery-single-template.php
CHANGED
File without changes
|
template/gallery-template.php
CHANGED
@@ -66,7 +66,7 @@ Template Name: Gallery Template
|
|
66 |
<div class="gallery_detail_box">
|
67 |
<div><?php echo $post->post_title; ?></div>
|
68 |
<div><?php echo the_excerpt_max_charlength(100); ?></div>
|
69 |
-
<a href="<?php echo $permalink; echo basename( get_permalink( $post->ID ) ); ?>"><?php echo
|
70 |
</div>
|
71 |
<div class="clear"></div>
|
72 |
</li>
|
66 |
<div class="gallery_detail_box">
|
67 |
<div><?php echo $post->post_title; ?></div>
|
68 |
<div><?php echo the_excerpt_max_charlength(100); ?></div>
|
69 |
+
<a href="<?php echo $permalink; echo basename( get_permalink( $post->ID ) ); ?>"><?php echo $gllr_options["read_more_link_text"]; ?></a>
|
70 |
</div>
|
71 |
<div class="clear"></div>
|
72 |
</li>
|