Version Description
- 25.05.2012 =
- NEW : Added shortcode for display Single Gallery on your page or post.
- NEW : Added attachment order.
- NEW : Added 'Return to all albums' link for Single Gallery page.
- NEW : Spanish language file are added to the plugin.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.05 |
Comparing to | |
See all releases |
Code changes from version 3.04 to 3.05
- css/stylesheet.css +10 -0
- gallery-plugin.php +164 -6
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +98 -43
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +98 -43
- languages/gallery-es.mo +0 -0
- languages/gallery-es.po +262 -0
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +98 -43
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +98 -43
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +98 -43
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +98 -43
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +98 -43
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +98 -43
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +101 -45
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +96 -43
- readme.txt +35 -2
- screenshot-3.jpg +0 -0
- template/gallery-single-template.php +8 -2
css/stylesheet.css
CHANGED
@@ -122,4 +122,14 @@ text-align:center;
|
|
122 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item
|
123 |
{
|
124 |
display:none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
}
|
122 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item
|
123 |
{
|
124 |
display:none;
|
125 |
+
}
|
126 |
+
#gllr_form_image_size input[type="radio"]{
|
127 |
+
float:left;
|
128 |
+
position:relative;
|
129 |
+
top:5px;
|
130 |
+
margin-right:5px;
|
131 |
+
}
|
132 |
+
#gllr_form_image_size .label_radio{
|
133 |
+
width:540px;
|
134 |
+
cursor: default;
|
135 |
}
|
gallery-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -97,7 +97,7 @@ if( ! function_exists( 'post_type_images' ) ) {
|
|
97 |
'capability_type' => 'post',
|
98 |
'has_archive' => false,
|
99 |
'hierarchical' => true,
|
100 |
-
'supports' => array('title', 'editor', 'thumbnail', 'author' ),
|
101 |
'register_meta_box_cb' => 'init_metaboxes_gallery'
|
102 |
));
|
103 |
}
|
@@ -150,6 +150,7 @@ function init_metaboxes_gallery() {
|
|
150 |
if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
151 |
function gllr_post_custom_box( $obj = '', $box = '' ) {
|
152 |
global $post;
|
|
|
153 |
$key = "gllr_image_text";
|
154 |
$error = "";
|
155 |
$uploader = true;
|
@@ -162,7 +163,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
162 |
$uploader = false;
|
163 |
}
|
164 |
?>
|
165 |
-
<div style="padding-top:10px;"><label for="uploadscreen"><?php echo __( 'Choose
|
166 |
<input name="MAX_FILE_SIZE" value="1048576" type="hidden" />
|
167 |
<div id="file-uploader-demo1" style="padding-top:10px;">
|
168 |
<?php echo $error; ?>
|
@@ -207,8 +208,8 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
207 |
"what_to_show" => "posts",
|
208 |
"post_status" => "inherit",
|
209 |
"post_type" => "attachment",
|
210 |
-
"orderby" =>
|
211 |
-
"order" =>
|
212 |
"post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
|
213 |
"post_parent" => $post->ID)); ?>
|
214 |
<ul class="gallery clearfix">
|
@@ -258,6 +259,10 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
258 |
require_once( ABSPATH . 'wp-admin/includes/image.php' );
|
259 |
while( list( $key, $val ) = each( $array_file_name ) ) {
|
260 |
$file_name = $val;
|
|
|
|
|
|
|
|
|
261 |
if ( copy ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/".$file_name, $uploadFile[$key] ) ) {
|
262 |
unlink( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/".$file_name );
|
263 |
$overrides = array('test_form' => false );
|
@@ -558,7 +563,12 @@ if( ! function_exists( 'register_gllr_settings' ) ) {
|
|
558 |
'gllr_custom_size_px' => array( array(120, 80), array(160, 120) ),
|
559 |
'custom_image_row_count' => 3,
|
560 |
'start_slideshow' => 0,
|
561 |
-
'slideshow_interval' => 2000
|
|
|
|
|
|
|
|
|
|
|
562 |
);
|
563 |
|
564 |
// install the option defaults
|
@@ -610,6 +620,20 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
610 |
else
|
611 |
$gllr_request_options["start_slideshow"] = 0;
|
612 |
$gllr_request_options["slideshow_interval"] = $_REQUEST['slideshow_interval'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
|
614 |
// array merge incase this version has added new options
|
615 |
$gllr_options = array_merge( $gllr_options, $gllr_request_options );
|
@@ -630,6 +654,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
630 |
<h2><?php _e('Gallery Options', 'gallery' ); ?></h2>
|
631 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['gllr_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
632 |
<div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
|
|
633 |
<form method="post" action="admin.php?page=gallery-plugin.php" id="gllr_form_image_size">
|
634 |
<table class="form-table">
|
635 |
<tr valign="top">
|
@@ -669,6 +694,41 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
669 |
<input type="text" name="slideshow_interval" value="<?php echo $gllr_options["slideshow_interval"]; ?>" />
|
670 |
</td>
|
671 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
</table>
|
673 |
<input type="hidden" name="gllr_form_submit" value="submit" />
|
674 |
<p class="submit">
|
@@ -732,6 +792,102 @@ if ( ! function_exists ( 'gllr_wp_head' ) ) {
|
|
732 |
}
|
733 |
}
|
734 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
|
736 |
register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
|
737 |
|
@@ -761,4 +917,6 @@ add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 )
|
|
761 |
add_action( 'wp_head', 'gllr_add_script' );
|
762 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
763 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
|
|
|
|
764 |
?>
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.05
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
97 |
'capability_type' => 'post',
|
98 |
'has_archive' => false,
|
99 |
'hierarchical' => true,
|
100 |
+
'supports' => array('title', 'editor', 'thumbnail', 'author', 'page-attributes' ),
|
101 |
'register_meta_box_cb' => 'init_metaboxes_gallery'
|
102 |
));
|
103 |
}
|
150 |
if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
151 |
function gllr_post_custom_box( $obj = '', $box = '' ) {
|
152 |
global $post;
|
153 |
+
$gllr_options = get_option( 'gllr_options' );
|
154 |
$key = "gllr_image_text";
|
155 |
$error = "";
|
156 |
$uploader = true;
|
163 |
$uploader = false;
|
164 |
}
|
165 |
?>
|
166 |
+
<div style="padding-top:10px;"><label for="uploadscreen"><?php echo __( 'Choose an image to upload:', 'gallery' ); ?></label>
|
167 |
<input name="MAX_FILE_SIZE" value="1048576" type="hidden" />
|
168 |
<div id="file-uploader-demo1" style="padding-top:10px;">
|
169 |
<?php echo $error; ?>
|
208 |
"what_to_show" => "posts",
|
209 |
"post_status" => "inherit",
|
210 |
"post_type" => "attachment",
|
211 |
+
"orderby" => $gllr_options['order_by'],
|
212 |
+
"order" => $gllr_options['order'],
|
213 |
"post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
|
214 |
"post_parent" => $post->ID)); ?>
|
215 |
<ul class="gallery clearfix">
|
259 |
require_once( ABSPATH . 'wp-admin/includes/image.php' );
|
260 |
while( list( $key, $val ) = each( $array_file_name ) ) {
|
261 |
$file_name = $val;
|
262 |
+
if( file_exists( $uploadFile[$key] ) ){
|
263 |
+
$uploadFile[$key] = $uploadDir["path"] ."/" . pathinfo($uploadFile[$key], PATHINFO_FILENAME ).uniqid().".".pathinfo($uploadFile[$key], PATHINFO_EXTENSION );
|
264 |
+
}
|
265 |
+
|
266 |
if ( copy ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/".$file_name, $uploadFile[$key] ) ) {
|
267 |
unlink( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/".$file_name );
|
268 |
$overrides = array('test_form' => false );
|
563 |
'gllr_custom_size_px' => array( array(120, 80), array(160, 120) ),
|
564 |
'custom_image_row_count' => 3,
|
565 |
'start_slideshow' => 0,
|
566 |
+
'slideshow_interval' => 2000,
|
567 |
+
'order_by' => 'menu_order',
|
568 |
+
'order' => 'ASC',
|
569 |
+
'return_link' => 0,
|
570 |
+
'return_link_text' => 'Return to all albums',
|
571 |
+
'return_link_shortcode' => 0
|
572 |
);
|
573 |
|
574 |
// install the option defaults
|
620 |
else
|
621 |
$gllr_request_options["start_slideshow"] = 0;
|
622 |
$gllr_request_options["slideshow_interval"] = $_REQUEST['slideshow_interval'];
|
623 |
+
$gllr_request_options["order_by"] = $_REQUEST['order_by'];
|
624 |
+
$gllr_request_options["order"] = $_REQUEST['order'];
|
625 |
+
|
626 |
+
if( isset( $_REQUEST['return_link'] ) )
|
627 |
+
$gllr_request_options["return_link"] = 1;
|
628 |
+
else
|
629 |
+
$gllr_request_options["return_link"] = 0;
|
630 |
+
|
631 |
+
if( isset( $_REQUEST['return_link_shortcode'] ) )
|
632 |
+
$gllr_request_options["return_link_shortcode"] = 1;
|
633 |
+
else
|
634 |
+
$gllr_request_options["return_link_shortcode"] = 0;
|
635 |
+
|
636 |
+
$gllr_request_options["return_link_text"] = $_REQUEST['return_link_text'];
|
637 |
|
638 |
// array merge incase this version has added new options
|
639 |
$gllr_options = array_merge( $gllr_options, $gllr_request_options );
|
654 |
<h2><?php _e('Gallery Options', 'gallery' ); ?></h2>
|
655 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['gllr_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
656 |
<div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
657 |
+
<p><?php _e( "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:", 'gallery' ); ?> [print_gllr id=Your_gallery_id]</p>
|
658 |
<form method="post" action="admin.php?page=gallery-plugin.php" id="gllr_form_image_size">
|
659 |
<table class="form-table">
|
660 |
<tr valign="top">
|
694 |
<input type="text" name="slideshow_interval" value="<?php echo $gllr_options["slideshow_interval"]; ?>" />
|
695 |
</td>
|
696 |
</tr>
|
697 |
+
<tr valign="top">
|
698 |
+
<th scope="row"><?php _e('Attachments order by', 'gallery' ); ?> </th>
|
699 |
+
<td>
|
700 |
+
<input type="radio" name="order_by" value="ID" <?php if( $gllr_options["order_by"] == 'ID' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order_by"><?php _e( 'attachment id', 'gallery' ); ?></label><br />
|
701 |
+
<input type="radio" name="order_by" value="title" <?php if( $gllr_options["order_by"] == 'title' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order_by"><?php _e( 'attachment title', 'gallery' ); ?></label><br />
|
702 |
+
<input type="radio" name="order_by" value="date" <?php if( $gllr_options["order_by"] == 'date' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order_by"><?php _e( 'date', 'gallery' ); ?></label><br />
|
703 |
+
<input type="radio" name="order_by" value="menu_order" <?php if( $gllr_options["order_by"] == 'menu_order' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order_by"><?php _e( 'attachments order (the integer fields in the Insert / Upload Media Gallery dialog )', 'gallery' ); ?></label><br />
|
704 |
+
<input type="radio" name="order_by" value="rand" <?php if( $gllr_options["order_by"] == 'rand' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order_by"><?php _e( 'random', 'gallery' ); ?></label>
|
705 |
+
</td>
|
706 |
+
</tr>
|
707 |
+
<tr valign="top">
|
708 |
+
<th scope="row"><?php _e('Attachments order', 'gallery' ); ?> </th>
|
709 |
+
<td>
|
710 |
+
<input type="radio" name="order" value="ASC" <?php if( $gllr_options["order"] == 'ASC' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order"><?php _e( 'ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)', 'gallery' ); ?></label><br />
|
711 |
+
<input type="radio" name="order" value="DESC" <?php if( $gllr_options["order"] == 'DESC' ) echo 'checked="checked"'; ?> /> <label class="label_radio" for="order"><?php _e( 'DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)', 'gallery' ); ?></label>
|
712 |
+
</td>
|
713 |
+
</tr>
|
714 |
+
<tr valign="top">
|
715 |
+
<th scope="row"><?php _e('Display Return link', 'gallery' ); ?> </th>
|
716 |
+
<td>
|
717 |
+
<input type="checkbox" name="return_link" value="1" <?php if( $gllr_options["return_link"] == 1 ) echo 'checked="checked"'; ?> />
|
718 |
+
</td>
|
719 |
+
</tr>
|
720 |
+
<tr valign="top">
|
721 |
+
<th scope="row"><?php _e('Display Return link in shortcode', 'gallery' ); ?> </th>
|
722 |
+
<td>
|
723 |
+
<input type="checkbox" name="return_link_shortcode" value="1" <?php if( $gllr_options["return_link_shortcode"] == 1 ) echo 'checked="checked"'; ?> />
|
724 |
+
</td>
|
725 |
+
</tr>
|
726 |
+
<tr valign="top">
|
727 |
+
<th scope="row"><?php _e('Label for Return link', 'gallery' ); ?> </th>
|
728 |
+
<td>
|
729 |
+
<input type="text" name="return_link_text" value="<?php echo $gllr_options["return_link_text"]; ?>" style="width:200px;" />
|
730 |
+
</td>
|
731 |
+
</tr>
|
732 |
</table>
|
733 |
<input type="hidden" name="gllr_form_submit" value="submit" />
|
734 |
<p class="submit">
|
792 |
}
|
793 |
}
|
794 |
|
795 |
+
if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
796 |
+
function gllr_shortcode( $atts ) {
|
797 |
+
extract( shortcode_atts( array(
|
798 |
+
'id' => ''
|
799 |
+
), $attr )
|
800 |
+
);
|
801 |
+
$args = array(
|
802 |
+
'post_type' => 'gallery',
|
803 |
+
'post_status' => 'publish',
|
804 |
+
'p' => $id,
|
805 |
+
'posts_per_page' => 1
|
806 |
+
);
|
807 |
+
$second_query = new WP_Query( $args );
|
808 |
+
$gllr_options = get_option( 'gllr_options' );
|
809 |
+
if ($second_query->have_posts()) :
|
810 |
+
while ($second_query->have_posts()) :
|
811 |
+
global $post;
|
812 |
+
$second_query->the_post(); ?>
|
813 |
+
<div class="gallery_box_single">
|
814 |
+
<?php the_content();
|
815 |
+
$posts = get_posts(array(
|
816 |
+
"showposts" => -1,
|
817 |
+
"what_to_show" => "posts",
|
818 |
+
"post_status" => "inherit",
|
819 |
+
"post_type" => "attachment",
|
820 |
+
"orderby" => $gllr_options['order_by'],
|
821 |
+
"order" => $gllr_options['order'],
|
822 |
+
"post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
|
823 |
+
"post_parent" => $post->ID
|
824 |
+
));
|
825 |
+
if( count( $posts ) > 0 ) {
|
826 |
+
$count_image_block = 0; ?>
|
827 |
+
<div class="gallery clearfix">
|
828 |
+
<?php foreach( $posts as $attachment ) {
|
829 |
+
$key = "gllr_image_text";
|
830 |
+
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' );
|
831 |
+
$image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' );
|
832 |
+
if( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?>
|
833 |
+
<div class="gllr_image_row">
|
834 |
+
<?php } ?>
|
835 |
+
<div class="gllr_image_block">
|
836 |
+
<p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+20; ?>px;">
|
837 |
+
<a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>">
|
838 |
+
<img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px;" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" />
|
839 |
+
</a>
|
840 |
+
</p>
|
841 |
+
<div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+20; ?>px;" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?> </div>
|
842 |
+
</div>
|
843 |
+
<?php if($count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?>
|
844 |
+
</div>
|
845 |
+
<?php }
|
846 |
+
$count_image_block++;
|
847 |
+
}
|
848 |
+
if($count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0) { ?>
|
849 |
+
</div>
|
850 |
+
<?php } ?>
|
851 |
+
</div>
|
852 |
+
<?php } ?>
|
853 |
+
</div>
|
854 |
+
<div class="clear"></div>
|
855 |
+
<?php endwhile;
|
856 |
+
else: ?>
|
857 |
+
<div class="gallery_box_single">
|
858 |
+
<p class="not_found"><?php _e('Sorry - nothing to found.', 'gallery'); ?></p>
|
859 |
+
</div>
|
860 |
+
<?php endif; ?>
|
861 |
+
<?php if( $gllr_options['return_link_shortcode'] == 1 ) {
|
862 |
+
global $wpdb;
|
863 |
+
$parent = $wpdb->get_var("SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id");
|
864 |
+
?>
|
865 |
+
<div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
866 |
+
<?php } ?>
|
867 |
+
<script type="text/javascript">
|
868 |
+
(function($){
|
869 |
+
$(document).ready(function(){
|
870 |
+
$("a[rel=gallery_fancybox]").fancybox({
|
871 |
+
'transitionIn' : 'elastic',
|
872 |
+
'transitionOut' : 'elastic',
|
873 |
+
'titlePosition' : 'inside',
|
874 |
+
'speedIn' : 500,
|
875 |
+
'speedOut' : 300,
|
876 |
+
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
|
877 |
+
return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
|
878 |
+
}<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>,
|
879 |
+
'onComplete': function() {
|
880 |
+
clearTimeout(jQuery.fancybox.slider);
|
881 |
+
jQuery.fancybox.slider=setTimeout("jQuery.fancybox.next()",<?php echo empty( $gllr_options['slideshow_interval'] )? 2000 : $gllr_options['slideshow_interval'] ; ?>);
|
882 |
+
}<?php } ?>
|
883 |
+
});
|
884 |
+
});
|
885 |
+
})(jQuery);
|
886 |
+
</script>
|
887 |
+
<?php
|
888 |
+
}
|
889 |
+
}
|
890 |
+
|
891 |
register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
|
892 |
register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
|
893 |
|
917 |
add_action( 'wp_head', 'gllr_add_script' );
|
918 |
add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
919 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
920 |
+
|
921 |
+
add_shortcode( 'print_gllr', 'gllr_shortcode' );
|
922 |
?>
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:57
|
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:82
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -64,138 +64,193 @@ msgstr "Nebyla nalezena žádná galerie"
|
|
64 |
msgid "Upload File"
|
65 |
msgstr "Nahrát soubor"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
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)"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
-
|
|
|
73 |
msgstr "Vyberte náhled pro nahrání:"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Title"
|
81 |
msgstr "Název"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Autor"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Fotky"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Veřejné"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Datum"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktivní pluginy"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Další informace"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Nastavení"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Nainstalované pluginy"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Doporučené pluginy"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Stáhnout"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Instaluj %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Instaluj ihned z wordpress.org"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
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."
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Nastavení uložena."
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Nastavení galerie"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
149 |
msgid "The size of the cover album for gallery"
|
150 |
msgstr "Rozměry náhledu alba v galerii"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Image size name"
|
155 |
msgstr "Název rozměru"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Width (in px)"
|
160 |
msgstr "Šířka (v px)"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "Height (in px)"
|
165 |
msgstr "Výška (v px)"
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Size for gallery image"
|
169 |
msgstr "Rozměry náhledu obrázku v albu"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
173 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Count images in row"
|
177 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Start slideshow"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Slideshow interval"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgid "Save Changes"
|
189 |
msgstr "Uložit změny"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "FAQ"
|
193 |
msgstr "FAQ "
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Support"
|
197 |
msgstr "Podpora"
|
198 |
|
|
|
199 |
#: template/gallery-single-template.php:60
|
200 |
msgid "Sorry - nothing to found."
|
201 |
msgstr "Omlouvám se - nic nenalezeno."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:57
|
21 |
+
#: gallery-plugin.php:647
|
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:82
|
31 |
+
#: gallery-plugin.php:548
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
64 |
msgid "Upload File"
|
65 |
msgstr "Nahrát soubor"
|
66 |
|
67 |
+
#: gallery-plugin.php:162
|
68 |
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)"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: gallery-plugin.php:166
|
72 |
+
#, fuzzy
|
73 |
+
msgid "Choose an image to upload:"
|
74 |
msgstr "Vyberte náhled pro nahrání:"
|
75 |
|
76 |
+
#: gallery-plugin.php:171
|
77 |
msgid "Please enable JavaScript to use the file uploader."
|
78 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
79 |
|
80 |
+
#: gallery-plugin.php:366
|
81 |
msgid "Title"
|
82 |
msgstr "Název"
|
83 |
|
84 |
+
#: gallery-plugin.php:367
|
85 |
msgid "Author"
|
86 |
msgstr "Autor"
|
87 |
|
88 |
+
#: gallery-plugin.php:368
|
89 |
msgid "Photo's"
|
90 |
msgstr "Fotky"
|
91 |
|
92 |
+
#: gallery-plugin.php:369
|
93 |
msgid "Public"
|
94 |
msgstr "Veřejné"
|
95 |
|
96 |
+
#: gallery-plugin.php:370
|
97 |
msgid "Date"
|
98 |
msgstr "Datum"
|
99 |
|
100 |
+
#: gallery-plugin.php:517
|
101 |
msgid "Activated plugins"
|
102 |
msgstr "Aktivní pluginy"
|
103 |
|
104 |
+
#: gallery-plugin.php:519
|
105 |
+
#: gallery-plugin.php:527
|
106 |
+
#: gallery-plugin.php:535
|
107 |
msgid "Read more"
|
108 |
msgstr "Další informace"
|
109 |
|
110 |
+
#: gallery-plugin.php:519
|
111 |
+
#: gallery-plugin.php:746
|
112 |
+
#: gallery-plugin.php:761
|
113 |
msgid "Settings"
|
114 |
msgstr "Nastavení"
|
115 |
|
116 |
+
#: gallery-plugin.php:525
|
117 |
msgid "Installed plugins"
|
118 |
msgstr "Nainstalované pluginy"
|
119 |
|
120 |
+
#: gallery-plugin.php:533
|
121 |
msgid "Recommended plugins"
|
122 |
msgstr "Doporučené pluginy"
|
123 |
|
124 |
+
#: gallery-plugin.php:535
|
125 |
msgid "Download"
|
126 |
msgstr "Stáhnout"
|
127 |
|
128 |
+
#: gallery-plugin.php:535
|
129 |
#, php-format
|
130 |
msgid "Install %s"
|
131 |
msgstr "Instaluj %s"
|
132 |
|
133 |
+
#: gallery-plugin.php:535
|
134 |
msgid "Install now from wordpress.org"
|
135 |
msgstr "Instaluj ihned z wordpress.org"
|
136 |
|
137 |
+
#: gallery-plugin.php:537
|
138 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
139 |
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."
|
140 |
|
141 |
+
#: gallery-plugin.php:643
|
142 |
msgid "Options saved."
|
143 |
msgstr "Nastavení uložena."
|
144 |
|
145 |
+
#: gallery-plugin.php:654
|
146 |
msgid "Gallery Options"
|
147 |
msgstr "Nastavení galerie"
|
148 |
|
149 |
+
#: gallery-plugin.php:657
|
150 |
+
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:"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: gallery-plugin.php:661
|
154 |
msgid "The size of the cover album for gallery"
|
155 |
msgstr "Rozměry náhledu alba v galerii"
|
156 |
|
157 |
+
#: gallery-plugin.php:663
|
158 |
+
#: gallery-plugin.php:671
|
159 |
msgid "Image size name"
|
160 |
msgstr "Název rozměru"
|
161 |
|
162 |
+
#: gallery-plugin.php:664
|
163 |
+
#: gallery-plugin.php:672
|
164 |
msgid "Width (in px)"
|
165 |
msgstr "Šířka (v px)"
|
166 |
|
167 |
+
#: gallery-plugin.php:665
|
168 |
+
#: gallery-plugin.php:673
|
169 |
msgid "Height (in px)"
|
170 |
msgstr "Výška (v px)"
|
171 |
|
172 |
+
#: gallery-plugin.php:669
|
173 |
msgid "Size for gallery image"
|
174 |
msgstr "Rozměry náhledu obrázku v albu"
|
175 |
|
176 |
+
#: gallery-plugin.php:677
|
177 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
178 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
179 |
|
180 |
+
#: gallery-plugin.php:680
|
181 |
msgid "Count images in row"
|
182 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
183 |
|
184 |
+
#: gallery-plugin.php:686
|
185 |
msgid "Start slideshow"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: gallery-plugin.php:692
|
189 |
msgid "Slideshow interval"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: gallery-plugin.php:698
|
193 |
+
msgid "Attachments order by"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: gallery-plugin.php:700
|
197 |
+
msgid "attachment id"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: gallery-plugin.php:701
|
201 |
+
msgid "attachment title"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: gallery-plugin.php:702
|
205 |
+
#, fuzzy
|
206 |
+
msgid "date"
|
207 |
+
msgstr "Datum"
|
208 |
+
|
209 |
+
#: gallery-plugin.php:703
|
210 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:704
|
214 |
+
msgid "random"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:708
|
218 |
+
msgid "Attachments order"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:710
|
222 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:711
|
226 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:715
|
230 |
+
msgid "Display Return link"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:721
|
234 |
+
msgid "Display Return link in shortcode"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:727
|
238 |
+
msgid "Label for Return link"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:735
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Uložit změny"
|
244 |
|
245 |
+
#: gallery-plugin.php:747
|
246 |
msgid "FAQ"
|
247 |
msgstr "FAQ "
|
248 |
|
249 |
+
#: gallery-plugin.php:748
|
250 |
msgid "Support"
|
251 |
msgstr "Podpora"
|
252 |
|
253 |
+
#: gallery-plugin.php:858
|
254 |
#: template/gallery-single-template.php:60
|
255 |
msgid "Sorry - nothing to found."
|
256 |
msgstr "Omlouvám se - nic nenalezeno."
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galerien"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Keine Galerien gefunden"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Datei hochladen"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Screenshot zum hochladen auswählen:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Titel"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Author"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Fotos"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Öffentlich"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Datum"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Aktivierte Plugins"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Mehr erfahren"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Einstellungen"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Installierte Plugins"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Benötigte Plugins"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Download"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Installiere %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Direkt von wordpress.org installieren"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Einstellungen gespeichert."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Galerie Einstellungen"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Name der Bilder"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Breite (in px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Höhe (in px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Die Größe der Bilder in der Galerie"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Anzahl Bilder in der Reihe"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Einstellungen speichern"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Support"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Leider nichts gefunden."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Galerien"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Datei hochladen"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Screenshot zum hochladen auswählen:"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Titel"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Author"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Fotos"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Öffentlich"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Datum"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktivierte Plugins"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Mehr erfahren"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Einstellungen"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Installierte Plugins"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Benötigte Plugins"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installiere %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Direkt von wordpress.org installieren"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Einstellungen gespeichert."
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Galerie Einstellungen"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Name der Bilder"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Breite (in px)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Höhe (in px)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Die Größe der Bilder in der Galerie"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Anzahl Bilder in der Reihe"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Datum"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Einstellungen speichern"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Leider nichts gefunden."
|
languages/gallery-es.mo
ADDED
Binary file
|
languages/gallery-es.po
ADDED
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: gallery\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
+
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-Language: Spanish\n"
|
15 |
+
"X-Poedit-Country: SPAIN\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
+
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
+
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
23 |
+
|
24 |
+
#: gallery-plugin.php:81
|
25 |
+
#: gallery-plugin.php:91
|
26 |
+
msgid "Galleries"
|
27 |
+
msgstr "Galerías"
|
28 |
+
|
29 |
+
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
+
msgid "Gallery"
|
32 |
+
msgstr "Galería"
|
33 |
+
|
34 |
+
#: gallery-plugin.php:83
|
35 |
+
msgid "Add New"
|
36 |
+
msgstr "Agrega Nueva"
|
37 |
+
|
38 |
+
#: gallery-plugin.php:84
|
39 |
+
msgid "Add New Gallery"
|
40 |
+
msgstr "Agregar Nueva Galería"
|
41 |
+
|
42 |
+
#: gallery-plugin.php:85
|
43 |
+
msgid "Edit Gallery"
|
44 |
+
msgstr "Editar Galería"
|
45 |
+
|
46 |
+
#: gallery-plugin.php:86
|
47 |
+
msgid "New Gallery"
|
48 |
+
msgstr "Nueva Galería"
|
49 |
+
|
50 |
+
#: gallery-plugin.php:87
|
51 |
+
msgid "View Gallery"
|
52 |
+
msgstr "Ver Galería"
|
53 |
+
|
54 |
+
#: gallery-plugin.php:88
|
55 |
+
msgid "Search Galleries"
|
56 |
+
msgstr "Buscar Galerías"
|
57 |
+
|
58 |
+
#: gallery-plugin.php:89
|
59 |
+
msgid "No Galleries found"
|
60 |
+
msgstr "No se encontraron Galerías"
|
61 |
+
|
62 |
+
#: gallery-plugin.php:146
|
63 |
+
msgid "Upload File"
|
64 |
+
msgstr "Subir Archivo"
|
65 |
+
|
66 |
+
#: gallery-plugin.php:162
|
67 |
+
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)"
|
68 |
+
msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
|
69 |
+
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
+
msgstr "Escoger una imagen para subir:"
|
74 |
+
|
75 |
+
#: gallery-plugin.php:171
|
76 |
+
msgid "Please enable JavaScript to use the file uploader."
|
77 |
+
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
78 |
+
|
79 |
+
#: gallery-plugin.php:366
|
80 |
+
msgid "Title"
|
81 |
+
msgstr "Título"
|
82 |
+
|
83 |
+
#: gallery-plugin.php:367
|
84 |
+
msgid "Author"
|
85 |
+
msgstr "Autor"
|
86 |
+
|
87 |
+
#: gallery-plugin.php:368
|
88 |
+
msgid "Photo's"
|
89 |
+
msgstr "Foto de"
|
90 |
+
|
91 |
+
#: gallery-plugin.php:369
|
92 |
+
msgid "Public"
|
93 |
+
msgstr "Pública"
|
94 |
+
|
95 |
+
#: gallery-plugin.php:370
|
96 |
+
msgid "Date"
|
97 |
+
msgstr "Fecha"
|
98 |
+
|
99 |
+
#: gallery-plugin.php:517
|
100 |
+
msgid "Activated plugins"
|
101 |
+
msgstr "Plugins Activados"
|
102 |
+
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
+
msgid "Read more"
|
107 |
+
msgstr "Leer más"
|
108 |
+
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
+
msgid "Settings"
|
113 |
+
msgstr "Configuración"
|
114 |
+
|
115 |
+
#: gallery-plugin.php:525
|
116 |
+
msgid "Installed plugins"
|
117 |
+
msgstr "Plugins instalados"
|
118 |
+
|
119 |
+
#: gallery-plugin.php:533
|
120 |
+
msgid "Recommended plugins"
|
121 |
+
msgstr "Plugins recomendados"
|
122 |
+
|
123 |
+
#: gallery-plugin.php:535
|
124 |
+
msgid "Download"
|
125 |
+
msgstr "Descargar"
|
126 |
+
|
127 |
+
#: gallery-plugin.php:535
|
128 |
+
#, php-format
|
129 |
+
msgid "Install %s"
|
130 |
+
msgstr "Instalar %s"
|
131 |
+
|
132 |
+
#: gallery-plugin.php:535
|
133 |
+
msgid "Install now from wordpress.org"
|
134 |
+
msgstr "Instalar ahora desde wordpress.org"
|
135 |
+
|
136 |
+
#: gallery-plugin.php:537
|
137 |
+
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
+
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"
|
139 |
+
|
140 |
+
#: gallery-plugin.php:643
|
141 |
+
msgid "Options saved."
|
142 |
+
msgstr "Opciones guardadas."
|
143 |
+
|
144 |
+
#: gallery-plugin.php:654
|
145 |
+
msgid "Gallery Options"
|
146 |
+
msgstr "Opciones de Galería"
|
147 |
+
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
+
msgid "The size of the cover album for gallery"
|
154 |
+
msgstr "El tamaño de la cubierta del álbum de la galería"
|
155 |
+
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
+
msgid "Image size name"
|
159 |
+
msgstr "Nombre del tamaño de la imagen"
|
160 |
+
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
+
msgid "Width (in px)"
|
164 |
+
msgstr "Ancho (en px)"
|
165 |
+
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
+
msgid "Height (in px)"
|
169 |
+
msgstr "Alto (en px)"
|
170 |
+
|
171 |
+
#: gallery-plugin.php:669
|
172 |
+
msgid "Size for gallery image"
|
173 |
+
msgstr "Tamaño de la galería de imágenes"
|
174 |
+
|
175 |
+
#: gallery-plugin.php:677
|
176 |
+
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
+
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
178 |
+
|
179 |
+
#: gallery-plugin.php:680
|
180 |
+
msgid "Count images in row"
|
181 |
+
msgstr "Contar las imágenes en la fila"
|
182 |
+
|
183 |
+
#: gallery-plugin.php:686
|
184 |
+
msgid "Start slideshow"
|
185 |
+
msgstr "Comenzar presentación diapositivas"
|
186 |
+
|
187 |
+
#: gallery-plugin.php:692
|
188 |
+
msgid "Slideshow interval"
|
189 |
+
msgstr "Intervalo de presentación diapositivas"
|
190 |
+
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Fecha"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
+
msgid "Save Changes"
|
242 |
+
msgstr "Guardar Cambios"
|
243 |
+
|
244 |
+
#: gallery-plugin.php:747
|
245 |
+
msgid "FAQ"
|
246 |
+
msgstr "FAQ "
|
247 |
+
|
248 |
+
#: gallery-plugin.php:748
|
249 |
+
msgid "Support"
|
250 |
+
msgstr "Soporte"
|
251 |
+
|
252 |
+
#: gallery-plugin.php:858
|
253 |
+
#: template/gallery-single-template.php:60
|
254 |
+
msgid "Sorry - nothing to found."
|
255 |
+
msgstr "Lo sentimos - nada que encontrar."
|
256 |
+
|
257 |
+
#: template/gallery-template.php:69
|
258 |
+
msgid "See photo »"
|
259 |
+
msgstr "Ver foto »"
|
260 |
+
|
261 |
+
#~ msgid "Size for gallery album cover"
|
262 |
+
#~ msgstr "Размер для "
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galeries"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Pas de galeries trouvées"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Envoi de fichier"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Choix de la capture d'écran à envoyer :"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Titre"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Auteur"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Photo's"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Public"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Date"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Extensions activées"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Lire plus..."
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Paramètres"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Extensions installées"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Extensions recommandées"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Télécharger"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Installation %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Installation à partir via wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Options sauvegardées"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Options de galerie"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Taille de Couverture de la galerie"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Nom de la taille"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Largeur (en pixels)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Hauteur (en pixels)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Taille de la galerie"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Nombre d'image par ligne"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Sauvegarder"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Soutien"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Désolé, rien de trouvé"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Galeries"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Envoi de fichier"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Choix de la capture d'écran à envoyer :"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Titre"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Auteur"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Photo's"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Public"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Date"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Extensions activées"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Lire plus..."
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Paramètres"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Extensions installées"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Extensions recommandées"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Télécharger"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installation %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installation à partir via wordpress.org"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Options sauvegardées"
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Options de galerie"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Taille de Couverture de la galerie"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Nom de la taille"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Largeur (en pixels)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Hauteur (en pixels)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Taille de la galerie"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Nombre d'image par ligne"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Date"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Sauvegarder"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Soutien"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Désolé, rien de trouvé"
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galériák"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galéria"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Galéria nem található"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Fájl feltöltése"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Nézőkép kiválasztása a feltöltéshez"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Cím"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Szerző"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Fotók"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Publikus"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Dátum"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Aktivált bővítmények"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Bővebben"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Beállítások"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Telepített bővítmények"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Javasolt bővítmények"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Letöltés"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Telepítés %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Telepítés a wordpress.org -ról"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Beállítások elmentve."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Galéria beállítások"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Az Album borítójának mérete a Galériában"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Kép méret neve"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Szélesség (px-ben)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Magasság (px-ben)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "A Galéria képeinek mérete"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Képek száma egy sorban"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Változások mentése"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "Gy.I.K."
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Támogatás"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Galériák"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galéria"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Fájl feltöltése"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Nézőkép kiválasztása a feltöltéshez"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Cím"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Szerző"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Fotók"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Publikus"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Dátum"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktivált bővítmények"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Bővebben"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Beállítások"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Telepített bővítmények"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Javasolt bővítmények"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Letöltés"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Telepítés %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Telepítés a wordpress.org -ról"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Beállítások elmentve."
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Galéria beállítások"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Az Album borítójának mérete a Galériában"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Kép méret neve"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Szélesség (px-ben)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Magasság (px-ben)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "A Galéria képeinek mérete"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Képek száma egy sorban"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Dátum"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Változások mentése"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "Gy.I.K."
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Támogatás"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Gallerie"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galleria"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Nessuna galleria trovata"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Carica file"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Sceli uno screenshoot da caricare:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Per favore abilita JavaScript per usare il file uploadr."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Titolo"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Autore"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Foto"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Pubblico"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Data"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Attivare plugin"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Leggi altro"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Impostazioni"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Plugin installati"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Plugin consigliati"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Download"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Installа %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Installa ora da wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Opzioni salvate."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Opzioni gallerie"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Image size name"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Larghezza in px"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Altezza in px"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Grandezza per le immagini della galleria"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Conta immagini"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Salva cambiamenti"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ "
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Supporto"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Spiacente - non è stato trovato nulla."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Gallerie"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galleria"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Carica file"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Sceli uno screenshoot da caricare:"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Per favore abilita JavaScript per usare il file uploadr."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Titolo"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Autore"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Foto"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Pubblico"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Data"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Attivare plugin"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Leggi altro"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Impostazioni"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Plugin installati"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Plugin consigliati"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installа %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installa ora da wordpress.org"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opzioni salvate."
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Opzioni gallerie"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Image size name"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Larghezza in px"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Altezza in px"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Grandezza per le immagini della galleria"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Conta immagini"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Data"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Salva cambiamenti"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ "
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Supporto"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Spiacente - non è stato trovato nulla."
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "გალერეა"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "გალერეა"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "გალერეა არ მოძებნა"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "ფაილის ატვირთვა"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "სათაური"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "ავტორი"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "ფოტო"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "საჯარო"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "თარიღი"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "გააქტიურებული დანამატები:"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "სრულად ნახვა"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "პარამეტრები"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "დაყენებული დანამატები"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "რეკომენდირებული დანამატები"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "გადმოტვირთვა"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "დაყენებულია %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "დააყენეთ wordpress.org-იდან"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "პარამეტრები შენახულია"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "გალერეის პარამეტრები"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "ზომის სახელი"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "სიგანე(პიქსელებში)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "სიმაღლე(პიქსელებში)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "ზომა გალერეის სურათისთვის"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "სურათების რაოდენობა მწკრივში"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "ცვლილებების შენახვა"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Support"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "გალერეა"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "გალერეა"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "ფაილის ატვირთვა"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "სათაური"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "ავტორი"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "ფოტო"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "საჯარო"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "თარიღი"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "გააქტიურებული დანამატები:"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "სრულად ნახვა"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "პარამეტრები"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "დაყენებული დანამატები"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "რეკომენდირებული დანამატები"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "გადმოტვირთვა"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "დაყენებულია %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "დააყენეთ wordpress.org-იდან"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "პარამეტრები შენახულია"
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "გალერეის პარამეტრები"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "ზომის სახელი"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "სიგანე(პიქსელებში)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "სიმაღლე(პიქსელებში)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "ზომა გალერეის სურათისთვის"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "სურათების რაოდენობა მწკრივში"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "თარიღი"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "ცვლილებების შენახვა"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Fotoalbum's"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Fotoalbum"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Niets gevonden"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Foto's uploaden"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Foto's uploaden: "
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Titel"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Auteur"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Foto's"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Gepubliceerd"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Datum"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Geactiveerde plugins"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Lees verder"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Instellingen"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Geinstalleerde plugins"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Aanbevolen plugins"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Download"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Install %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Installeer nu vanaf wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Opties opgeslagen"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Fotoalbum opties"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "De afmetingen voor de cover van het album"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Afbeelding grootte"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Breedte (in px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Hoogte (in px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Grootte voor album afbeelding"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Aantal afbeeldingen op een rij"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Bewaar veranderingen"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Support"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Helaas - niets gevonden"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Fotoalbum's"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Fotoalbum"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Foto's uploaden"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Foto's uploaden: "
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Titel"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Auteur"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Foto's"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Gepubliceerd"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Datum"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Geactiveerde plugins"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Lees verder"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Instellingen"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Geinstalleerde plugins"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Aanbevolen plugins"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Install %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installeer nu vanaf wordpress.org"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opties opgeslagen"
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Fotoalbum opties"
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "De afmetingen voor de cover van het album"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Afbeelding grootte"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Breedte (in px)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Hoogte (in px)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Grootte voor album afbeelding"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Aantal afbeeldingen op een rij"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Datum"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Bewaar veranderingen"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Helaas - niets gevonden"
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galerie zdjęć"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galeria zdjęć"
|
33 |
|
@@ -63,138 +63,193 @@ msgstr "Nie znaleziono żadnej galerii"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Wgraj plik"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Tytuł"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Autor"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Zdjęcie"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Publiczne"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Data"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Aktywny plugin"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Czytaj dalej"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Ustawienia"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Zainstalowane pluginy"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Rekomendowane pluginy"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Pobierz"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Zainstaluj %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Zainstaluj teraz z wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Opcje zostały zapisane."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Opcje galerii."
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Rozmiar okładki albumu"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Nazwa rozmiaru obrazka"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Szerokość (w px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Wysokość (w px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Rozmiar dla obrazka w galerii"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Ilość obrazków w rzędzie"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Zapisz zmiany"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ "
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Wsparcie"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Przykro nam - nic nie znaleziono."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Galerie zdjęć"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galeria zdjęć"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Wgraj plik"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
#, fuzzy
|
72 |
+
msgid "Choose an image to upload:"
|
73 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
74 |
|
75 |
+
#: gallery-plugin.php:171
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
78 |
|
79 |
+
#: gallery-plugin.php:366
|
80 |
msgid "Title"
|
81 |
msgstr "Tytuł"
|
82 |
|
83 |
+
#: gallery-plugin.php:367
|
84 |
msgid "Author"
|
85 |
msgstr "Autor"
|
86 |
|
87 |
+
#: gallery-plugin.php:368
|
88 |
msgid "Photo's"
|
89 |
msgstr "Zdjęcie"
|
90 |
|
91 |
+
#: gallery-plugin.php:369
|
92 |
msgid "Public"
|
93 |
msgstr "Publiczne"
|
94 |
|
95 |
+
#: gallery-plugin.php:370
|
96 |
msgid "Date"
|
97 |
msgstr "Data"
|
98 |
|
99 |
+
#: gallery-plugin.php:517
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktywny plugin"
|
102 |
|
103 |
+
#: gallery-plugin.php:519
|
104 |
+
#: gallery-plugin.php:527
|
105 |
+
#: gallery-plugin.php:535
|
106 |
msgid "Read more"
|
107 |
msgstr "Czytaj dalej"
|
108 |
|
109 |
+
#: gallery-plugin.php:519
|
110 |
+
#: gallery-plugin.php:746
|
111 |
+
#: gallery-plugin.php:761
|
112 |
msgid "Settings"
|
113 |
msgstr "Ustawienia"
|
114 |
|
115 |
+
#: gallery-plugin.php:525
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Zainstalowane pluginy"
|
118 |
|
119 |
+
#: gallery-plugin.php:533
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Rekomendowane pluginy"
|
122 |
|
123 |
+
#: gallery-plugin.php:535
|
124 |
msgid "Download"
|
125 |
msgstr "Pobierz"
|
126 |
|
127 |
+
#: gallery-plugin.php:535
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Zainstaluj %s"
|
131 |
|
132 |
+
#: gallery-plugin.php:535
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Zainstaluj teraz z wordpress.org"
|
135 |
|
136 |
+
#: gallery-plugin.php:537
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
139 |
|
140 |
+
#: gallery-plugin.php:643
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opcje zostały zapisane."
|
143 |
|
144 |
+
#: gallery-plugin.php:654
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Opcje galerii."
|
147 |
|
148 |
+
#: gallery-plugin.php:657
|
149 |
+
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:"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: gallery-plugin.php:661
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Rozmiar okładki albumu"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
157 |
+
#: gallery-plugin.php:671
|
158 |
msgid "Image size name"
|
159 |
msgstr "Nazwa rozmiaru obrazka"
|
160 |
|
161 |
+
#: gallery-plugin.php:664
|
162 |
+
#: gallery-plugin.php:672
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Szerokość (w px)"
|
165 |
|
166 |
+
#: gallery-plugin.php:665
|
167 |
+
#: gallery-plugin.php:673
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Wysokość (w px)"
|
170 |
|
171 |
+
#: gallery-plugin.php:669
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Rozmiar dla obrazka w galerii"
|
174 |
|
175 |
+
#: gallery-plugin.php:677
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
178 |
|
179 |
+
#: gallery-plugin.php:680
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Ilość obrazków w rzędzie"
|
182 |
|
183 |
+
#: gallery-plugin.php:686
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: gallery-plugin.php:692
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: gallery-plugin.php:698
|
192 |
+
msgid "Attachments order by"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:700
|
196 |
+
msgid "attachment id"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:701
|
200 |
+
msgid "attachment title"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:702
|
204 |
+
#, fuzzy
|
205 |
+
msgid "date"
|
206 |
+
msgstr "Data"
|
207 |
+
|
208 |
+
#: gallery-plugin.php:703
|
209 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:704
|
213 |
+
msgid "random"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: gallery-plugin.php:708
|
217 |
+
msgid "Attachments order"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:710
|
221 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:711
|
225 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:715
|
229 |
+
msgid "Display Return link"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:721
|
233 |
+
msgid "Display Return link in shortcode"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "Label for Return link"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:735
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Zapisz zmiany"
|
243 |
|
244 |
+
#: gallery-plugin.php:747
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ "
|
247 |
|
248 |
+
#: gallery-plugin.php:748
|
249 |
msgid "Support"
|
250 |
msgstr "Wsparcie"
|
251 |
|
252 |
+
#: gallery-plugin.php:858
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Przykro nam - nic nie znaleziono."
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Галереи"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
@@ -63,138 +63,191 @@ msgstr "Ни одной галереи не найдено"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Загрузить файлы"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
msgid "Choose
|
72 |
-
msgstr "Выбрать файлы для загрузки:
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Название"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Автор"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Опубликование"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Дата"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активированные плагины"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Подробнее..."
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Настройки"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Установленные плагины"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Рекомендованные к установке плагины"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Скачать"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установлено %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установить с wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Опции сохранены"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Настройки Галереи"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Размер изображения для обложки альбома галереи"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Название размера изображение"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Ширина (в px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Высота (в px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Размер изображений Галереи"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Количество изображений в строке"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
-
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Поддержка"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Извините, ничего не найдено."
|
@@ -203,5 +256,8 @@ msgstr "Извините, ничего не найдено."
|
|
203 |
msgid "See photo »"
|
204 |
msgstr "Смотреть фотографии »"
|
205 |
|
|
|
|
|
|
|
206 |
#~ msgid "Size for gallery album cover"
|
207 |
#~ msgstr "Размер для "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Галереи"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Загрузить файлы"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
msgid "Choose an image to upload:"
|
72 |
+
msgstr "Выбрать файлы для загрузки:"
|
73 |
|
74 |
+
#: gallery-plugin.php:171
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
77 |
|
78 |
+
#: gallery-plugin.php:366
|
79 |
msgid "Title"
|
80 |
msgstr "Название"
|
81 |
|
82 |
+
#: gallery-plugin.php:367
|
83 |
msgid "Author"
|
84 |
msgstr "Автор"
|
85 |
|
86 |
+
#: gallery-plugin.php:368
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото"
|
89 |
|
90 |
+
#: gallery-plugin.php:369
|
91 |
msgid "Public"
|
92 |
msgstr "Опубликование"
|
93 |
|
94 |
+
#: gallery-plugin.php:370
|
95 |
msgid "Date"
|
96 |
msgstr "Дата"
|
97 |
|
98 |
+
#: gallery-plugin.php:517
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активированные плагины"
|
101 |
|
102 |
+
#: gallery-plugin.php:519
|
103 |
+
#: gallery-plugin.php:527
|
104 |
+
#: gallery-plugin.php:535
|
105 |
msgid "Read more"
|
106 |
msgstr "Подробнее..."
|
107 |
|
108 |
+
#: gallery-plugin.php:519
|
109 |
+
#: gallery-plugin.php:746
|
110 |
+
#: gallery-plugin.php:761
|
111 |
msgid "Settings"
|
112 |
msgstr "Настройки"
|
113 |
|
114 |
+
#: gallery-plugin.php:525
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Установленные плагины"
|
117 |
|
118 |
+
#: gallery-plugin.php:533
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Рекомендованные к установке плагины"
|
121 |
|
122 |
+
#: gallery-plugin.php:535
|
123 |
msgid "Download"
|
124 |
msgstr "Скачать"
|
125 |
|
126 |
+
#: gallery-plugin.php:535
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установлено %s"
|
130 |
|
131 |
+
#: gallery-plugin.php:535
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установить с wordpress.org"
|
134 |
|
135 |
+
#: gallery-plugin.php:537
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
138 |
|
139 |
+
#: gallery-plugin.php:643
|
140 |
msgid "Options saved."
|
141 |
msgstr "Опции сохранены"
|
142 |
|
143 |
+
#: gallery-plugin.php:654
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Настройки Галереи"
|
146 |
|
147 |
+
#: gallery-plugin.php:657
|
148 |
+
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:"
|
149 |
+
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
150 |
+
|
151 |
+
#: gallery-plugin.php:661
|
152 |
msgid "The size of the cover album for gallery"
|
153 |
msgstr "Размер изображения для обложки альбома галереи"
|
154 |
|
155 |
+
#: gallery-plugin.php:663
|
156 |
+
#: gallery-plugin.php:671
|
157 |
msgid "Image size name"
|
158 |
msgstr "Название размера изображение"
|
159 |
|
160 |
+
#: gallery-plugin.php:664
|
161 |
+
#: gallery-plugin.php:672
|
162 |
msgid "Width (in px)"
|
163 |
msgstr "Ширина (в px)"
|
164 |
|
165 |
+
#: gallery-plugin.php:665
|
166 |
+
#: gallery-plugin.php:673
|
167 |
msgid "Height (in px)"
|
168 |
msgstr "Высота (в px)"
|
169 |
|
170 |
+
#: gallery-plugin.php:669
|
171 |
msgid "Size for gallery image"
|
172 |
msgstr "Размер изображений Галереи"
|
173 |
|
174 |
+
#: gallery-plugin.php:677
|
175 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
176 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
177 |
|
178 |
+
#: gallery-plugin.php:680
|
179 |
msgid "Count images in row"
|
180 |
msgstr "Количество изображений в строке"
|
181 |
|
182 |
+
#: gallery-plugin.php:686
|
183 |
msgid "Start slideshow"
|
184 |
+
msgstr "Начать слайдшоу"
|
185 |
|
186 |
+
#: gallery-plugin.php:692
|
187 |
msgid "Slideshow interval"
|
188 |
+
msgstr "Интервал времени при показе слайдшоу"
|
189 |
+
|
190 |
+
#: gallery-plugin.php:698
|
191 |
+
msgid "Attachments order by"
|
192 |
+
msgstr "Изображения сортируются по"
|
193 |
+
|
194 |
+
#: gallery-plugin.php:700
|
195 |
+
msgid "attachment id"
|
196 |
+
msgstr "id изображения"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:701
|
199 |
+
msgid "attachment title"
|
200 |
+
msgstr "названию изображения"
|
201 |
+
|
202 |
+
#: gallery-plugin.php:702
|
203 |
+
msgid "date"
|
204 |
+
msgstr "дате"
|
205 |
+
|
206 |
+
#: gallery-plugin.php:703
|
207 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
208 |
+
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
209 |
+
|
210 |
+
#: gallery-plugin.php:704
|
211 |
+
msgid "random"
|
212 |
+
msgstr "произвольно"
|
213 |
+
|
214 |
+
#: gallery-plugin.php:708
|
215 |
+
msgid "Attachments order"
|
216 |
+
msgstr "Сортировать изображения"
|
217 |
+
|
218 |
+
#: gallery-plugin.php:710
|
219 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:711
|
223 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:715
|
227 |
+
msgid "Display Return link"
|
228 |
+
msgstr "Отображать ссылку Вернуться"
|
229 |
+
|
230 |
+
#: gallery-plugin.php:721
|
231 |
+
msgid "Display Return link in shortcode"
|
232 |
+
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
233 |
+
|
234 |
+
#: gallery-plugin.php:727
|
235 |
+
msgid "Label for Return link"
|
236 |
+
msgstr "Текст для ссылки Вернуться"
|
237 |
+
|
238 |
+
#: gallery-plugin.php:735
|
239 |
msgid "Save Changes"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:747
|
243 |
msgid "FAQ"
|
244 |
msgstr "FAQ"
|
245 |
|
246 |
+
#: gallery-plugin.php:748
|
247 |
msgid "Support"
|
248 |
msgstr "Поддержка"
|
249 |
|
250 |
+
#: gallery-plugin.php:858
|
251 |
#: template/gallery-single-template.php:60
|
252 |
msgid "Sorry - nothing to found."
|
253 |
msgstr "Извините, ничего не найдено."
|
256 |
msgid "See photo »"
|
257 |
msgstr "Смотреть фотографии »"
|
258 |
|
259 |
+
#~ msgid "Random order"
|
260 |
+
#~ msgstr "Произвольная сортировка"
|
261 |
+
|
262 |
#~ msgid "Size for gallery album cover"
|
263 |
#~ msgstr "Размер для "
|
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-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Галереi"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
@@ -63,138 +63,191 @@ msgstr "Галереї, не знайдено"
|
|
63 |
msgid "Upload File"
|
64 |
msgstr "Завантажити файл"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
msgid "Choose
|
72 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
79 |
msgid "Title"
|
80 |
msgstr "Назва"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Автор "
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото "
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Громадськості"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Дата "
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активоване плагіни"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Читати далі"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Параметри"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Встановлених модулів"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Плагіни Рекомендовані"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Завантажити"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установка %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установити зараз від wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Параметри зберігаються."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Параметри галереї"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "Розмір обкладинки альбому для галереї"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Ім'я розмір зображення"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Ширина (в px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Висота (в px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Розмір зображення галерея"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Кількість зображень у рядку"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Зберегти зміни"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ "
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Підтримка"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Вибачте - нічого не знайдено."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-25 18:36+0200\n"
|
6 |
+
"PO-Revision-Date: 2012-05-25 18:36+0200\n"
|
7 |
"Last-Translator: BWS <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:57
|
20 |
+
#: gallery-plugin.php:647
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
27 |
msgstr "Галереi"
|
28 |
|
29 |
#: gallery-plugin.php:82
|
30 |
+
#: gallery-plugin.php:548
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
63 |
msgid "Upload File"
|
64 |
msgstr "Завантажити файл"
|
65 |
|
66 |
+
#: gallery-plugin.php:162
|
67 |
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)"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: gallery-plugin.php:166
|
71 |
+
msgid "Choose an image to upload:"
|
72 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
73 |
|
74 |
+
#: gallery-plugin.php:171
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
77 |
|
78 |
+
#: gallery-plugin.php:366
|
79 |
msgid "Title"
|
80 |
msgstr "Назва"
|
81 |
|
82 |
+
#: gallery-plugin.php:367
|
83 |
msgid "Author"
|
84 |
msgstr "Автор "
|
85 |
|
86 |
+
#: gallery-plugin.php:368
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото "
|
89 |
|
90 |
+
#: gallery-plugin.php:369
|
91 |
msgid "Public"
|
92 |
msgstr "Громадськості"
|
93 |
|
94 |
+
#: gallery-plugin.php:370
|
95 |
msgid "Date"
|
96 |
msgstr "Дата "
|
97 |
|
98 |
+
#: gallery-plugin.php:517
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активоване плагіни"
|
101 |
|
102 |
+
#: gallery-plugin.php:519
|
103 |
+
#: gallery-plugin.php:527
|
104 |
+
#: gallery-plugin.php:535
|
105 |
msgid "Read more"
|
106 |
msgstr "Читати далі"
|
107 |
|
108 |
+
#: gallery-plugin.php:519
|
109 |
+
#: gallery-plugin.php:746
|
110 |
+
#: gallery-plugin.php:761
|
111 |
msgid "Settings"
|
112 |
msgstr "Параметри"
|
113 |
|
114 |
+
#: gallery-plugin.php:525
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Встановлених модулів"
|
117 |
|
118 |
+
#: gallery-plugin.php:533
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Плагіни Рекомендовані"
|
121 |
|
122 |
+
#: gallery-plugin.php:535
|
123 |
msgid "Download"
|
124 |
msgstr "Завантажити"
|
125 |
|
126 |
+
#: gallery-plugin.php:535
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установка %s"
|
130 |
|
131 |
+
#: gallery-plugin.php:535
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установити зараз від wordpress.org"
|
134 |
|
135 |
+
#: gallery-plugin.php:537
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
138 |
|
139 |
+
#: gallery-plugin.php:643
|
140 |
msgid "Options saved."
|
141 |
msgstr "Параметри зберігаються."
|
142 |
|
143 |
+
#: gallery-plugin.php:654
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Параметри галереї"
|
146 |
|
147 |
+
#: gallery-plugin.php:657
|
148 |
+
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:"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: gallery-plugin.php:661
|
152 |
msgid "The size of the cover album for gallery"
|
153 |
msgstr "Розмір обкладинки альбому для галереї"
|
154 |
|
155 |
+
#: gallery-plugin.php:663
|
156 |
+
#: gallery-plugin.php:671
|
157 |
msgid "Image size name"
|
158 |
msgstr "Ім'я розмір зображення"
|
159 |
|
160 |
+
#: gallery-plugin.php:664
|
161 |
+
#: gallery-plugin.php:672
|
162 |
msgid "Width (in px)"
|
163 |
msgstr "Ширина (в px)"
|
164 |
|
165 |
+
#: gallery-plugin.php:665
|
166 |
+
#: gallery-plugin.php:673
|
167 |
msgid "Height (in px)"
|
168 |
msgstr "Висота (в px)"
|
169 |
|
170 |
+
#: gallery-plugin.php:669
|
171 |
msgid "Size for gallery image"
|
172 |
msgstr "Розмір зображення галерея"
|
173 |
|
174 |
+
#: gallery-plugin.php:677
|
175 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
176 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
177 |
|
178 |
+
#: gallery-plugin.php:680
|
179 |
msgid "Count images in row"
|
180 |
msgstr "Кількість зображень у рядку"
|
181 |
|
182 |
+
#: gallery-plugin.php:686
|
183 |
msgid "Start slideshow"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: gallery-plugin.php:692
|
187 |
msgid "Slideshow interval"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: gallery-plugin.php:698
|
191 |
+
msgid "Attachments order by"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: gallery-plugin.php:700
|
195 |
+
msgid "attachment id"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: gallery-plugin.php:701
|
199 |
+
msgid "attachment title"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: gallery-plugin.php:702
|
203 |
+
msgid "date"
|
204 |
+
msgstr "Дата"
|
205 |
+
|
206 |
+
#: gallery-plugin.php:703
|
207 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: gallery-plugin.php:704
|
211 |
+
msgid "random"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:708
|
215 |
+
msgid "Attachments order"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:710
|
219 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:711
|
223 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:715
|
227 |
+
msgid "Display Return link"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:721
|
231 |
+
msgid "Display Return link in shortcode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:727
|
235 |
+
msgid "Label for Return link"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:735
|
239 |
msgid "Save Changes"
|
240 |
msgstr "Зберегти зміни"
|
241 |
|
242 |
+
#: gallery-plugin.php:747
|
243 |
msgid "FAQ"
|
244 |
msgstr "FAQ "
|
245 |
|
246 |
+
#: gallery-plugin.php:748
|
247 |
msgid "Support"
|
248 |
msgstr "Підтримка"
|
249 |
|
250 |
+
#: gallery-plugin.php:858
|
251 |
#: template/gallery-single-template.php:60
|
252 |
msgid "Sorry - nothing to found."
|
253 |
msgstr "Вибачте - нічого не знайдено."
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
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.3.
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
@@ -21,6 +21,8 @@ This plugin makes it possible to implement as many galleries as you want into yo
|
|
21 |
* Description: Add description to each album.
|
22 |
* Actions: Possibility to set featured image as cover of the album.
|
23 |
* Actions: Possibility to load any number of photos to each album in the gallery.
|
|
|
|
|
24 |
* Caption: Add caption to each photo in the album.
|
25 |
* Display: You can select dimensions of the thumbnails for the cover of the album as well as for photos in the album.
|
26 |
* Display: A possibility to select a number of the photos for the separate page of album of the gallery which will be placed in one line.
|
@@ -37,6 +39,7 @@ This plugin makes it possible to implement as many galleries as you want into yo
|
|
37 |
* Italian (it_IT) (thanks to Stefano Ferruggiara)
|
38 |
* Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
|
39 |
* Russian (ru_RU)
|
|
|
40 |
* Ukrainian (uk_UA)(thanks to Ted Mosby)
|
41 |
|
42 |
If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
@@ -76,6 +79,27 @@ Dear users, if you have any questions or propositions regarding our plugins (cur
|
|
76 |
|
77 |
The multiple files upload is supported by all modern browsers except Internet Explorer.
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
== Screenshots ==
|
80 |
|
81 |
1. Gallery Admin page.
|
@@ -86,6 +110,12 @@ The multiple files upload is supported by all modern browsers except Internet Ex
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
= V3.04 - 27.04.2012 =
|
90 |
* NEW : Added slideshow for lightbox on single gallery page.
|
91 |
|
@@ -152,6 +182,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
|
|
152 |
|
153 |
== Upgrade Notice ==
|
154 |
|
|
|
|
|
|
|
155 |
= V3.04 =
|
156 |
Added slideshow for lightbox on single gallery page.
|
157 |
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
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.3.2
|
7 |
+
Stable tag: 3.05
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
21 |
* Description: Add description to each album.
|
22 |
* Actions: Possibility to set featured image as cover of the album.
|
23 |
* Actions: Possibility to load any number of photos to each album in the gallery.
|
24 |
+
* Actions: Possibility to add Single Gallery to your page or post with shortcode.
|
25 |
+
* Actions: Option to make the sorting settings of attachments in the admin panel.
|
26 |
* Caption: Add caption to each photo in the album.
|
27 |
* Display: You can select dimensions of the thumbnails for the cover of the album as well as for photos in the album.
|
28 |
* Display: A possibility to select a number of the photos for the separate page of album of the gallery which will be placed in one line.
|
39 |
* Italian (it_IT) (thanks to Stefano Ferruggiara)
|
40 |
* Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
|
41 |
* Russian (ru_RU)
|
42 |
+
* Spanish (es) (thanks to Victor Garcia)
|
43 |
* Ukrainian (uk_UA)(thanks to Ted Mosby)
|
44 |
|
45 |
If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
79 |
|
80 |
The multiple files upload is supported by all modern browsers except Internet Explorer.
|
81 |
|
82 |
+
= I'm getting the following error: Fatal error: Call to undefined function get_post_thumbnail_id(). What am I to do? ? =
|
83 |
+
|
84 |
+
This error says that your theme doesn't support thumbnail option, in order to add this option please find 'functions.php' file in your theme and add the following strings to this file:
|
85 |
+
|
86 |
+
`add_action( 'after_setup_theme', 'theme_setup' );
|
87 |
+
|
88 |
+
function theme_setup() {
|
89 |
+
add_theme_support( 'post-thumbnails' );
|
90 |
+
}`
|
91 |
+
|
92 |
+
After that your theme will support thumbnail option and the error won't display again.
|
93 |
+
|
94 |
+
= How to change image order on single gallery page? =
|
95 |
+
|
96 |
+
Please open the menu "Galleries" and choose random gallery from the list. You should be redirected to the gallery editing page.
|
97 |
+
There will be one or several media upload icons between the title and content adding blocks. Please choose any icon.
|
98 |
+
After that you'll see a popup window with three or four tabs.
|
99 |
+
Choose gallery tab and there'll be displayed attached files which are related to this gallery.
|
100 |
+
You can change their order using drag'n'drop method.
|
101 |
+
Just setup a necessary order and click 'Save' button.
|
102 |
+
|
103 |
== Screenshots ==
|
104 |
|
105 |
1. Gallery Admin page.
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= V3.05 - 25.05.2012 =
|
114 |
+
* NEW : Added shortcode for display Single Gallery on your page or post.
|
115 |
+
* NEW : Added attachment order.
|
116 |
+
* NEW : Added 'Return to all albums' link for Single Gallery page.
|
117 |
+
* NEW : Spanish language file are added to the plugin.
|
118 |
+
|
119 |
= V3.04 - 27.04.2012 =
|
120 |
* NEW : Added slideshow for lightbox on single gallery page.
|
121 |
|
182 |
|
183 |
== Upgrade Notice ==
|
184 |
|
185 |
+
= V3.05 =
|
186 |
+
Added shortcode for display Single Gallery on your page or post. Added attachment order. Added 'Return to all albums' link for Single Gallery page. Spanish language file are added to the plugin.
|
187 |
+
|
188 |
= V3.04 =
|
189 |
Added slideshow for lightbox on single gallery page.
|
190 |
|
screenshot-3.jpg
CHANGED
Binary file
|
template/gallery-single-template.php
CHANGED
@@ -20,8 +20,8 @@
|
|
20 |
"what_to_show" => "posts",
|
21 |
"post_status" => "inherit",
|
22 |
"post_type" => "attachment",
|
23 |
-
"orderby" =>
|
24 |
-
"order" =>
|
25 |
"post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
|
26 |
"post_parent" => $post->ID
|
27 |
));
|
@@ -60,6 +60,12 @@
|
|
60 |
<p class="not_found"><?php _e('Sorry - nothing to found.', 'gallery'); ?></p>
|
61 |
</div>
|
62 |
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
</div>
|
64 |
</div>
|
65 |
<?php get_sidebar(); ?>
|
20 |
"what_to_show" => "posts",
|
21 |
"post_status" => "inherit",
|
22 |
"post_type" => "attachment",
|
23 |
+
"orderby" => $gllr_options['order_by'],
|
24 |
+
"order" => $gllr_options['order'],
|
25 |
"post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png",
|
26 |
"post_parent" => $post->ID
|
27 |
));
|
60 |
<p class="not_found"><?php _e('Sorry - nothing to found.', 'gallery'); ?></p>
|
61 |
</div>
|
62 |
<?php endif; ?>
|
63 |
+
<?php if( $gllr_options['return_link'] == 1 ) {
|
64 |
+
global $wpdb;
|
65 |
+
$parent = $wpdb->get_var("SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id");
|
66 |
+
?>
|
67 |
+
<div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div>
|
68 |
+
<?php } ?>
|
69 |
</div>
|
70 |
</div>
|
71 |
<?php get_sidebar(); ?>
|