Version Description
- 18.07.2013 =
- NEW : Added an ability to view and send system information by mail.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.9.3 |
Comparing to | |
See all releases |
Code changes from version 3.9.2 to 3.9.3
- css/stylesheet.css +16 -0
- gallery-plugin.php +226 -6
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +265 -96
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +265 -96
- languages/gallery-es_ES.mo +0 -0
- languages/gallery-es_ES.po +265 -96
- languages/gallery-fa_IR.mo +0 -0
- languages/gallery-fa_IR.po +264 -95
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +266 -98
- languages/gallery-he_IL.mo +0 -0
- languages/gallery-he_IL.po +269 -96
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +265 -96
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +265 -96
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +265 -96
- languages/gallery-lt_LT.mo +0 -0
- languages/gallery-lt_LT.po +265 -96
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +265 -96
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +265 -96
- languages/gallery-pt_BR.mo +0 -0
- languages/gallery-pt_BR.po +269 -96
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +261 -98
- languages/gallery-sr_RS.mo +0 -0
- languages/gallery-sr_RS.po +265 -96
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +265 -96
- languages/gallery-zh_CN.mo +0 -0
- languages/gallery-zh_CN.po +266 -98
- readme.txt +7 -1
css/stylesheet.css
CHANGED
@@ -34,6 +34,22 @@
|
|
34 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
35 |
display:none;
|
36 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
ul.gallery {
|
39 |
list-style: none outside none;
|
34 |
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
35 |
display:none;
|
36 |
}
|
37 |
+
.bws_system_info_mata_box {
|
38 |
+
width: 850px;
|
39 |
+
}
|
40 |
+
.bws_system_info {
|
41 |
+
float: left;
|
42 |
+
margin-right: 10px;
|
43 |
+
width: 400px;
|
44 |
+
}
|
45 |
+
.bws_system_info th {
|
46 |
+
padding: 10px 0;
|
47 |
+
text-align: left;
|
48 |
+
width: 50%;
|
49 |
+
}
|
50 |
+
.bws_system_info tbody td {
|
51 |
+
border-bottom: 1px solid #DFDFDF;
|
52 |
+
}
|
53 |
|
54 |
ul.gallery {
|
55 |
list-style: none outside none;
|
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.9.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -579,9 +579,12 @@ if( ! function_exists( 'gllr_page_css_class' ) ) {
|
|
579 |
|
580 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
581 |
function bws_add_menu_render() {
|
582 |
-
global $title;
|
583 |
$active_plugins = get_option('active_plugins');
|
584 |
$all_plugins = get_plugins();
|
|
|
|
|
|
|
585 |
|
586 |
$array_activate = array();
|
587 |
$array_install = array();
|
@@ -625,8 +628,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
625 |
$array_recomend_pro = array();
|
626 |
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
627 |
$array_plugins_pro = array(
|
628 |
-
array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro
|
629 |
-
array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro
|
630 |
);
|
631 |
foreach ( $array_plugins_pro as $plugins ) {
|
632 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
@@ -646,10 +649,156 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
646 |
$array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
|
647 |
$count_recomend_pro++;
|
648 |
}
|
649 |
-
}
|
650 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
652 |
<h2><?php echo $title;?></h2>
|
|
|
|
|
653 |
<h3 style="color: blue;"><?php _e( 'Pro plugins', 'gallery' ); ?></h3>
|
654 |
<?php if( 0 < $count_activate_pro ) { ?>
|
655 |
<div style="padding-left:15px;">
|
@@ -703,6 +852,67 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
703 |
<?php } ?>
|
704 |
<br />
|
705 |
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'gallery' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
706 |
</div>
|
707 |
<?php }
|
708 |
}
|
@@ -1077,6 +1287,16 @@ if ( ! function_exists ( 'gllr_add_admin_script' ) ) {
|
|
1077 |
<script type="text/javascript">
|
1078 |
(function($) {
|
1079 |
$(document).ready(function(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1080 |
$('.gllr_image_block img').css('cursor', 'all-scroll' );
|
1081 |
$('.gllr_order_message').removeClass('hidden');
|
1082 |
var d=false;
|
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.9.3
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
579 |
|
580 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
581 |
function bws_add_menu_render() {
|
582 |
+
global $wpdb, $wp_version, $title;
|
583 |
$active_plugins = get_option('active_plugins');
|
584 |
$all_plugins = get_plugins();
|
585 |
+
$error = '';
|
586 |
+
$message = '';
|
587 |
+
$bwsmn_form_email = '';
|
588 |
|
589 |
$array_activate = array();
|
590 |
$array_install = array();
|
628 |
$array_recomend_pro = array();
|
629 |
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
630 |
$array_plugins_pro = array(
|
631 |
+
array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0#purchase', 'admin.php?page=gallery-plugin-pro.php' ),
|
632 |
+
array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71#purchase', 'admin.php?page=contact_form_pro.php' )
|
633 |
);
|
634 |
foreach ( $array_plugins_pro as $plugins ) {
|
635 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
649 |
$array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
|
650 |
$count_recomend_pro++;
|
651 |
}
|
652 |
+
}
|
653 |
+
$sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
|
654 |
+
$mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
|
655 |
+
if ( is_array( $mysql_info) )
|
656 |
+
$sql_mode = $mysql_info[0]->Value;
|
657 |
+
if ( empty( $sql_mode ) )
|
658 |
+
$sql_mode = __( 'Not set', 'gallery' );
|
659 |
+
if ( ini_get( 'safe_mode' ) )
|
660 |
+
$safe_mode = __( 'On', 'gallery' );
|
661 |
+
else
|
662 |
+
$safe_mode = __( 'Off', 'gallery' );
|
663 |
+
if ( ini_get( 'allow_url_fopen' ) )
|
664 |
+
$allow_url_fopen = __( 'On', 'gallery' );
|
665 |
+
else
|
666 |
+
$allow_url_fopen = __( 'Off', 'gallery' );
|
667 |
+
if ( ini_get( 'upload_max_filesize' ) )
|
668 |
+
$upload_max_filesize = ini_get( 'upload_max_filesize' );
|
669 |
+
else
|
670 |
+
$upload_max_filesize = __( 'N/A', 'gallery' );
|
671 |
+
if ( ini_get('post_max_size') )
|
672 |
+
$post_max_size = ini_get('post_max_size');
|
673 |
+
else
|
674 |
+
$post_max_size = __( 'N/A', 'gallery' );
|
675 |
+
if ( ini_get( 'max_execution_time' ) )
|
676 |
+
$max_execution_time = ini_get( 'max_execution_time' );
|
677 |
+
else
|
678 |
+
$max_execution_time = __( 'N/A', 'gallery' );
|
679 |
+
if ( ini_get( 'memory_limit' ) )
|
680 |
+
$memory_limit = ini_get( 'memory_limit' );
|
681 |
+
else
|
682 |
+
$memory_limit = __( 'N/A', 'gallery' );
|
683 |
+
if ( function_exists( 'memory_get_usage' ) )
|
684 |
+
$memory_usage = round( memory_get_usage() / 1024 / 1024, 2 ) . __(' Mb', 'gallery' );
|
685 |
+
else
|
686 |
+
$memory_usage = __( 'N/A', 'gallery' );
|
687 |
+
if ( is_callable( 'exif_read_data' ) )
|
688 |
+
$exif_read_data = __( 'Yes', 'gallery' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" ;
|
689 |
+
else
|
690 |
+
$exif_read_data = __( 'No', 'gallery' );
|
691 |
+
if ( is_callable( 'iptcparse' ) )
|
692 |
+
$iptcparse = __( 'Yes', 'gallery' );
|
693 |
+
else
|
694 |
+
$iptcparse = __( 'No', 'gallery' );
|
695 |
+
if ( is_callable( 'xml_parser_create' ) )
|
696 |
+
$xml_parser_create = __( 'Yes', 'gallery' );
|
697 |
+
else
|
698 |
+
$xml_parser_create = __( 'No', 'gallery' );
|
699 |
+
|
700 |
+
if ( function_exists( 'wp_get_theme' ) )
|
701 |
+
$theme = wp_get_theme();
|
702 |
+
else
|
703 |
+
$theme = get_theme( get_current_theme() );
|
704 |
+
|
705 |
+
if ( function_exists( 'is_multisite' ) ) {
|
706 |
+
if ( is_multisite() ) {
|
707 |
+
$multisite = __( 'Yes', 'gallery' );
|
708 |
+
} else {
|
709 |
+
$multisite = __( 'No', 'gallery' );
|
710 |
+
}
|
711 |
+
} else
|
712 |
+
$multisite = __( 'N/A', 'gallery' );
|
713 |
+
|
714 |
+
$site_url = get_option( 'siteurl' );
|
715 |
+
$home_url = get_option( 'home' );
|
716 |
+
$db_version = get_option( 'db_version' );
|
717 |
+
$system_info = array(
|
718 |
+
'system_info' => '',
|
719 |
+
'active_plugins' => '',
|
720 |
+
'inactive_plugins' => ''
|
721 |
+
);
|
722 |
+
$system_info['system_info'] = array(
|
723 |
+
__( 'Operating System', 'gallery' ) => PHP_OS,
|
724 |
+
__( 'Server', 'gallery' ) => $_SERVER["SERVER_SOFTWARE"],
|
725 |
+
__( 'Memory usage', 'gallery' ) => $memory_usage,
|
726 |
+
__( 'MYSQL Version', 'gallery' ) => $sql_version,
|
727 |
+
__( 'SQL Mode', 'gallery' ) => $sql_mode,
|
728 |
+
__( 'PHP Version', 'gallery' ) => PHP_VERSION,
|
729 |
+
__( 'PHP Safe Mode', 'gallery' ) => $safe_mode,
|
730 |
+
__( 'PHP Allow URL fopen', 'gallery' ) => $allow_url_fopen,
|
731 |
+
__( 'PHP Memory Limit', 'gallery' ) => $memory_limit,
|
732 |
+
__( 'PHP Max Upload Size', 'gallery' ) => $upload_max_filesize,
|
733 |
+
__( 'PHP Max Post Size', 'gallery' ) => $post_max_size,
|
734 |
+
__( 'PHP Max Script Execute Time', 'gallery' ) => $max_execution_time,
|
735 |
+
__( 'PHP Exif support', 'gallery' ) => $exif_read_data,
|
736 |
+
__( 'PHP IPTC support', 'gallery' ) => $iptcparse,
|
737 |
+
__( 'PHP XML support', 'gallery' ) => $xml_parser_create,
|
738 |
+
__( 'Site URL', 'gallery' ) => $site_url,
|
739 |
+
__( 'Home URL', 'gallery' ) => $home_url,
|
740 |
+
__( 'WordPress Version', 'gallery' ) => $wp_version,
|
741 |
+
__( 'WordPress DB Version', 'gallery' ) => $db_version,
|
742 |
+
__( 'Multisite', 'gallery' ) => $multisite,
|
743 |
+
__( 'Active Theme', 'gallery' ) => $theme['Name'].' '.$theme['Version']
|
744 |
+
);
|
745 |
+
foreach ( $all_plugins as $path => $plugin ) {
|
746 |
+
if ( is_plugin_active( $path ) ) {
|
747 |
+
$system_info['active_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
748 |
+
} else {
|
749 |
+
$system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
750 |
+
}
|
751 |
+
}
|
752 |
+
|
753 |
+
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) ||
|
754 |
+
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
755 |
+
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
756 |
+
$bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
|
757 |
+
if( $bwsmn_form_email == "" || !preg_match( "/^((?:[a-z0-9']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", $bwsmn_form_email ) ) {
|
758 |
+
$error = __( "Please enter a valid email address.", 'gallery' );
|
759 |
+
} else {
|
760 |
+
$email = $bwsmn_form_email;
|
761 |
+
$bwsmn_form_email = '';
|
762 |
+
$message = __( 'Email with system info is sent to ', 'gallery' ) . $email;
|
763 |
+
}
|
764 |
+
} else {
|
765 |
+
$email = 'plugin_system_status@bestwebsoft.com';
|
766 |
+
$message = __( 'Thank you for contacting us.', 'gallery' );
|
767 |
+
}
|
768 |
+
|
769 |
+
if ( $error == '' ) {
|
770 |
+
$headers = 'MIME-Version: 1.0' . "\n";
|
771 |
+
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
772 |
+
$headers .= 'From: ' . get_option( 'admin_email' );
|
773 |
+
$message_text = '<html><head><title>System Info From ' . $home_url . '</title></head><body>
|
774 |
+
<h4>Environment</h4>
|
775 |
+
<table>';
|
776 |
+
foreach ( $system_info['system_info'] as $key => $value ) {
|
777 |
+
$message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
|
778 |
+
}
|
779 |
+
$message_text .= '</table>
|
780 |
+
<h4>Active Plugins</h4>
|
781 |
+
<table>';
|
782 |
+
foreach ( $system_info['active_plugins'] as $key => $value ) {
|
783 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
784 |
+
}
|
785 |
+
$message_text .= '</table>
|
786 |
+
<h4>Inactive Plugins</h4>
|
787 |
+
<table>';
|
788 |
+
foreach ( $system_info['inactive_plugins'] as $key => $value ) {
|
789 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
790 |
+
}
|
791 |
+
$message_text .= '</table></body></html>';
|
792 |
+
$result = wp_mail( $email, 'System Info From ' . $home_url, $message_text, $headers );
|
793 |
+
if ( $result != true )
|
794 |
+
$error = __( "Sorry, email message could not be delivered.", 'gallery' );
|
795 |
+
}
|
796 |
+
}
|
797 |
+
?><div class="wrap">
|
798 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
799 |
<h2><?php echo $title;?></h2>
|
800 |
+
<div class="updated fade" <?php if( !( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
801 |
+
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
802 |
<h3 style="color: blue;"><?php _e( 'Pro plugins', 'gallery' ); ?></h3>
|
803 |
<?php if( 0 < $count_activate_pro ) { ?>
|
804 |
<div style="padding-left:15px;">
|
852 |
<?php } ?>
|
853 |
<br />
|
854 |
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'gallery' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
855 |
+
<div id="poststuff" class="bws_system_info_mata_box">
|
856 |
+
<div class="postbox">
|
857 |
+
<div class="handlediv" title="Click to toggle">
|
858 |
+
<br>
|
859 |
+
</div>
|
860 |
+
<h3 class="hndle">
|
861 |
+
<span><?php _e( 'System status', 'gallery' ); ?></span>
|
862 |
+
</h3>
|
863 |
+
<div class="inside">
|
864 |
+
<table class="bws_system_info">
|
865 |
+
<thead><tr><th><?php _e( 'Environment', 'gallery' ); ?></th><td></td></tr></thead>
|
866 |
+
<tbody>
|
867 |
+
<?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
|
868 |
+
<tr>
|
869 |
+
<td scope="row"><?php echo $key; ?></td>
|
870 |
+
<td scope="row"><?php echo $value; ?></td>
|
871 |
+
</tr>
|
872 |
+
<?php } ?>
|
873 |
+
</tbody>
|
874 |
+
</table>
|
875 |
+
<table class="bws_system_info">
|
876 |
+
<thead><tr><th><?php _e( 'Active Plugins', 'gallery' ); ?></th><th></th></tr></thead>
|
877 |
+
<tbody>
|
878 |
+
<?php foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
|
879 |
+
<tr>
|
880 |
+
<td scope="row"><?php echo $key; ?></td>
|
881 |
+
<td scope="row"><?php echo $value; ?></td>
|
882 |
+
</tr>
|
883 |
+
<?php } ?>
|
884 |
+
</tbody>
|
885 |
+
</table>
|
886 |
+
<table class="bws_system_info">
|
887 |
+
<thead><tr><th><?php _e( 'Inactive Plugins', 'gallery' ); ?></th><th></th></tr></thead>
|
888 |
+
<tbody>
|
889 |
+
<?php foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
|
890 |
+
<tr>
|
891 |
+
<td scope="row"><?php echo $key; ?></td>
|
892 |
+
<td scope="row"><?php echo $value; ?></td>
|
893 |
+
</tr>
|
894 |
+
<?php } ?>
|
895 |
+
</tbody>
|
896 |
+
</table>
|
897 |
+
<div class="clear"></div>
|
898 |
+
<form method="post" action="admin.php?page=bws_plugins">
|
899 |
+
<p>
|
900 |
+
<input type="hidden" name="bwsmn_form_submit" value="submit" />
|
901 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'gallery' ) ?>" />
|
902 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
|
903 |
+
</p>
|
904 |
+
</form>
|
905 |
+
<form method="post" action="admin.php?page=bws_plugins">
|
906 |
+
<p>
|
907 |
+
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
908 |
+
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'gallery' ) ?>" />
|
909 |
+
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
910 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
911 |
+
</p>
|
912 |
+
</form>
|
913 |
+
</div>
|
914 |
+
</div>
|
915 |
+
</div>
|
916 |
</div>
|
917 |
<?php }
|
918 |
}
|
1287 |
<script type="text/javascript">
|
1288 |
(function($) {
|
1289 |
$(document).ready(function(){
|
1290 |
+
if ( $('input[name="bwsmn_form_email"]').val() == '' )
|
1291 |
+
$('.bws_system_info_mata_box .inside').css('display','none');
|
1292 |
+
|
1293 |
+
$('.bws_system_info_mata_box .handlediv').click( function(){
|
1294 |
+
if ( $('.bws_system_info_mata_box .inside').is(":visible") ) {
|
1295 |
+
$('.bws_system_info_mata_box .inside').css('display','none');
|
1296 |
+
} else {
|
1297 |
+
$('.bws_system_info_mata_box .inside').css('display','block');
|
1298 |
+
}
|
1299 |
+
});
|
1300 |
$('.gllr_image_block img').css('cursor', 'all-scroll' );
|
1301 |
$('.gllr_order_message').removeClass('hidden');
|
1302 |
var d=false;
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@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:103
|
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"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
@@ -96,7 +96,7 @@ msgid "Please make a choice"
|
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
-
#: gallery-plugin.php:
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
@@ -165,332 +165,501 @@ msgid "Publishing"
|
|
165 |
msgstr "Veřejné"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "Date"
|
170 |
msgstr "Datum"
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
#, fuzzy
|
174 |
msgid "Pro plugins"
|
175 |
msgstr "Doporučené pluginy"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Activated plugins"
|
180 |
msgstr "Aktivní pluginy"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Read more"
|
189 |
msgstr "Další informace"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Settings"
|
196 |
msgstr "Nastavení"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Installed plugins"
|
201 |
msgstr "Nainstalované pluginy"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "Recommended plugins"
|
206 |
msgstr "Doporučené pluginy"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Purchase"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid "Free plugins"
|
215 |
msgstr "Doporučené pluginy"
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Download"
|
219 |
msgstr "Stáhnout"
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
#, php-format
|
223 |
msgid "Install %s"
|
224 |
msgstr "Instaluj %s"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Install now from wordpress.org"
|
228 |
msgstr "Instaluj ihned z wordpress.org"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "If you have any questions, please contact us via"
|
233 |
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."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "See images »"
|
238 |
msgstr "Zobrazit obsah galerie »"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
#, fuzzy
|
242 |
msgid "Settings are saved"
|
243 |
msgstr "Nastavení uložena."
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
#, fuzzy
|
247 |
msgid "Gallery Settings"
|
248 |
msgstr "Nastavení galerie"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
#, fuzzy
|
256 |
msgid "Image size for the album cover"
|
257 |
msgstr "Размер для "
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "Image size"
|
264 |
msgstr "Název rozměru"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Width (in px)"
|
269 |
msgstr "Šířka (v px)"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Height (in px)"
|
274 |
msgstr "Výška (v px)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
#, fuzzy
|
278 |
msgid "Gallery image size"
|
279 |
msgstr "Galerie"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
#, fuzzy
|
283 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
284 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Gallery image size in the lightbox"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "Max width (in px)"
|
293 |
msgstr "Šířka (v px)"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Max height (in px)"
|
298 |
msgstr "Výška (v px)"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Display a full size image in the lightbox"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Crop position"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Horizontal"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "left"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "center"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "right"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Vertical"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "top"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "bottom"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "Lightbox background"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "Default"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Background transparency (from 0 to 1)"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Select a background color"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Background color"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Images with border"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Border width in px, just numbers"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Select a border color"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Number of images in the row"
|
378 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "Start slideshow"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Slideshow interval"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Attachment ID"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "Image Name"
|
395 |
msgstr "Název rozměru"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "Random"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Sort images"
|
408 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Display text above the image"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "If you want to display text just in a lightbox"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Display the Back link in the shortcode"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link text"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "The Back link URL"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Gallery page (Page with Gallery Template)"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "(Full URL to custom page)"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "The Read More link text"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Display Like buttons in the lightbox"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "FaceBook"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "Twitter"
|
465 |
msgstr "Název"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Pinterest"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Google +1"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Save Changes"
|
477 |
msgstr "Uložit změny"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "FAQ"
|
481 |
msgstr "FAQ "
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Support"
|
485 |
msgstr "Podpora"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
#: template/gallery-single-template.php:76
|
489 |
#, fuzzy
|
490 |
msgid "Sorry, nothing found."
|
491 |
msgstr "Omlouvám se - nic nenalezeno."
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
#: template/gallery-single-template.php:101
|
495 |
msgid "Download high resolution image"
|
496 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:30+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
+
#: gallery-plugin.php:1170
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
165 |
msgstr "Veřejné"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
+
#: gallery-plugin.php:1174
|
169 |
msgid "Date"
|
170 |
msgstr "Datum"
|
171 |
|
172 |
+
#: gallery-plugin.php:658
|
173 |
+
msgid "Not set"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: gallery-plugin.php:660
|
177 |
+
#: gallery-plugin.php:664
|
178 |
+
msgid "On"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: gallery-plugin.php:662
|
182 |
+
#: gallery-plugin.php:666
|
183 |
+
msgid "Off"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: gallery-plugin.php:670
|
187 |
+
#: gallery-plugin.php:674
|
188 |
+
#: gallery-plugin.php:678
|
189 |
+
#: gallery-plugin.php:682
|
190 |
+
#: gallery-plugin.php:686
|
191 |
+
#: gallery-plugin.php:712
|
192 |
+
msgid "N/A"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:684
|
196 |
+
msgid " Mb"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:688
|
200 |
+
#: gallery-plugin.php:692
|
201 |
+
#: gallery-plugin.php:696
|
202 |
+
#: gallery-plugin.php:707
|
203 |
+
msgid "Yes"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: gallery-plugin.php:690
|
207 |
+
#: gallery-plugin.php:694
|
208 |
+
#: gallery-plugin.php:698
|
209 |
+
#: gallery-plugin.php:709
|
210 |
+
msgid "No"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:723
|
214 |
+
msgid "Operating System"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:724
|
218 |
+
msgid "Server"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:725
|
222 |
+
msgid "Memory usage"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:726
|
226 |
+
msgid "MYSQL Version"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:727
|
230 |
+
msgid "SQL Mode"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:728
|
234 |
+
msgid "PHP Version"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:729
|
238 |
+
msgid "PHP Safe Mode"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:730
|
242 |
+
msgid "PHP Allow URL fopen"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: gallery-plugin.php:731
|
246 |
+
msgid "PHP Memory Limit"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: gallery-plugin.php:732
|
250 |
+
#, fuzzy
|
251 |
+
msgid "PHP Max Upload Size"
|
252 |
+
msgstr "Nahrát soubor"
|
253 |
+
|
254 |
+
#: gallery-plugin.php:733
|
255 |
+
msgid "PHP Max Post Size"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: gallery-plugin.php:734
|
259 |
+
msgid "PHP Max Script Execute Time"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: gallery-plugin.php:735
|
263 |
+
msgid "PHP Exif support"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: gallery-plugin.php:736
|
267 |
+
msgid "PHP IPTC support"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: gallery-plugin.php:737
|
271 |
+
msgid "PHP XML support"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: gallery-plugin.php:738
|
275 |
+
msgid "Site URL"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: gallery-plugin.php:739
|
279 |
+
msgid "Home URL"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: gallery-plugin.php:740
|
283 |
+
msgid "WordPress Version"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: gallery-plugin.php:741
|
287 |
+
msgid "WordPress DB Version"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: gallery-plugin.php:742
|
291 |
+
msgid "Multisite"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: gallery-plugin.php:743
|
295 |
+
msgid "Active Theme"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: gallery-plugin.php:758
|
299 |
+
msgid "Please enter a valid email address."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: gallery-plugin.php:762
|
303 |
+
msgid "Email with system info is sent to "
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:766
|
307 |
+
msgid "Thank you for contacting us."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:794
|
311 |
+
msgid "Sorry, email message could not be delivered."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: gallery-plugin.php:802
|
315 |
#, fuzzy
|
316 |
msgid "Pro plugins"
|
317 |
msgstr "Doporučené pluginy"
|
318 |
|
319 |
+
#: gallery-plugin.php:805
|
320 |
+
#: gallery-plugin.php:831
|
321 |
msgid "Activated plugins"
|
322 |
msgstr "Aktivní pluginy"
|
323 |
|
324 |
+
#: gallery-plugin.php:807
|
325 |
+
#: gallery-plugin.php:815
|
326 |
+
#: gallery-plugin.php:823
|
327 |
+
#: gallery-plugin.php:833
|
328 |
+
#: gallery-plugin.php:841
|
329 |
+
#: gallery-plugin.php:849
|
330 |
msgid "Read more"
|
331 |
msgstr "Další informace"
|
332 |
|
333 |
+
#: gallery-plugin.php:807
|
334 |
+
#: gallery-plugin.php:833
|
335 |
+
#: gallery-plugin.php:1257
|
336 |
+
#: gallery-plugin.php:1272
|
337 |
msgid "Settings"
|
338 |
msgstr "Nastavení"
|
339 |
|
340 |
+
#: gallery-plugin.php:813
|
341 |
+
#: gallery-plugin.php:839
|
342 |
msgid "Installed plugins"
|
343 |
msgstr "Nainstalované pluginy"
|
344 |
|
345 |
+
#: gallery-plugin.php:821
|
346 |
+
#: gallery-plugin.php:847
|
347 |
msgid "Recommended plugins"
|
348 |
msgstr "Doporučené pluginy"
|
349 |
|
350 |
+
#: gallery-plugin.php:823
|
351 |
msgid "Purchase"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:828
|
355 |
#, fuzzy
|
356 |
msgid "Free plugins"
|
357 |
msgstr "Doporučené pluginy"
|
358 |
|
359 |
+
#: gallery-plugin.php:849
|
360 |
msgid "Download"
|
361 |
msgstr "Stáhnout"
|
362 |
|
363 |
+
#: gallery-plugin.php:849
|
364 |
#, php-format
|
365 |
msgid "Install %s"
|
366 |
msgstr "Instaluj %s"
|
367 |
|
368 |
+
#: gallery-plugin.php:849
|
369 |
msgid "Install now from wordpress.org"
|
370 |
msgstr "Instaluj ihned z wordpress.org"
|
371 |
|
372 |
+
#: gallery-plugin.php:854
|
373 |
#, fuzzy
|
374 |
msgid "If you have any questions, please contact us via"
|
375 |
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."
|
376 |
|
377 |
+
#: gallery-plugin.php:861
|
378 |
+
msgid "System status"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: gallery-plugin.php:865
|
382 |
+
msgid "Environment"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: gallery-plugin.php:876
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Active Plugins"
|
388 |
+
msgstr "Aktivní pluginy"
|
389 |
+
|
390 |
+
#: gallery-plugin.php:887
|
391 |
+
#, fuzzy
|
392 |
+
msgid "Inactive Plugins"
|
393 |
+
msgstr "Aktivní pluginy"
|
394 |
+
|
395 |
+
#: gallery-plugin.php:901
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Send to support"
|
398 |
+
msgstr "Podpora"
|
399 |
+
|
400 |
+
#: gallery-plugin.php:908
|
401 |
+
msgid "Send to custom email »"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: gallery-plugin.php:950
|
405 |
#, fuzzy
|
406 |
msgid "See images »"
|
407 |
msgstr "Zobrazit obsah galerie »"
|
408 |
|
409 |
+
#: gallery-plugin.php:1049
|
410 |
#, fuzzy
|
411 |
msgid "Settings are saved"
|
412 |
msgstr "Nastavení uložena."
|
413 |
|
414 |
+
#: gallery-plugin.php:1063
|
415 |
#, fuzzy
|
416 |
msgid "Gallery Settings"
|
417 |
msgstr "Nastavení galerie"
|
418 |
|
419 |
+
#: gallery-plugin.php:1066
|
420 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: gallery-plugin.php:1070
|
424 |
#, fuzzy
|
425 |
msgid "Image size for the album cover"
|
426 |
msgstr "Размер для "
|
427 |
|
428 |
+
#: gallery-plugin.php:1072
|
429 |
+
#: gallery-plugin.php:1080
|
430 |
+
#: gallery-plugin.php:1093
|
431 |
#, fuzzy
|
432 |
msgid "Image size"
|
433 |
msgstr "Název rozměru"
|
434 |
|
435 |
+
#: gallery-plugin.php:1073
|
436 |
+
#: gallery-plugin.php:1081
|
437 |
msgid "Width (in px)"
|
438 |
msgstr "Šířka (v px)"
|
439 |
|
440 |
+
#: gallery-plugin.php:1074
|
441 |
+
#: gallery-plugin.php:1082
|
442 |
msgid "Height (in px)"
|
443 |
msgstr "Výška (v px)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1078
|
446 |
#, fuzzy
|
447 |
msgid "Gallery image size"
|
448 |
msgstr "Galerie"
|
449 |
|
450 |
+
#: gallery-plugin.php:1086
|
451 |
#, fuzzy
|
452 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
453 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
454 |
|
455 |
+
#: gallery-plugin.php:1091
|
456 |
msgid "Gallery image size in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1094
|
460 |
#, fuzzy
|
461 |
msgid "Max width (in px)"
|
462 |
msgstr "Šířka (v px)"
|
463 |
|
464 |
+
#: gallery-plugin.php:1095
|
465 |
#, fuzzy
|
466 |
msgid "Max height (in px)"
|
467 |
msgstr "Výška (v px)"
|
468 |
|
469 |
+
#: gallery-plugin.php:1096
|
470 |
msgid "Display a full size image in the lightbox"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1100
|
474 |
msgid "Crop position"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:1102
|
478 |
msgid "Horizontal"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1104
|
482 |
msgid "left"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1105
|
486 |
+
#: gallery-plugin.php:1112
|
487 |
msgid "center"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:1106
|
491 |
msgid "right"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:1109
|
495 |
msgid "Vertical"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1111
|
499 |
msgid "top"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1113
|
503 |
msgid "bottom"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1118
|
507 |
msgid "Lightbox background"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:1120
|
511 |
msgid "Default"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1121
|
515 |
msgid "Background transparency (from 0 to 1)"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1123
|
519 |
msgid "Select a background color"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1125
|
523 |
msgid "Background color"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1132
|
527 |
+
#: gallery-plugin.php:1237
|
528 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1139
|
532 |
msgid "Images with border"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:1142
|
536 |
msgid "Border width in px, just numbers"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:1144
|
540 |
+
#: gallery-plugin.php:1146
|
541 |
msgid "Select a border color"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: gallery-plugin.php:1152
|
545 |
#, fuzzy
|
546 |
msgid "Number of images in the row"
|
547 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
548 |
|
549 |
+
#: gallery-plugin.php:1158
|
550 |
msgid "Start slideshow"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1164
|
554 |
msgid "Slideshow interval"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1172
|
558 |
msgid "Attachment ID"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1173
|
562 |
#, fuzzy
|
563 |
msgid "Image Name"
|
564 |
msgstr "Název rozměru"
|
565 |
|
566 |
+
#: gallery-plugin.php:1175
|
567 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: gallery-plugin.php:1176
|
571 |
msgid "Random"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: gallery-plugin.php:1180
|
575 |
#, fuzzy
|
576 |
msgid "Sort images"
|
577 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
578 |
|
579 |
+
#: gallery-plugin.php:1182
|
580 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: gallery-plugin.php:1183
|
584 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: gallery-plugin.php:1187
|
588 |
msgid "Display text above the image"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1189
|
592 |
msgid "If you want to display text just in a lightbox"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1193
|
596 |
msgid "Display the Back link"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: gallery-plugin.php:1199
|
600 |
msgid "Display the Back link in the shortcode"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:1205
|
604 |
msgid "The Back link text"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: gallery-plugin.php:1211
|
608 |
msgid "The Back link URL"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: gallery-plugin.php:1213
|
612 |
msgid "Gallery page (Page with Gallery Template)"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1215
|
616 |
msgid "(Full URL to custom page)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1219
|
620 |
msgid "The Read More link text"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1227
|
624 |
msgid "Display Like buttons in the lightbox"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1229
|
628 |
msgid "FaceBook"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1230
|
632 |
#, fuzzy
|
633 |
msgid "Twitter"
|
634 |
msgstr "Název"
|
635 |
|
636 |
+
#: gallery-plugin.php:1231
|
637 |
msgid "Pinterest"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1232
|
641 |
msgid "Google +1"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1245
|
645 |
msgid "Save Changes"
|
646 |
msgstr "Uložit změny"
|
647 |
|
648 |
+
#: gallery-plugin.php:1258
|
649 |
msgid "FAQ"
|
650 |
msgstr "FAQ "
|
651 |
|
652 |
+
#: gallery-plugin.php:1259
|
653 |
msgid "Support"
|
654 |
msgstr "Podpora"
|
655 |
|
656 |
+
#: gallery-plugin.php:1476
|
657 |
#: template/gallery-single-template.php:76
|
658 |
#, fuzzy
|
659 |
msgid "Sorry, nothing found."
|
660 |
msgstr "Omlouvám se - nic nenalezeno."
|
661 |
|
662 |
+
#: gallery-plugin.php:1498
|
663 |
#: template/gallery-single-template.php:101
|
664 |
msgid "Download high resolution image"
|
665 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
@@ -96,7 +96,7 @@ msgid "Please make a choice"
|
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
-
#: gallery-plugin.php:
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Anzahl Bilder in der Reihe"
|
@@ -165,332 +165,501 @@ msgid "Publishing"
|
|
165 |
msgstr "Öffentlich"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "Date"
|
170 |
msgstr "Datum"
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
#, fuzzy
|
174 |
msgid "Pro plugins"
|
175 |
msgstr "Benötigte Plugins"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Activated plugins"
|
180 |
msgstr "Aktivierte Plugins"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Read more"
|
189 |
msgstr "Mehr erfahren"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Settings"
|
196 |
msgstr "Einstellungen"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Installed plugins"
|
201 |
msgstr "Installierte Plugins"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "Recommended plugins"
|
206 |
msgstr "Benötigte Plugins"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Purchase"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid "Free plugins"
|
215 |
msgstr "Benötigte Plugins"
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Download"
|
219 |
msgstr "Download"
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
#, php-format
|
223 |
msgid "Install %s"
|
224 |
msgstr "Installiere %s"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Install now from wordpress.org"
|
228 |
msgstr "Direkt von wordpress.org installieren"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "If you have any questions, please contact us via"
|
233 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "See images »"
|
238 |
msgstr "Fotos anzeigen »"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
#, fuzzy
|
242 |
msgid "Settings are saved"
|
243 |
msgstr "Einstellungen gespeichert."
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
#, fuzzy
|
247 |
msgid "Gallery Settings"
|
248 |
msgstr "Galerie Einstellungen"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
#, fuzzy
|
256 |
msgid "Image size for the album cover"
|
257 |
msgstr "Размер для "
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "Image size"
|
264 |
msgstr "Name der Bilder"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Width (in px)"
|
269 |
msgstr "Breite (in px)"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Height (in px)"
|
274 |
msgstr "Höhe (in px)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
#, fuzzy
|
278 |
msgid "Gallery image size"
|
279 |
msgstr "Galerien"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
#, fuzzy
|
283 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
284 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Gallery image size in the lightbox"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "Max width (in px)"
|
293 |
msgstr "Breite (in px)"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Max height (in px)"
|
298 |
msgstr "Höhe (in px)"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Display a full size image in the lightbox"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Crop position"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Horizontal"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "left"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "center"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "right"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Vertical"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "top"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "bottom"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "Lightbox background"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "Default"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Background transparency (from 0 to 1)"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Select a background color"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Background color"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Images with border"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Border width in px, just numbers"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Select a border color"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Number of images in the row"
|
378 |
msgstr "Anzahl Bilder in der Reihe"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "Start slideshow"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Slideshow interval"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Attachment ID"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "Image Name"
|
395 |
msgstr "Name der Bilder"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "Random"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Sort images"
|
408 |
msgstr "Anzahl Bilder in der Reihe"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Display text above the image"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "If you want to display text just in a lightbox"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Display the Back link in the shortcode"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link text"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "The Back link URL"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Gallery page (Page with Gallery Template)"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "(Full URL to custom page)"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "The Read More link text"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Display Like buttons in the lightbox"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "FaceBook"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "Twitter"
|
465 |
msgstr "Titel"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Pinterest"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Google +1"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Save Changes"
|
477 |
msgstr "Einstellungen speichern"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "FAQ"
|
481 |
msgstr "FAQ"
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Support"
|
485 |
msgstr "Support"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
#: template/gallery-single-template.php:76
|
489 |
#, fuzzy
|
490 |
msgid "Sorry, nothing found."
|
491 |
msgstr "Leider nichts gefunden."
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
#: template/gallery-single-template.php:101
|
495 |
msgid "Download high resolution image"
|
496 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:30+0300\n"
|
7 |
"Last-Translator: \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:103
|
20 |
+
#: gallery-plugin.php:1056
|
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:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
+
#: gallery-plugin.php:1170
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Anzahl Bilder in der Reihe"
|
165 |
msgstr "Öffentlich"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
+
#: gallery-plugin.php:1174
|
169 |
msgid "Date"
|
170 |
msgstr "Datum"
|
171 |
|
172 |
+
#: gallery-plugin.php:658
|
173 |
+
msgid "Not set"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: gallery-plugin.php:660
|
177 |
+
#: gallery-plugin.php:664
|
178 |
+
msgid "On"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: gallery-plugin.php:662
|
182 |
+
#: gallery-plugin.php:666
|
183 |
+
msgid "Off"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: gallery-plugin.php:670
|
187 |
+
#: gallery-plugin.php:674
|
188 |
+
#: gallery-plugin.php:678
|
189 |
+
#: gallery-plugin.php:682
|
190 |
+
#: gallery-plugin.php:686
|
191 |
+
#: gallery-plugin.php:712
|
192 |
+
msgid "N/A"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:684
|
196 |
+
msgid " Mb"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:688
|
200 |
+
#: gallery-plugin.php:692
|
201 |
+
#: gallery-plugin.php:696
|
202 |
+
#: gallery-plugin.php:707
|
203 |
+
msgid "Yes"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: gallery-plugin.php:690
|
207 |
+
#: gallery-plugin.php:694
|
208 |
+
#: gallery-plugin.php:698
|
209 |
+
#: gallery-plugin.php:709
|
210 |
+
msgid "No"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:723
|
214 |
+
msgid "Operating System"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:724
|
218 |
+
msgid "Server"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:725
|
222 |
+
msgid "Memory usage"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:726
|
226 |
+
msgid "MYSQL Version"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:727
|
230 |
+
msgid "SQL Mode"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:728
|
234 |
+
msgid "PHP Version"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:729
|
238 |
+
msgid "PHP Safe Mode"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:730
|
242 |
+
msgid "PHP Allow URL fopen"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: gallery-plugin.php:731
|
246 |
+
msgid "PHP Memory Limit"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: gallery-plugin.php:732
|
250 |
+
#, fuzzy
|
251 |
+
msgid "PHP Max Upload Size"
|
252 |
+
msgstr "Datei hochladen"
|
253 |
+
|
254 |
+
#: gallery-plugin.php:733
|
255 |
+
msgid "PHP Max Post Size"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: gallery-plugin.php:734
|
259 |
+
msgid "PHP Max Script Execute Time"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: gallery-plugin.php:735
|
263 |
+
msgid "PHP Exif support"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: gallery-plugin.php:736
|
267 |
+
msgid "PHP IPTC support"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: gallery-plugin.php:737
|
271 |
+
msgid "PHP XML support"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: gallery-plugin.php:738
|
275 |
+
msgid "Site URL"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: gallery-plugin.php:739
|
279 |
+
msgid "Home URL"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: gallery-plugin.php:740
|
283 |
+
msgid "WordPress Version"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: gallery-plugin.php:741
|
287 |
+
msgid "WordPress DB Version"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: gallery-plugin.php:742
|
291 |
+
msgid "Multisite"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: gallery-plugin.php:743
|
295 |
+
msgid "Active Theme"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: gallery-plugin.php:758
|
299 |
+
msgid "Please enter a valid email address."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: gallery-plugin.php:762
|
303 |
+
msgid "Email with system info is sent to "
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:766
|
307 |
+
msgid "Thank you for contacting us."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:794
|
311 |
+
msgid "Sorry, email message could not be delivered."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: gallery-plugin.php:802
|
315 |
#, fuzzy
|
316 |
msgid "Pro plugins"
|
317 |
msgstr "Benötigte Plugins"
|
318 |
|
319 |
+
#: gallery-plugin.php:805
|
320 |
+
#: gallery-plugin.php:831
|
321 |
msgid "Activated plugins"
|
322 |
msgstr "Aktivierte Plugins"
|
323 |
|
324 |
+
#: gallery-plugin.php:807
|
325 |
+
#: gallery-plugin.php:815
|
326 |
+
#: gallery-plugin.php:823
|
327 |
+
#: gallery-plugin.php:833
|
328 |
+
#: gallery-plugin.php:841
|
329 |
+
#: gallery-plugin.php:849
|
330 |
msgid "Read more"
|
331 |
msgstr "Mehr erfahren"
|
332 |
|
333 |
+
#: gallery-plugin.php:807
|
334 |
+
#: gallery-plugin.php:833
|
335 |
+
#: gallery-plugin.php:1257
|
336 |
+
#: gallery-plugin.php:1272
|
337 |
msgid "Settings"
|
338 |
msgstr "Einstellungen"
|
339 |
|
340 |
+
#: gallery-plugin.php:813
|
341 |
+
#: gallery-plugin.php:839
|
342 |
msgid "Installed plugins"
|
343 |
msgstr "Installierte Plugins"
|
344 |
|
345 |
+
#: gallery-plugin.php:821
|
346 |
+
#: gallery-plugin.php:847
|
347 |
msgid "Recommended plugins"
|
348 |
msgstr "Benötigte Plugins"
|
349 |
|
350 |
+
#: gallery-plugin.php:823
|
351 |
msgid "Purchase"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:828
|
355 |
#, fuzzy
|
356 |
msgid "Free plugins"
|
357 |
msgstr "Benötigte Plugins"
|
358 |
|
359 |
+
#: gallery-plugin.php:849
|
360 |
msgid "Download"
|
361 |
msgstr "Download"
|
362 |
|
363 |
+
#: gallery-plugin.php:849
|
364 |
#, php-format
|
365 |
msgid "Install %s"
|
366 |
msgstr "Installiere %s"
|
367 |
|
368 |
+
#: gallery-plugin.php:849
|
369 |
msgid "Install now from wordpress.org"
|
370 |
msgstr "Direkt von wordpress.org installieren"
|
371 |
|
372 |
+
#: gallery-plugin.php:854
|
373 |
#, fuzzy
|
374 |
msgid "If you have any questions, please contact us via"
|
375 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
376 |
|
377 |
+
#: gallery-plugin.php:861
|
378 |
+
msgid "System status"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: gallery-plugin.php:865
|
382 |
+
msgid "Environment"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: gallery-plugin.php:876
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Active Plugins"
|
388 |
+
msgstr "Aktivierte Plugins"
|
389 |
+
|
390 |
+
#: gallery-plugin.php:887
|
391 |
+
#, fuzzy
|
392 |
+
msgid "Inactive Plugins"
|
393 |
+
msgstr "Aktivierte Plugins"
|
394 |
+
|
395 |
+
#: gallery-plugin.php:901
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Send to support"
|
398 |
+
msgstr "Support"
|
399 |
+
|
400 |
+
#: gallery-plugin.php:908
|
401 |
+
msgid "Send to custom email »"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: gallery-plugin.php:950
|
405 |
#, fuzzy
|
406 |
msgid "See images »"
|
407 |
msgstr "Fotos anzeigen »"
|
408 |
|
409 |
+
#: gallery-plugin.php:1049
|
410 |
#, fuzzy
|
411 |
msgid "Settings are saved"
|
412 |
msgstr "Einstellungen gespeichert."
|
413 |
|
414 |
+
#: gallery-plugin.php:1063
|
415 |
#, fuzzy
|
416 |
msgid "Gallery Settings"
|
417 |
msgstr "Galerie Einstellungen"
|
418 |
|
419 |
+
#: gallery-plugin.php:1066
|
420 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: gallery-plugin.php:1070
|
424 |
#, fuzzy
|
425 |
msgid "Image size for the album cover"
|
426 |
msgstr "Размер для "
|
427 |
|
428 |
+
#: gallery-plugin.php:1072
|
429 |
+
#: gallery-plugin.php:1080
|
430 |
+
#: gallery-plugin.php:1093
|
431 |
#, fuzzy
|
432 |
msgid "Image size"
|
433 |
msgstr "Name der Bilder"
|
434 |
|
435 |
+
#: gallery-plugin.php:1073
|
436 |
+
#: gallery-plugin.php:1081
|
437 |
msgid "Width (in px)"
|
438 |
msgstr "Breite (in px)"
|
439 |
|
440 |
+
#: gallery-plugin.php:1074
|
441 |
+
#: gallery-plugin.php:1082
|
442 |
msgid "Height (in px)"
|
443 |
msgstr "Höhe (in px)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1078
|
446 |
#, fuzzy
|
447 |
msgid "Gallery image size"
|
448 |
msgstr "Galerien"
|
449 |
|
450 |
+
#: gallery-plugin.php:1086
|
451 |
#, fuzzy
|
452 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
453 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
454 |
|
455 |
+
#: gallery-plugin.php:1091
|
456 |
msgid "Gallery image size in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1094
|
460 |
#, fuzzy
|
461 |
msgid "Max width (in px)"
|
462 |
msgstr "Breite (in px)"
|
463 |
|
464 |
+
#: gallery-plugin.php:1095
|
465 |
#, fuzzy
|
466 |
msgid "Max height (in px)"
|
467 |
msgstr "Höhe (in px)"
|
468 |
|
469 |
+
#: gallery-plugin.php:1096
|
470 |
msgid "Display a full size image in the lightbox"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1100
|
474 |
msgid "Crop position"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:1102
|
478 |
msgid "Horizontal"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1104
|
482 |
msgid "left"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1105
|
486 |
+
#: gallery-plugin.php:1112
|
487 |
msgid "center"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:1106
|
491 |
msgid "right"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:1109
|
495 |
msgid "Vertical"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1111
|
499 |
msgid "top"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1113
|
503 |
msgid "bottom"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1118
|
507 |
msgid "Lightbox background"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:1120
|
511 |
msgid "Default"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1121
|
515 |
msgid "Background transparency (from 0 to 1)"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1123
|
519 |
msgid "Select a background color"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1125
|
523 |
msgid "Background color"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1132
|
527 |
+
#: gallery-plugin.php:1237
|
528 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1139
|
532 |
msgid "Images with border"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:1142
|
536 |
msgid "Border width in px, just numbers"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:1144
|
540 |
+
#: gallery-plugin.php:1146
|
541 |
msgid "Select a border color"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: gallery-plugin.php:1152
|
545 |
#, fuzzy
|
546 |
msgid "Number of images in the row"
|
547 |
msgstr "Anzahl Bilder in der Reihe"
|
548 |
|
549 |
+
#: gallery-plugin.php:1158
|
550 |
msgid "Start slideshow"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1164
|
554 |
msgid "Slideshow interval"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1172
|
558 |
msgid "Attachment ID"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1173
|
562 |
#, fuzzy
|
563 |
msgid "Image Name"
|
564 |
msgstr "Name der Bilder"
|
565 |
|
566 |
+
#: gallery-plugin.php:1175
|
567 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: gallery-plugin.php:1176
|
571 |
msgid "Random"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: gallery-plugin.php:1180
|
575 |
#, fuzzy
|
576 |
msgid "Sort images"
|
577 |
msgstr "Anzahl Bilder in der Reihe"
|
578 |
|
579 |
+
#: gallery-plugin.php:1182
|
580 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: gallery-plugin.php:1183
|
584 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: gallery-plugin.php:1187
|
588 |
msgid "Display text above the image"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1189
|
592 |
msgid "If you want to display text just in a lightbox"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1193
|
596 |
msgid "Display the Back link"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: gallery-plugin.php:1199
|
600 |
msgid "Display the Back link in the shortcode"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:1205
|
604 |
msgid "The Back link text"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: gallery-plugin.php:1211
|
608 |
msgid "The Back link URL"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: gallery-plugin.php:1213
|
612 |
msgid "Gallery page (Page with Gallery Template)"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1215
|
616 |
msgid "(Full URL to custom page)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1219
|
620 |
msgid "The Read More link text"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1227
|
624 |
msgid "Display Like buttons in the lightbox"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1229
|
628 |
msgid "FaceBook"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1230
|
632 |
#, fuzzy
|
633 |
msgid "Twitter"
|
634 |
msgstr "Titel"
|
635 |
|
636 |
+
#: gallery-plugin.php:1231
|
637 |
msgid "Pinterest"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1232
|
641 |
msgid "Google +1"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1245
|
645 |
msgid "Save Changes"
|
646 |
msgstr "Einstellungen speichern"
|
647 |
|
648 |
+
#: gallery-plugin.php:1258
|
649 |
msgid "FAQ"
|
650 |
msgstr "FAQ"
|
651 |
|
652 |
+
#: gallery-plugin.php:1259
|
653 |
msgid "Support"
|
654 |
msgstr "Support"
|
655 |
|
656 |
+
#: gallery-plugin.php:1476
|
657 |
#: template/gallery-single-template.php:76
|
658 |
#, fuzzy
|
659 |
msgid "Sorry, nothing found."
|
660 |
msgstr "Leider nichts gefunden."
|
661 |
|
662 |
+
#: gallery-plugin.php:1498
|
663 |
#: template/gallery-single-template.php:101
|
664 |
msgid "Download high resolution image"
|
665 |
msgstr ""
|
languages/gallery-es_ES.mo
CHANGED
Binary file
|
languages/gallery-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@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:103
|
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 "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 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galerías"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galería"
|
33 |
|
@@ -100,7 +100,7 @@ msgid "Please make a choice"
|
|
100 |
msgstr ""
|
101 |
|
102 |
#: gallery-plugin.php:228
|
103 |
-
#: gallery-plugin.php:
|
104 |
#, fuzzy
|
105 |
msgid "Sort images by"
|
106 |
msgstr "Contar las imágenes en la fila"
|
@@ -172,339 +172,508 @@ msgid "Publishing"
|
|
172 |
msgstr "Pública"
|
173 |
|
174 |
#: gallery-plugin.php:483
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Date"
|
177 |
msgstr "Fecha"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
#, fuzzy
|
181 |
msgid "Pro plugins"
|
182 |
msgstr "Plugins recomendados"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Activated plugins"
|
187 |
msgstr "Plugins Activados"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
#: gallery-plugin.php:
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Read more"
|
196 |
msgstr "Leer más"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Settings"
|
203 |
msgstr "Configuración"
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "Installed plugins"
|
208 |
msgstr "Plugins instalados"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "Recommended plugins"
|
213 |
msgstr "Plugins recomendados"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "Purchase"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "Free plugins"
|
222 |
msgstr "Plugins recomendados"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "Download"
|
226 |
msgstr "Descargar"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
#, php-format
|
230 |
msgid "Install %s"
|
231 |
msgstr "Instalar %s"
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "Install now from wordpress.org"
|
235 |
msgstr "Instalar ahora desde wordpress.org"
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
#, fuzzy
|
239 |
msgid "If you have any questions, please contact us via"
|
240 |
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"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
#, fuzzy
|
244 |
msgid "See images »"
|
245 |
msgstr "Ver foto »"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
#, fuzzy
|
249 |
msgid "Settings are saved"
|
250 |
msgstr "Opciones guardadas."
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#, fuzzy
|
254 |
msgid "Gallery Settings"
|
255 |
msgstr "Opciones de Galería"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, fuzzy
|
259 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
260 |
msgstr "Si deseas añadir la Galería solamente en tu página o post, solo copia y pega el shortcode en la página o post correspondiente:"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#, fuzzy
|
264 |
msgid "Image size for the album cover"
|
265 |
msgstr "Размер для "
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
-
#: gallery-plugin.php:
|
269 |
-
#: gallery-plugin.php:
|
270 |
#, fuzzy
|
271 |
msgid "Image size"
|
272 |
msgstr "Nombre del tamaño de la imagen"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "Width (in px)"
|
277 |
msgstr "Ancho (en px)"
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Height (in px)"
|
282 |
msgstr "Alto (en px)"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
#, fuzzy
|
286 |
msgid "Gallery image size"
|
287 |
msgstr "Galerías"
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
#, fuzzy
|
291 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
292 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
293 |
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "Gallery image size in the lightbox"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "Max width (in px)"
|
301 |
msgstr "Ancho (en px)"
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
#, fuzzy
|
305 |
msgid "Max height (in px)"
|
306 |
msgstr "Alto (en px)"
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Display a full size image in the lightbox"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "Crop position"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
msgid "Horizontal"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "left"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "center"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "right"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "Vertical"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "top"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "bottom"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Lightbox background"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Default"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Background transparency (from 0 to 1)"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
msgid "Select a background color"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "Background color"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
msgid "Images with border"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Border width in px, just numbers"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
-
#: gallery-plugin.php:
|
380 |
msgid "Select a border color"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
#, fuzzy
|
385 |
msgid "Number of images in the row"
|
386 |
msgstr "Contar las imágenes en la fila"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Start slideshow"
|
390 |
msgstr "Comenzar presentación diapositivas"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Slideshow interval"
|
394 |
msgstr "Intervalo de presentación diapositivas"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "Attachment ID"
|
399 |
msgstr "id del adjunto"
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
#, fuzzy
|
403 |
msgid "Image Name"
|
404 |
msgstr "Imagen"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
409 |
msgstr "orden de los adjuntos (el valor entero mostrado en el campo del dialog Insertar / Subir Galeria de Medias)"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
#, fuzzy
|
413 |
msgid "Random"
|
414 |
msgstr "aleatorio"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
#, fuzzy
|
418 |
msgid "Sort images"
|
419 |
msgstr "Contar las imágenes en la fila"
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
423 |
msgstr "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
427 |
msgstr "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "Display text above the image"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "If you want to display text just in a lightbox"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
#, fuzzy
|
439 |
msgid "Display the Back link"
|
440 |
msgstr "Mostrar el enlace de Regresar"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
#, fuzzy
|
444 |
msgid "Display the Back link in the shortcode"
|
445 |
msgstr "Mostrar el enlace de Regresar en shortcode"
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "The Back link text"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "The Back link URL"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Gallery page (Page with Gallery Template)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "(Full URL to custom page)"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#, fuzzy
|
465 |
msgid "The Read More link text"
|
466 |
msgstr "Etiqueta para el enlace Leer Mas"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Display Like buttons in the lightbox"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "FaceBook"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
#, fuzzy
|
478 |
msgid "Twitter"
|
479 |
msgstr "Título"
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid "Pinterest"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid "Google +1"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid "Save Changes"
|
491 |
msgstr "Guardar Cambios"
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
msgid "FAQ"
|
495 |
msgstr "FAQ "
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
msgid "Support"
|
499 |
msgstr "Soporte"
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
#: template/gallery-single-template.php:76
|
503 |
#, fuzzy
|
504 |
msgid "Sorry, nothing found."
|
505 |
msgstr "Lo sentimos - nada que encontrar."
|
506 |
|
507 |
-
#: gallery-plugin.php:
|
508 |
#: template/gallery-single-template.php:101
|
509 |
#, fuzzy
|
510 |
msgid "Download high resolution image"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:30+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 |
|
27 |
msgstr "Galerías"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galería"
|
33 |
|
100 |
msgstr ""
|
101 |
|
102 |
#: gallery-plugin.php:228
|
103 |
+
#: gallery-plugin.php:1170
|
104 |
#, fuzzy
|
105 |
msgid "Sort images by"
|
106 |
msgstr "Contar las imágenes en la fila"
|
172 |
msgstr "Pública"
|
173 |
|
174 |
#: gallery-plugin.php:483
|
175 |
+
#: gallery-plugin.php:1174
|
176 |
msgid "Date"
|
177 |
msgstr "Fecha"
|
178 |
|
179 |
+
#: gallery-plugin.php:658
|
180 |
+
msgid "Not set"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: gallery-plugin.php:660
|
184 |
+
#: gallery-plugin.php:664
|
185 |
+
msgid "On"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: gallery-plugin.php:662
|
189 |
+
#: gallery-plugin.php:666
|
190 |
+
msgid "Off"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: gallery-plugin.php:670
|
194 |
+
#: gallery-plugin.php:674
|
195 |
+
#: gallery-plugin.php:678
|
196 |
+
#: gallery-plugin.php:682
|
197 |
+
#: gallery-plugin.php:686
|
198 |
+
#: gallery-plugin.php:712
|
199 |
+
msgid "N/A"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: gallery-plugin.php:684
|
203 |
+
msgid " Mb"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: gallery-plugin.php:688
|
207 |
+
#: gallery-plugin.php:692
|
208 |
+
#: gallery-plugin.php:696
|
209 |
+
#: gallery-plugin.php:707
|
210 |
+
msgid "Yes"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:690
|
214 |
+
#: gallery-plugin.php:694
|
215 |
+
#: gallery-plugin.php:698
|
216 |
+
#: gallery-plugin.php:709
|
217 |
+
msgid "No"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: gallery-plugin.php:723
|
221 |
+
msgid "Operating System"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: gallery-plugin.php:724
|
225 |
+
msgid "Server"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: gallery-plugin.php:725
|
229 |
+
msgid "Memory usage"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: gallery-plugin.php:726
|
233 |
+
msgid "MYSQL Version"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: gallery-plugin.php:727
|
237 |
+
msgid "SQL Mode"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:728
|
241 |
+
msgid "PHP Version"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: gallery-plugin.php:729
|
245 |
+
msgid "PHP Safe Mode"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: gallery-plugin.php:730
|
249 |
+
msgid "PHP Allow URL fopen"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: gallery-plugin.php:731
|
253 |
+
msgid "PHP Memory Limit"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: gallery-plugin.php:732
|
257 |
+
#, fuzzy
|
258 |
+
msgid "PHP Max Upload Size"
|
259 |
+
msgstr "Subir Archivo"
|
260 |
+
|
261 |
+
#: gallery-plugin.php:733
|
262 |
+
msgid "PHP Max Post Size"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: gallery-plugin.php:734
|
266 |
+
msgid "PHP Max Script Execute Time"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: gallery-plugin.php:735
|
270 |
+
msgid "PHP Exif support"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: gallery-plugin.php:736
|
274 |
+
msgid "PHP IPTC support"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: gallery-plugin.php:737
|
278 |
+
msgid "PHP XML support"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: gallery-plugin.php:738
|
282 |
+
msgid "Site URL"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: gallery-plugin.php:739
|
286 |
+
msgid "Home URL"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: gallery-plugin.php:740
|
290 |
+
msgid "WordPress Version"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: gallery-plugin.php:741
|
294 |
+
msgid "WordPress DB Version"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: gallery-plugin.php:742
|
298 |
+
msgid "Multisite"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: gallery-plugin.php:743
|
302 |
+
msgid "Active Theme"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: gallery-plugin.php:758
|
306 |
+
msgid "Please enter a valid email address."
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: gallery-plugin.php:762
|
310 |
+
msgid "Email with system info is sent to "
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: gallery-plugin.php:766
|
314 |
+
msgid "Thank you for contacting us."
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: gallery-plugin.php:794
|
318 |
+
msgid "Sorry, email message could not be delivered."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: gallery-plugin.php:802
|
322 |
#, fuzzy
|
323 |
msgid "Pro plugins"
|
324 |
msgstr "Plugins recomendados"
|
325 |
|
326 |
+
#: gallery-plugin.php:805
|
327 |
+
#: gallery-plugin.php:831
|
328 |
msgid "Activated plugins"
|
329 |
msgstr "Plugins Activados"
|
330 |
|
331 |
+
#: gallery-plugin.php:807
|
332 |
+
#: gallery-plugin.php:815
|
333 |
+
#: gallery-plugin.php:823
|
334 |
+
#: gallery-plugin.php:833
|
335 |
+
#: gallery-plugin.php:841
|
336 |
+
#: gallery-plugin.php:849
|
337 |
msgid "Read more"
|
338 |
msgstr "Leer más"
|
339 |
|
340 |
+
#: gallery-plugin.php:807
|
341 |
+
#: gallery-plugin.php:833
|
342 |
+
#: gallery-plugin.php:1257
|
343 |
+
#: gallery-plugin.php:1272
|
344 |
msgid "Settings"
|
345 |
msgstr "Configuración"
|
346 |
|
347 |
+
#: gallery-plugin.php:813
|
348 |
+
#: gallery-plugin.php:839
|
349 |
msgid "Installed plugins"
|
350 |
msgstr "Plugins instalados"
|
351 |
|
352 |
+
#: gallery-plugin.php:821
|
353 |
+
#: gallery-plugin.php:847
|
354 |
msgid "Recommended plugins"
|
355 |
msgstr "Plugins recomendados"
|
356 |
|
357 |
+
#: gallery-plugin.php:823
|
358 |
msgid "Purchase"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: gallery-plugin.php:828
|
362 |
#, fuzzy
|
363 |
msgid "Free plugins"
|
364 |
msgstr "Plugins recomendados"
|
365 |
|
366 |
+
#: gallery-plugin.php:849
|
367 |
msgid "Download"
|
368 |
msgstr "Descargar"
|
369 |
|
370 |
+
#: gallery-plugin.php:849
|
371 |
#, php-format
|
372 |
msgid "Install %s"
|
373 |
msgstr "Instalar %s"
|
374 |
|
375 |
+
#: gallery-plugin.php:849
|
376 |
msgid "Install now from wordpress.org"
|
377 |
msgstr "Instalar ahora desde wordpress.org"
|
378 |
|
379 |
+
#: gallery-plugin.php:854
|
380 |
#, fuzzy
|
381 |
msgid "If you have any questions, please contact us via"
|
382 |
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"
|
383 |
|
384 |
+
#: gallery-plugin.php:861
|
385 |
+
msgid "System status"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: gallery-plugin.php:865
|
389 |
+
msgid "Environment"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: gallery-plugin.php:876
|
393 |
+
#, fuzzy
|
394 |
+
msgid "Active Plugins"
|
395 |
+
msgstr "Plugins Activados"
|
396 |
+
|
397 |
+
#: gallery-plugin.php:887
|
398 |
+
#, fuzzy
|
399 |
+
msgid "Inactive Plugins"
|
400 |
+
msgstr "Plugins Activados"
|
401 |
+
|
402 |
+
#: gallery-plugin.php:901
|
403 |
+
#, fuzzy
|
404 |
+
msgid "Send to support"
|
405 |
+
msgstr "Soporte"
|
406 |
+
|
407 |
+
#: gallery-plugin.php:908
|
408 |
+
msgid "Send to custom email »"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: gallery-plugin.php:950
|
412 |
#, fuzzy
|
413 |
msgid "See images »"
|
414 |
msgstr "Ver foto »"
|
415 |
|
416 |
+
#: gallery-plugin.php:1049
|
417 |
#, fuzzy
|
418 |
msgid "Settings are saved"
|
419 |
msgstr "Opciones guardadas."
|
420 |
|
421 |
+
#: gallery-plugin.php:1063
|
422 |
#, fuzzy
|
423 |
msgid "Gallery Settings"
|
424 |
msgstr "Opciones de Galería"
|
425 |
|
426 |
+
#: gallery-plugin.php:1066
|
427 |
#, fuzzy
|
428 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
429 |
msgstr "Si deseas añadir la Galería solamente en tu página o post, solo copia y pega el shortcode en la página o post correspondiente:"
|
430 |
|
431 |
+
#: gallery-plugin.php:1070
|
432 |
#, fuzzy
|
433 |
msgid "Image size for the album cover"
|
434 |
msgstr "Размер для "
|
435 |
|
436 |
+
#: gallery-plugin.php:1072
|
437 |
+
#: gallery-plugin.php:1080
|
438 |
+
#: gallery-plugin.php:1093
|
439 |
#, fuzzy
|
440 |
msgid "Image size"
|
441 |
msgstr "Nombre del tamaño de la imagen"
|
442 |
|
443 |
+
#: gallery-plugin.php:1073
|
444 |
+
#: gallery-plugin.php:1081
|
445 |
msgid "Width (in px)"
|
446 |
msgstr "Ancho (en px)"
|
447 |
|
448 |
+
#: gallery-plugin.php:1074
|
449 |
+
#: gallery-plugin.php:1082
|
450 |
msgid "Height (in px)"
|
451 |
msgstr "Alto (en px)"
|
452 |
|
453 |
+
#: gallery-plugin.php:1078
|
454 |
#, fuzzy
|
455 |
msgid "Gallery image size"
|
456 |
msgstr "Galerías"
|
457 |
|
458 |
+
#: gallery-plugin.php:1086
|
459 |
#, fuzzy
|
460 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
461 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
462 |
|
463 |
+
#: gallery-plugin.php:1091
|
464 |
msgid "Gallery image size in the lightbox"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: gallery-plugin.php:1094
|
468 |
#, fuzzy
|
469 |
msgid "Max width (in px)"
|
470 |
msgstr "Ancho (en px)"
|
471 |
|
472 |
+
#: gallery-plugin.php:1095
|
473 |
#, fuzzy
|
474 |
msgid "Max height (in px)"
|
475 |
msgstr "Alto (en px)"
|
476 |
|
477 |
+
#: gallery-plugin.php:1096
|
478 |
msgid "Display a full size image in the lightbox"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1100
|
482 |
msgid "Crop position"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1102
|
486 |
msgid "Horizontal"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: gallery-plugin.php:1104
|
490 |
msgid "left"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:1105
|
494 |
+
#: gallery-plugin.php:1112
|
495 |
msgid "center"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1106
|
499 |
msgid "right"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1109
|
503 |
msgid "Vertical"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1111
|
507 |
msgid "top"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:1113
|
511 |
msgid "bottom"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1118
|
515 |
msgid "Lightbox background"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1120
|
519 |
msgid "Default"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1121
|
523 |
msgid "Background transparency (from 0 to 1)"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1123
|
527 |
msgid "Select a background color"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: gallery-plugin.php:1125
|
531 |
msgid "Background color"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1132
|
535 |
+
#: gallery-plugin.php:1237
|
536 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:1139
|
540 |
msgid "Images with border"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: gallery-plugin.php:1142
|
544 |
msgid "Border width in px, just numbers"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: gallery-plugin.php:1144
|
548 |
+
#: gallery-plugin.php:1146
|
549 |
msgid "Select a border color"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: gallery-plugin.php:1152
|
553 |
#, fuzzy
|
554 |
msgid "Number of images in the row"
|
555 |
msgstr "Contar las imágenes en la fila"
|
556 |
|
557 |
+
#: gallery-plugin.php:1158
|
558 |
msgid "Start slideshow"
|
559 |
msgstr "Comenzar presentación diapositivas"
|
560 |
|
561 |
+
#: gallery-plugin.php:1164
|
562 |
msgid "Slideshow interval"
|
563 |
msgstr "Intervalo de presentación diapositivas"
|
564 |
|
565 |
+
#: gallery-plugin.php:1172
|
566 |
#, fuzzy
|
567 |
msgid "Attachment ID"
|
568 |
msgstr "id del adjunto"
|
569 |
|
570 |
+
#: gallery-plugin.php:1173
|
571 |
#, fuzzy
|
572 |
msgid "Image Name"
|
573 |
msgstr "Imagen"
|
574 |
|
575 |
+
#: gallery-plugin.php:1175
|
576 |
#, fuzzy
|
577 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
578 |
msgstr "orden de los adjuntos (el valor entero mostrado en el campo del dialog Insertar / Subir Galeria de Medias)"
|
579 |
|
580 |
+
#: gallery-plugin.php:1176
|
581 |
#, fuzzy
|
582 |
msgid "Random"
|
583 |
msgstr "aleatorio"
|
584 |
|
585 |
+
#: gallery-plugin.php:1180
|
586 |
#, fuzzy
|
587 |
msgid "Sort images"
|
588 |
msgstr "Contar las imágenes en la fila"
|
589 |
|
590 |
+
#: gallery-plugin.php:1182
|
591 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
592 |
msgstr "ASC (orden ascendente desde el valor menor al mayor - 1, 2, 3; a, b, c)"
|
593 |
|
594 |
+
#: gallery-plugin.php:1183
|
595 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
596 |
msgstr "DESC (orden descendente desde el valor mayor al menor - 3, 2, 1; c, b, a)"
|
597 |
|
598 |
+
#: gallery-plugin.php:1187
|
599 |
msgid "Display text above the image"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: gallery-plugin.php:1189
|
603 |
msgid "If you want to display text just in a lightbox"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: gallery-plugin.php:1193
|
607 |
#, fuzzy
|
608 |
msgid "Display the Back link"
|
609 |
msgstr "Mostrar el enlace de Regresar"
|
610 |
|
611 |
+
#: gallery-plugin.php:1199
|
612 |
#, fuzzy
|
613 |
msgid "Display the Back link in the shortcode"
|
614 |
msgstr "Mostrar el enlace de Regresar en shortcode"
|
615 |
|
616 |
+
#: gallery-plugin.php:1205
|
617 |
msgid "The Back link text"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1211
|
621 |
msgid "The Back link URL"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1213
|
625 |
msgid "Gallery page (Page with Gallery Template)"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:1215
|
629 |
msgid "(Full URL to custom page)"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:1219
|
633 |
#, fuzzy
|
634 |
msgid "The Read More link text"
|
635 |
msgstr "Etiqueta para el enlace Leer Mas"
|
636 |
|
637 |
+
#: gallery-plugin.php:1227
|
638 |
msgid "Display Like buttons in the lightbox"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:1229
|
642 |
msgid "FaceBook"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: gallery-plugin.php:1230
|
646 |
#, fuzzy
|
647 |
msgid "Twitter"
|
648 |
msgstr "Título"
|
649 |
|
650 |
+
#: gallery-plugin.php:1231
|
651 |
msgid "Pinterest"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: gallery-plugin.php:1232
|
655 |
msgid "Google +1"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: gallery-plugin.php:1245
|
659 |
msgid "Save Changes"
|
660 |
msgstr "Guardar Cambios"
|
661 |
|
662 |
+
#: gallery-plugin.php:1258
|
663 |
msgid "FAQ"
|
664 |
msgstr "FAQ "
|
665 |
|
666 |
+
#: gallery-plugin.php:1259
|
667 |
msgid "Support"
|
668 |
msgstr "Soporte"
|
669 |
|
670 |
+
#: gallery-plugin.php:1476
|
671 |
#: template/gallery-single-template.php:76
|
672 |
#, fuzzy
|
673 |
msgid "Sorry, nothing found."
|
674 |
msgstr "Lo sentimos - nada que encontrar."
|
675 |
|
676 |
+
#: gallery-plugin.php:1498
|
677 |
#: template/gallery-single-template.php:101
|
678 |
#, fuzzy
|
679 |
msgid "Download high resolution image"
|
languages/gallery-fa_IR.mo
CHANGED
Binary file
|
languages/gallery-fa_IR.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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Einolah Kiamehr <einkia@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:103
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "گالری ها"
|
29 |
|
30 |
#: gallery-plugin.php:128
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "گالری"
|
34 |
|
@@ -98,7 +98,7 @@ msgid "Please make a choice"
|
|
98 |
msgstr ""
|
99 |
|
100 |
#: gallery-plugin.php:228
|
101 |
-
#: gallery-plugin.php:
|
102 |
#, fuzzy
|
103 |
msgid "Sort images by"
|
104 |
msgstr "تعداد عکسها در سطر"
|
@@ -170,337 +170,506 @@ msgid "Publishing"
|
|
170 |
msgstr "عمومی"
|
171 |
|
172 |
#: gallery-plugin.php:483
|
173 |
-
#: gallery-plugin.php:
|
174 |
msgid "Date"
|
175 |
msgstr "تاریخ"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
#: gallery-plugin.php:666
|
|
|
|
|
|
|
|
|
188 |
#: gallery-plugin.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
#: gallery-plugin.php:684
|
|
|
|
|
|
|
|
|
190 |
#: gallery-plugin.php:692
|
191 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
msgid "Read more"
|
193 |
msgstr "بیشتر..."
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
-
#: gallery-plugin.php:
|
197 |
-
#: gallery-plugin.php:
|
198 |
-
#: gallery-plugin.php:
|
199 |
msgid "Settings"
|
200 |
msgstr "تنظیمات"
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "Installed plugins"
|
205 |
msgstr "نصب افزونه"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Recommended plugins"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "Purchase"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
#, fuzzy
|
218 |
msgid "Free plugins"
|
219 |
msgstr "فعالسازی افزونه"
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "Download"
|
223 |
msgstr "دانلود"
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
#, php-format
|
227 |
msgid "Install %s"
|
228 |
msgstr "نصب %s"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "Install now from wordpress.org"
|
232 |
msgstr "در حال نصب از سایت وردپرس"
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
#, fuzzy
|
236 |
msgid "If you have any questions, please contact us via"
|
237 |
msgstr "اگر شما سوالی دارید؛لطفا با ما با آدرس plugin@bestwebsoft.com تماس بگیرید یا فرم تماس مارا در سایتمان پر کنید و سوال خود را آنجا بنویسید."
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
#, fuzzy
|
241 |
msgid "See images »"
|
242 |
msgstr "»دیدن عکس;"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
#, fuzzy
|
246 |
msgid "Settings are saved"
|
247 |
msgstr "تنظیمات ذخیره شد."
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
250 |
#, fuzzy
|
251 |
msgid "Gallery Settings"
|
252 |
msgstr "تنظیمات گالری"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
#, fuzzy
|
256 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
257 |
msgstr "اگر میخواهید یک گالری جدید اضافه کنید ، کافیه shortcode را در نوشته یا برگه خود کپی کنید"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#, fuzzy
|
261 |
msgid "Image size for the album cover"
|
262 |
msgstr "اندازه دوره آلبوم گالری"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
-
#: gallery-plugin.php:
|
266 |
-
#: gallery-plugin.php:
|
267 |
#, fuzzy
|
268 |
msgid "Image size"
|
269 |
msgstr " اندازه عکس"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Width (in px)"
|
274 |
msgstr "عرض (به pixels)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "Height (in px)"
|
279 |
msgstr "ارتفاع (به pixels)"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
#, fuzzy
|
283 |
msgid "Gallery image size"
|
284 |
msgstr "گالری ها"
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
289 |
msgstr "وردپرس میتواند یک کپی از عکسهای بند انگشتی نوشته ها را با اندازه دلخواه بسازد وقتی شما یک عکس جدید را بار گذاری میکنید."
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
msgid "Gallery image size in the lightbox"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Max width (in px)"
|
298 |
msgstr "عرض (به pixels)"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
#, fuzzy
|
302 |
msgid "Max height (in px)"
|
303 |
msgstr "ارتفاع (به pixels)"
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Display a full size image in the lightbox"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Crop position"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Horizontal"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "left"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "center"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "right"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Vertical"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "top"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "bottom"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Lightbox background"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Default"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Background transparency (from 0 to 1)"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Select a background color"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "Background color"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Images with border"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Border width in px, just numbers"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "Select a border color"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
#, fuzzy
|
382 |
msgid "Number of images in the row"
|
383 |
msgstr "تعداد عکسها در سطر"
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Start slideshow"
|
387 |
msgstr "نمایش اسلایدشو"
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Slideshow interval"
|
391 |
msgstr "فاصله بین اسلایدشو"
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "Attachment ID"
|
396 |
msgstr "ای دی سنجاق شده "
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
#, fuzzy
|
400 |
msgid "Image Name"
|
401 |
msgstr "عکس "
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
#, fuzzy
|
409 |
msgid "Random"
|
410 |
msgstr "تصادفی"
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
#, fuzzy
|
414 |
msgid "Sort images"
|
415 |
msgstr "تعداد عکسها در سطر"
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: gallery-plugin.php:
|
426 |
msgid "Display text above the image"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: gallery-plugin.php:
|
430 |
msgid "If you want to display text just in a lightbox"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: gallery-plugin.php:
|
434 |
#, fuzzy
|
435 |
msgid "Display the Back link"
|
436 |
msgstr "نشان دادن لینک برگشت"
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
#, fuzzy
|
440 |
msgid "Display the Back link in the shortcode"
|
441 |
msgstr "نشان دادن لینک برگشت در شرت کد"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "The Back link text"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "The Back link URL"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Gallery page (Page with Gallery Template)"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "(Full URL to custom page)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
#, fuzzy
|
461 |
msgid "The Read More link text"
|
462 |
msgstr "برچسب برای لینک بیشتر..."
|
463 |
|
464 |
-
#: gallery-plugin.php:
|
465 |
msgid "Display Like buttons in the lightbox"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "FaceBook"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
#, fuzzy
|
474 |
msgid "Twitter"
|
475 |
msgstr "عنوان"
|
476 |
|
477 |
-
#: gallery-plugin.php:
|
478 |
msgid "Pinterest"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: gallery-plugin.php:
|
482 |
msgid "Google +1"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: gallery-plugin.php:
|
486 |
msgid "Save Changes"
|
487 |
msgstr "ذخیره تنظیمات"
|
488 |
|
489 |
-
#: gallery-plugin.php:
|
490 |
msgid "FAQ"
|
491 |
msgstr "FAQ"
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
msgid "Support"
|
495 |
msgstr "پشتیبانی"
|
496 |
|
497 |
-
#: gallery-plugin.php:
|
498 |
#: template/gallery-single-template.php:76
|
499 |
#, fuzzy
|
500 |
msgid "Sorry, nothing found."
|
501 |
msgstr "متاسفم؛چیزی یافت نشد"
|
502 |
|
503 |
-
#: gallery-plugin.php:
|
504 |
#: template/gallery-single-template.php:101
|
505 |
msgid "Download high resolution image"
|
506 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:30+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Einolah Kiamehr <einkia@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:103
|
21 |
+
#: gallery-plugin.php:1056
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "گالری ها"
|
29 |
|
30 |
#: gallery-plugin.php:128
|
31 |
+
#: gallery-plugin.php:923
|
32 |
msgid "Gallery"
|
33 |
msgstr "گالری"
|
34 |
|
98 |
msgstr ""
|
99 |
|
100 |
#: gallery-plugin.php:228
|
101 |
+
#: gallery-plugin.php:1170
|
102 |
#, fuzzy
|
103 |
msgid "Sort images by"
|
104 |
msgstr "تعداد عکسها در سطر"
|
170 |
msgstr "عمومی"
|
171 |
|
172 |
#: gallery-plugin.php:483
|
173 |
+
#: gallery-plugin.php:1174
|
174 |
msgid "Date"
|
175 |
msgstr "تاریخ"
|
176 |
|
177 |
+
#: gallery-plugin.php:658
|
178 |
+
msgid "Not set"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: gallery-plugin.php:660
|
182 |
+
#: gallery-plugin.php:664
|
183 |
+
msgid "On"
|
184 |
+
msgstr ""
|
185 |
|
186 |
+
#: gallery-plugin.php:662
|
187 |
#: gallery-plugin.php:666
|
188 |
+
msgid "Off"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: gallery-plugin.php:670
|
192 |
#: gallery-plugin.php:674
|
193 |
+
#: gallery-plugin.php:678
|
194 |
+
#: gallery-plugin.php:682
|
195 |
+
#: gallery-plugin.php:686
|
196 |
+
#: gallery-plugin.php:712
|
197 |
+
msgid "N/A"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
#: gallery-plugin.php:684
|
201 |
+
msgid " Mb"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: gallery-plugin.php:688
|
205 |
#: gallery-plugin.php:692
|
206 |
+
#: gallery-plugin.php:696
|
207 |
+
#: gallery-plugin.php:707
|
208 |
+
msgid "Yes"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: gallery-plugin.php:690
|
212 |
+
#: gallery-plugin.php:694
|
213 |
+
#: gallery-plugin.php:698
|
214 |
+
#: gallery-plugin.php:709
|
215 |
+
msgid "No"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:723
|
219 |
+
msgid "Operating System"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:724
|
223 |
+
msgid "Server"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:725
|
227 |
+
msgid "Memory usage"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:726
|
231 |
+
msgid "MYSQL Version"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:727
|
235 |
+
msgid "SQL Mode"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:728
|
239 |
+
msgid "PHP Version"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:729
|
243 |
+
msgid "PHP Safe Mode"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: gallery-plugin.php:730
|
247 |
+
msgid "PHP Allow URL fopen"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:731
|
251 |
+
msgid "PHP Memory Limit"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: gallery-plugin.php:732
|
255 |
+
#, fuzzy
|
256 |
+
msgid "PHP Max Upload Size"
|
257 |
+
msgstr "آپلود فایل"
|
258 |
+
|
259 |
+
#: gallery-plugin.php:733
|
260 |
+
msgid "PHP Max Post Size"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:734
|
264 |
+
msgid "PHP Max Script Execute Time"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:735
|
268 |
+
msgid "PHP Exif support"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: gallery-plugin.php:736
|
272 |
+
msgid "PHP IPTC support"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:737
|
276 |
+
msgid "PHP XML support"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:738
|
280 |
+
msgid "Site URL"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:739
|
284 |
+
msgid "Home URL"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:740
|
288 |
+
msgid "WordPress Version"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:741
|
292 |
+
msgid "WordPress DB Version"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:742
|
296 |
+
msgid "Multisite"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:743
|
300 |
+
msgid "Active Theme"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:758
|
304 |
+
msgid "Please enter a valid email address."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:762
|
308 |
+
msgid "Email with system info is sent to "
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: gallery-plugin.php:766
|
312 |
+
msgid "Thank you for contacting us."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: gallery-plugin.php:794
|
316 |
+
msgid "Sorry, email message could not be delivered."
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: gallery-plugin.php:802
|
320 |
+
msgid "Pro plugins"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: gallery-plugin.php:805
|
324 |
+
#: gallery-plugin.php:831
|
325 |
+
msgid "Activated plugins"
|
326 |
+
msgstr "فعالسازی افزونه"
|
327 |
+
|
328 |
+
#: gallery-plugin.php:807
|
329 |
+
#: gallery-plugin.php:815
|
330 |
+
#: gallery-plugin.php:823
|
331 |
+
#: gallery-plugin.php:833
|
332 |
+
#: gallery-plugin.php:841
|
333 |
+
#: gallery-plugin.php:849
|
334 |
msgid "Read more"
|
335 |
msgstr "بیشتر..."
|
336 |
|
337 |
+
#: gallery-plugin.php:807
|
338 |
+
#: gallery-plugin.php:833
|
339 |
+
#: gallery-plugin.php:1257
|
340 |
+
#: gallery-plugin.php:1272
|
341 |
msgid "Settings"
|
342 |
msgstr "تنظیمات"
|
343 |
|
344 |
+
#: gallery-plugin.php:813
|
345 |
+
#: gallery-plugin.php:839
|
346 |
msgid "Installed plugins"
|
347 |
msgstr "نصب افزونه"
|
348 |
|
349 |
+
#: gallery-plugin.php:821
|
350 |
+
#: gallery-plugin.php:847
|
351 |
msgid "Recommended plugins"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:823
|
355 |
msgid "Purchase"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: gallery-plugin.php:828
|
359 |
#, fuzzy
|
360 |
msgid "Free plugins"
|
361 |
msgstr "فعالسازی افزونه"
|
362 |
|
363 |
+
#: gallery-plugin.php:849
|
364 |
msgid "Download"
|
365 |
msgstr "دانلود"
|
366 |
|
367 |
+
#: gallery-plugin.php:849
|
368 |
#, php-format
|
369 |
msgid "Install %s"
|
370 |
msgstr "نصب %s"
|
371 |
|
372 |
+
#: gallery-plugin.php:849
|
373 |
msgid "Install now from wordpress.org"
|
374 |
msgstr "در حال نصب از سایت وردپرس"
|
375 |
|
376 |
+
#: gallery-plugin.php:854
|
377 |
#, fuzzy
|
378 |
msgid "If you have any questions, please contact us via"
|
379 |
msgstr "اگر شما سوالی دارید؛لطفا با ما با آدرس plugin@bestwebsoft.com تماس بگیرید یا فرم تماس مارا در سایتمان پر کنید و سوال خود را آنجا بنویسید."
|
380 |
|
381 |
+
#: gallery-plugin.php:861
|
382 |
+
msgid "System status"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: gallery-plugin.php:865
|
386 |
+
msgid "Environment"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: gallery-plugin.php:876
|
390 |
+
#, fuzzy
|
391 |
+
msgid "Active Plugins"
|
392 |
+
msgstr "فعالسازی افزونه"
|
393 |
+
|
394 |
+
#: gallery-plugin.php:887
|
395 |
+
#, fuzzy
|
396 |
+
msgid "Inactive Plugins"
|
397 |
+
msgstr "فعالسازی افزونه"
|
398 |
+
|
399 |
+
#: gallery-plugin.php:901
|
400 |
+
#, fuzzy
|
401 |
+
msgid "Send to support"
|
402 |
+
msgstr "پشتیبانی"
|
403 |
+
|
404 |
+
#: gallery-plugin.php:908
|
405 |
+
msgid "Send to custom email »"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: gallery-plugin.php:950
|
409 |
#, fuzzy
|
410 |
msgid "See images »"
|
411 |
msgstr "»دیدن عکس;"
|
412 |
|
413 |
+
#: gallery-plugin.php:1049
|
414 |
#, fuzzy
|
415 |
msgid "Settings are saved"
|
416 |
msgstr "تنظیمات ذخیره شد."
|
417 |
|
418 |
+
#: gallery-plugin.php:1063
|
419 |
#, fuzzy
|
420 |
msgid "Gallery Settings"
|
421 |
msgstr "تنظیمات گالری"
|
422 |
|
423 |
+
#: gallery-plugin.php:1066
|
424 |
#, fuzzy
|
425 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
426 |
msgstr "اگر میخواهید یک گالری جدید اضافه کنید ، کافیه shortcode را در نوشته یا برگه خود کپی کنید"
|
427 |
|
428 |
+
#: gallery-plugin.php:1070
|
429 |
#, fuzzy
|
430 |
msgid "Image size for the album cover"
|
431 |
msgstr "اندازه دوره آلبوم گالری"
|
432 |
|
433 |
+
#: gallery-plugin.php:1072
|
434 |
+
#: gallery-plugin.php:1080
|
435 |
+
#: gallery-plugin.php:1093
|
436 |
#, fuzzy
|
437 |
msgid "Image size"
|
438 |
msgstr " اندازه عکس"
|
439 |
|
440 |
+
#: gallery-plugin.php:1073
|
441 |
+
#: gallery-plugin.php:1081
|
442 |
msgid "Width (in px)"
|
443 |
msgstr "عرض (به pixels)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1074
|
446 |
+
#: gallery-plugin.php:1082
|
447 |
msgid "Height (in px)"
|
448 |
msgstr "ارتفاع (به pixels)"
|
449 |
|
450 |
+
#: gallery-plugin.php:1078
|
451 |
#, fuzzy
|
452 |
msgid "Gallery image size"
|
453 |
msgstr "گالری ها"
|
454 |
|
455 |
+
#: gallery-plugin.php:1086
|
456 |
#, fuzzy
|
457 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
458 |
msgstr "وردپرس میتواند یک کپی از عکسهای بند انگشتی نوشته ها را با اندازه دلخواه بسازد وقتی شما یک عکس جدید را بار گذاری میکنید."
|
459 |
|
460 |
+
#: gallery-plugin.php:1091
|
461 |
msgid "Gallery image size in the lightbox"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: gallery-plugin.php:1094
|
465 |
#, fuzzy
|
466 |
msgid "Max width (in px)"
|
467 |
msgstr "عرض (به pixels)"
|
468 |
|
469 |
+
#: gallery-plugin.php:1095
|
470 |
#, fuzzy
|
471 |
msgid "Max height (in px)"
|
472 |
msgstr "ارتفاع (به pixels)"
|
473 |
|
474 |
+
#: gallery-plugin.php:1096
|
475 |
msgid "Display a full size image in the lightbox"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:1100
|
479 |
msgid "Crop position"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:1102
|
483 |
msgid "Horizontal"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1104
|
487 |
msgid "left"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:1105
|
491 |
+
#: gallery-plugin.php:1112
|
492 |
msgid "center"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:1106
|
496 |
msgid "right"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:1109
|
500 |
msgid "Vertical"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:1111
|
504 |
msgid "top"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1113
|
508 |
msgid "bottom"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:1118
|
512 |
msgid "Lightbox background"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1120
|
516 |
msgid "Default"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1121
|
520 |
msgid "Background transparency (from 0 to 1)"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1123
|
524 |
msgid "Select a background color"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1125
|
528 |
msgid "Background color"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1132
|
532 |
+
#: gallery-plugin.php:1237
|
533 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1139
|
537 |
msgid "Images with border"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1142
|
541 |
msgid "Border width in px, just numbers"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: gallery-plugin.php:1144
|
545 |
+
#: gallery-plugin.php:1146
|
546 |
msgid "Select a border color"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: gallery-plugin.php:1152
|
550 |
#, fuzzy
|
551 |
msgid "Number of images in the row"
|
552 |
msgstr "تعداد عکسها در سطر"
|
553 |
|
554 |
+
#: gallery-plugin.php:1158
|
555 |
msgid "Start slideshow"
|
556 |
msgstr "نمایش اسلایدشو"
|
557 |
|
558 |
+
#: gallery-plugin.php:1164
|
559 |
msgid "Slideshow interval"
|
560 |
msgstr "فاصله بین اسلایدشو"
|
561 |
|
562 |
+
#: gallery-plugin.php:1172
|
563 |
#, fuzzy
|
564 |
msgid "Attachment ID"
|
565 |
msgstr "ای دی سنجاق شده "
|
566 |
|
567 |
+
#: gallery-plugin.php:1173
|
568 |
#, fuzzy
|
569 |
msgid "Image Name"
|
570 |
msgstr "عکس "
|
571 |
|
572 |
+
#: gallery-plugin.php:1175
|
573 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: gallery-plugin.php:1176
|
577 |
#, fuzzy
|
578 |
msgid "Random"
|
579 |
msgstr "تصادفی"
|
580 |
|
581 |
+
#: gallery-plugin.php:1180
|
582 |
#, fuzzy
|
583 |
msgid "Sort images"
|
584 |
msgstr "تعداد عکسها در سطر"
|
585 |
|
586 |
+
#: gallery-plugin.php:1182
|
587 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: gallery-plugin.php:1183
|
591 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: gallery-plugin.php:1187
|
595 |
msgid "Display text above the image"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: gallery-plugin.php:1189
|
599 |
msgid "If you want to display text just in a lightbox"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: gallery-plugin.php:1193
|
603 |
#, fuzzy
|
604 |
msgid "Display the Back link"
|
605 |
msgstr "نشان دادن لینک برگشت"
|
606 |
|
607 |
+
#: gallery-plugin.php:1199
|
608 |
#, fuzzy
|
609 |
msgid "Display the Back link in the shortcode"
|
610 |
msgstr "نشان دادن لینک برگشت در شرت کد"
|
611 |
|
612 |
+
#: gallery-plugin.php:1205
|
613 |
msgid "The Back link text"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: gallery-plugin.php:1211
|
617 |
msgid "The Back link URL"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1213
|
621 |
msgid "Gallery page (Page with Gallery Template)"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1215
|
625 |
msgid "(Full URL to custom page)"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:1219
|
629 |
#, fuzzy
|
630 |
msgid "The Read More link text"
|
631 |
msgstr "برچسب برای لینک بیشتر..."
|
632 |
|
633 |
+
#: gallery-plugin.php:1227
|
634 |
msgid "Display Like buttons in the lightbox"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: gallery-plugin.php:1229
|
638 |
msgid "FaceBook"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:1230
|
642 |
#, fuzzy
|
643 |
msgid "Twitter"
|
644 |
msgstr "عنوان"
|
645 |
|
646 |
+
#: gallery-plugin.php:1231
|
647 |
msgid "Pinterest"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: gallery-plugin.php:1232
|
651 |
msgid "Google +1"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: gallery-plugin.php:1245
|
655 |
msgid "Save Changes"
|
656 |
msgstr "ذخیره تنظیمات"
|
657 |
|
658 |
+
#: gallery-plugin.php:1258
|
659 |
msgid "FAQ"
|
660 |
msgstr "FAQ"
|
661 |
|
662 |
+
#: gallery-plugin.php:1259
|
663 |
msgid "Support"
|
664 |
msgstr "پشتیبانی"
|
665 |
|
666 |
+
#: gallery-plugin.php:1476
|
667 |
#: template/gallery-single-template.php:76
|
668 |
#, fuzzy
|
669 |
msgid "Sorry, nothing found."
|
670 |
msgstr "متاسفم؛چیزی یافت نشد"
|
671 |
|
672 |
+
#: gallery-plugin.php:1498
|
673 |
#: template/gallery-single-template.php:101
|
674 |
msgid "Download high resolution image"
|
675 |
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:103
|
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 "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galeries"
|
29 |
|
30 |
#: gallery-plugin.php:128
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -93,7 +93,7 @@ msgid "Please make a choice"
|
|
93 |
msgstr "Merci de faire un choix"
|
94 |
|
95 |
#: gallery-plugin.php:228
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Sort images by"
|
98 |
msgstr "Trier les images par"
|
99 |
|
@@ -158,317 +158,487 @@ msgid "Publishing"
|
|
158 |
msgstr "Public"
|
159 |
|
160 |
#: gallery-plugin.php:483
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Date"
|
163 |
msgstr "Date"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
#: gallery-plugin.php:666
|
|
|
|
|
|
|
|
|
176 |
#: gallery-plugin.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
#: gallery-plugin.php:684
|
|
|
|
|
|
|
|
|
178 |
#: gallery-plugin.php:692
|
179 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Read more"
|
181 |
msgstr "Lire plus..."
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Settings"
|
188 |
msgstr "Paramètres"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Installed plugins"
|
193 |
msgstr "Extensions installées"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Recommended plugins"
|
198 |
msgstr "Extensions recommandées"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Purchase"
|
202 |
msgstr "Acheter"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "Free plugins"
|
206 |
msgstr "Extensions gratuites"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Download"
|
210 |
msgstr "Télécharger"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, php-format
|
214 |
msgid "Install %s"
|
215 |
msgstr "Installation %s"
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Install now from wordpress.org"
|
219 |
msgstr "Installation à partir de wordpress.org"
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "If you have any questions, please contact us via"
|
223 |
msgstr "Si vous avez des questions, merci de nous contacter via "
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
msgid "See images »"
|
227 |
msgstr "Voir les images »"
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Settings are saved"
|
231 |
msgstr "Paramètres sauvegardés."
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "Gallery Settings"
|
235 |
msgstr "Paramètres de la galerie"
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
239 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Image size for the album cover"
|
243 |
msgstr "Taille de la vignette de l'album"
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
-
#: gallery-plugin.php:
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Image size"
|
249 |
msgstr "Taille de l'image"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Width (in px)"
|
254 |
msgstr "Largeur (en pixels)"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Height (in px)"
|
259 |
msgstr "Hauteur (en pixels)"
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
msgid "Gallery image size"
|
263 |
msgstr "Taille de l'image de la galerie"
|
264 |
|
265 |
-
#: gallery-plugin.php:
|
266 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
267 |
msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
msgid "Gallery image size in the lightbox"
|
271 |
msgstr "Taille de l'image de la galerie"
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Max width (in px)"
|
275 |
msgstr "Largeur maximum (en pixels)"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
msgid "Max height (in px)"
|
279 |
msgstr "Hauteur maximum (en pixels)"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
msgid "Display a full size image in the lightbox"
|
283 |
msgstr "Afficher une image en taille normale dans le boite"
|
284 |
|
285 |
-
#: gallery-plugin.php:
|
286 |
msgid "Crop position"
|
287 |
msgstr "Point de base"
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Horizontal"
|
291 |
msgstr "Horizontale"
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "left"
|
295 |
msgstr "gauche"
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "center"
|
300 |
msgstr "centré"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
msgid "right"
|
304 |
msgstr "droite"
|
305 |
|
306 |
-
#: gallery-plugin.php:
|
307 |
msgid "Vertical"
|
308 |
msgstr "Verticale"
|
309 |
|
310 |
-
#: gallery-plugin.php:
|
311 |
msgid "top"
|
312 |
msgstr "haut"
|
313 |
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "bottom"
|
316 |
msgstr "bas"
|
317 |
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "Lightbox background"
|
320 |
msgstr "Fond de la boite"
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "Default"
|
324 |
msgstr "Défaut"
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Background transparency (from 0 to 1)"
|
328 |
msgstr "Transparence du fond (de 0 à 1)"
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "Select a background color"
|
332 |
msgstr "Choisir une couleur pour le fond"
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "Background color"
|
336 |
msgstr "Couleur du fond"
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
-
#: gallery-plugin.php:
|
340 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
341 |
msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
|
342 |
|
343 |
-
#: gallery-plugin.php:
|
344 |
msgid "Images with border"
|
345 |
msgstr "Image avec bordure"
|
346 |
|
347 |
-
#: gallery-plugin.php:
|
348 |
msgid "Border width in px, just numbers"
|
349 |
msgstr "Taille de la bordure en pixel, juste le nombre"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Select a border color"
|
354 |
msgstr "Choisir une couleur pour la bordure"
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Number of images in the row"
|
358 |
msgstr "Nombre d'images par ligne"
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Start slideshow"
|
362 |
msgstr "Démarer le diaporama"
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
msgid "Slideshow interval"
|
366 |
msgstr "Interval de transition pour le diaporama"
|
367 |
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "Attachment ID"
|
370 |
msgstr "ID du fichier"
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Image Name"
|
374 |
msgstr "Nom de l'image "
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
378 |
msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "Random"
|
382 |
msgstr "Aléatoire"
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Sort images"
|
386 |
msgstr "Trier les images"
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
390 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
394 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Display text above the image"
|
398 |
msgstr "Aficher le texte au dessus de l'image"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "If you want to display text just in a lightbox"
|
402 |
msgstr "Si vous voulez juste afficher du texte dans un boite"
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Display the Back link"
|
406 |
msgstr "Afficher le lien de retour"
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
msgid "Display the Back link in the shortcode"
|
410 |
msgstr "Afficher le lien de retour dans le code court"
|
411 |
|
412 |
-
#: gallery-plugin.php:
|
413 |
msgid "The Back link text"
|
414 |
msgstr "Le text pour le lien de retour"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "The Back link URL"
|
418 |
msgstr "L'URL pour le lien de retour"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "Gallery page (Page with Gallery Template)"
|
422 |
msgstr "Page de la galerie (Page avec le modèle de galerie)"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "(Full URL to custom page)"
|
426 |
msgstr "(URL complète pour la page spécifique)"
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "The Read More link text"
|
430 |
msgstr "Texte pour le lien \"Read More\""
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Display Like buttons in the lightbox"
|
435 |
msgstr "Afficher une image en taille normale dans le boite"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
msgid "FaceBook"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
#, fuzzy
|
443 |
msgid "Twitter"
|
444 |
msgstr "Titre"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "Pinterest"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Google +1"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Save Changes"
|
456 |
msgstr "Sauvegarder"
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "FAQ"
|
460 |
msgstr "FAQ"
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
msgid "Support"
|
464 |
msgstr "Soutien"
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
#: template/gallery-single-template.php:76
|
468 |
msgid "Sorry, nothing found."
|
469 |
msgstr "Désolé, rien n'a été trouvé"
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
#: template/gallery-single-template.php:101
|
473 |
msgid "Download high resolution image"
|
474 |
msgstr "Télécharger l'image en haute résolution"
|
@@ -487,8 +657,6 @@ msgstr "Image "
|
|
487 |
#~ msgstr "Fichiers trier par"
|
488 |
#~ msgid "attachments order"
|
489 |
#~ msgstr "ordre des fichiers"
|
490 |
-
#~ msgid "Link URL"
|
491 |
-
#~ msgstr "URL du lien"
|
492 |
#~ msgid "Size for gallery image"
|
493 |
#~ msgstr "Taille de la vignette de la galerie"
|
494 |
#~ msgid "attachment title"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:30+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Didier, L Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:103
|
21 |
+
#: gallery-plugin.php:1056
|
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 "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
24 |
|
28 |
msgstr "Galeries"
|
29 |
|
30 |
#: gallery-plugin.php:128
|
31 |
+
#: gallery-plugin.php:923
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
93 |
msgstr "Merci de faire un choix"
|
94 |
|
95 |
#: gallery-plugin.php:228
|
96 |
+
#: gallery-plugin.php:1170
|
97 |
msgid "Sort images by"
|
98 |
msgstr "Trier les images par"
|
99 |
|
158 |
msgstr "Public"
|
159 |
|
160 |
#: gallery-plugin.php:483
|
161 |
+
#: gallery-plugin.php:1174
|
162 |
msgid "Date"
|
163 |
msgstr "Date"
|
164 |
|
165 |
+
#: gallery-plugin.php:658
|
166 |
+
msgid "Not set"
|
167 |
+
msgstr ""
|
168 |
|
169 |
+
#: gallery-plugin.php:660
|
170 |
+
#: gallery-plugin.php:664
|
171 |
+
msgid "On"
|
172 |
+
msgstr ""
|
173 |
|
174 |
+
#: gallery-plugin.php:662
|
175 |
#: gallery-plugin.php:666
|
176 |
+
msgid "Off"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: gallery-plugin.php:670
|
180 |
#: gallery-plugin.php:674
|
181 |
+
#: gallery-plugin.php:678
|
182 |
+
#: gallery-plugin.php:682
|
183 |
+
#: gallery-plugin.php:686
|
184 |
+
#: gallery-plugin.php:712
|
185 |
+
msgid "N/A"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
#: gallery-plugin.php:684
|
189 |
+
msgid " Mb"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: gallery-plugin.php:688
|
193 |
#: gallery-plugin.php:692
|
194 |
+
#: gallery-plugin.php:696
|
195 |
+
#: gallery-plugin.php:707
|
196 |
+
msgid "Yes"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:690
|
200 |
+
#: gallery-plugin.php:694
|
201 |
+
#: gallery-plugin.php:698
|
202 |
+
#: gallery-plugin.php:709
|
203 |
+
msgid "No"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: gallery-plugin.php:723
|
207 |
+
msgid "Operating System"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: gallery-plugin.php:724
|
211 |
+
msgid "Server"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:725
|
215 |
+
msgid "Memory usage"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:726
|
219 |
+
msgid "MYSQL Version"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:727
|
223 |
+
msgid "SQL Mode"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:728
|
227 |
+
msgid "PHP Version"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:729
|
231 |
+
msgid "PHP Safe Mode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:730
|
235 |
+
msgid "PHP Allow URL fopen"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:731
|
239 |
+
msgid "PHP Memory Limit"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:732
|
243 |
+
#, fuzzy
|
244 |
+
msgid "PHP Max Upload Size"
|
245 |
+
msgstr "Envoi de fichier"
|
246 |
+
|
247 |
+
#: gallery-plugin.php:733
|
248 |
+
msgid "PHP Max Post Size"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: gallery-plugin.php:734
|
252 |
+
msgid "PHP Max Script Execute Time"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: gallery-plugin.php:735
|
256 |
+
msgid "PHP Exif support"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: gallery-plugin.php:736
|
260 |
+
msgid "PHP IPTC support"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:737
|
264 |
+
msgid "PHP XML support"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:738
|
268 |
+
#, fuzzy
|
269 |
+
msgid "Site URL"
|
270 |
+
msgstr "URL du lien"
|
271 |
+
|
272 |
+
#: gallery-plugin.php:739
|
273 |
+
msgid "Home URL"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:740
|
277 |
+
msgid "WordPress Version"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: gallery-plugin.php:741
|
281 |
+
msgid "WordPress DB Version"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: gallery-plugin.php:742
|
285 |
+
msgid "Multisite"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: gallery-plugin.php:743
|
289 |
+
msgid "Active Theme"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: gallery-plugin.php:758
|
293 |
+
msgid "Please enter a valid email address."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: gallery-plugin.php:762
|
297 |
+
msgid "Email with system info is sent to "
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: gallery-plugin.php:766
|
301 |
+
msgid "Thank you for contacting us."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: gallery-plugin.php:794
|
305 |
+
msgid "Sorry, email message could not be delivered."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: gallery-plugin.php:802
|
309 |
+
msgid "Pro plugins"
|
310 |
+
msgstr "Extensions Pro"
|
311 |
+
|
312 |
+
#: gallery-plugin.php:805
|
313 |
+
#: gallery-plugin.php:831
|
314 |
+
msgid "Activated plugins"
|
315 |
+
msgstr "Extensions activées"
|
316 |
+
|
317 |
+
#: gallery-plugin.php:807
|
318 |
+
#: gallery-plugin.php:815
|
319 |
+
#: gallery-plugin.php:823
|
320 |
+
#: gallery-plugin.php:833
|
321 |
+
#: gallery-plugin.php:841
|
322 |
+
#: gallery-plugin.php:849
|
323 |
msgid "Read more"
|
324 |
msgstr "Lire plus..."
|
325 |
|
326 |
+
#: gallery-plugin.php:807
|
327 |
+
#: gallery-plugin.php:833
|
328 |
+
#: gallery-plugin.php:1257
|
329 |
+
#: gallery-plugin.php:1272
|
330 |
msgid "Settings"
|
331 |
msgstr "Paramètres"
|
332 |
|
333 |
+
#: gallery-plugin.php:813
|
334 |
+
#: gallery-plugin.php:839
|
335 |
msgid "Installed plugins"
|
336 |
msgstr "Extensions installées"
|
337 |
|
338 |
+
#: gallery-plugin.php:821
|
339 |
+
#: gallery-plugin.php:847
|
340 |
msgid "Recommended plugins"
|
341 |
msgstr "Extensions recommandées"
|
342 |
|
343 |
+
#: gallery-plugin.php:823
|
344 |
msgid "Purchase"
|
345 |
msgstr "Acheter"
|
346 |
|
347 |
+
#: gallery-plugin.php:828
|
348 |
msgid "Free plugins"
|
349 |
msgstr "Extensions gratuites"
|
350 |
|
351 |
+
#: gallery-plugin.php:849
|
352 |
msgid "Download"
|
353 |
msgstr "Télécharger"
|
354 |
|
355 |
+
#: gallery-plugin.php:849
|
356 |
#, php-format
|
357 |
msgid "Install %s"
|
358 |
msgstr "Installation %s"
|
359 |
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Install now from wordpress.org"
|
362 |
msgstr "Installation à partir de wordpress.org"
|
363 |
|
364 |
+
#: gallery-plugin.php:854
|
365 |
msgid "If you have any questions, please contact us via"
|
366 |
msgstr "Si vous avez des questions, merci de nous contacter via "
|
367 |
|
368 |
+
#: gallery-plugin.php:861
|
369 |
+
msgid "System status"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: gallery-plugin.php:865
|
373 |
+
msgid "Environment"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: gallery-plugin.php:876
|
377 |
+
#, fuzzy
|
378 |
+
msgid "Active Plugins"
|
379 |
+
msgstr "Extensions activées"
|
380 |
+
|
381 |
+
#: gallery-plugin.php:887
|
382 |
+
#, fuzzy
|
383 |
+
msgid "Inactive Plugins"
|
384 |
+
msgstr "Extensions activées"
|
385 |
+
|
386 |
+
#: gallery-plugin.php:901
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Send to support"
|
389 |
+
msgstr "Soutien"
|
390 |
+
|
391 |
+
#: gallery-plugin.php:908
|
392 |
+
msgid "Send to custom email »"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: gallery-plugin.php:950
|
396 |
msgid "See images »"
|
397 |
msgstr "Voir les images »"
|
398 |
|
399 |
+
#: gallery-plugin.php:1049
|
400 |
msgid "Settings are saved"
|
401 |
msgstr "Paramètres sauvegardés."
|
402 |
|
403 |
+
#: gallery-plugin.php:1063
|
404 |
msgid "Gallery Settings"
|
405 |
msgstr "Paramètres de la galerie"
|
406 |
|
407 |
+
#: gallery-plugin.php:1066
|
408 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
409 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
410 |
|
411 |
+
#: gallery-plugin.php:1070
|
412 |
msgid "Image size for the album cover"
|
413 |
msgstr "Taille de la vignette de l'album"
|
414 |
|
415 |
+
#: gallery-plugin.php:1072
|
416 |
+
#: gallery-plugin.php:1080
|
417 |
+
#: gallery-plugin.php:1093
|
418 |
msgid "Image size"
|
419 |
msgstr "Taille de l'image"
|
420 |
|
421 |
+
#: gallery-plugin.php:1073
|
422 |
+
#: gallery-plugin.php:1081
|
423 |
msgid "Width (in px)"
|
424 |
msgstr "Largeur (en pixels)"
|
425 |
|
426 |
+
#: gallery-plugin.php:1074
|
427 |
+
#: gallery-plugin.php:1082
|
428 |
msgid "Height (in px)"
|
429 |
msgstr "Hauteur (en pixels)"
|
430 |
|
431 |
+
#: gallery-plugin.php:1078
|
432 |
msgid "Gallery image size"
|
433 |
msgstr "Taille de l'image de la galerie"
|
434 |
|
435 |
+
#: gallery-plugin.php:1086
|
436 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
437 |
msgstr "WordPress créera une copie de la miniature avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
438 |
|
439 |
+
#: gallery-plugin.php:1091
|
440 |
msgid "Gallery image size in the lightbox"
|
441 |
msgstr "Taille de l'image de la galerie"
|
442 |
|
443 |
+
#: gallery-plugin.php:1094
|
444 |
msgid "Max width (in px)"
|
445 |
msgstr "Largeur maximum (en pixels)"
|
446 |
|
447 |
+
#: gallery-plugin.php:1095
|
448 |
msgid "Max height (in px)"
|
449 |
msgstr "Hauteur maximum (en pixels)"
|
450 |
|
451 |
+
#: gallery-plugin.php:1096
|
452 |
msgid "Display a full size image in the lightbox"
|
453 |
msgstr "Afficher une image en taille normale dans le boite"
|
454 |
|
455 |
+
#: gallery-plugin.php:1100
|
456 |
msgid "Crop position"
|
457 |
msgstr "Point de base"
|
458 |
|
459 |
+
#: gallery-plugin.php:1102
|
460 |
msgid "Horizontal"
|
461 |
msgstr "Horizontale"
|
462 |
|
463 |
+
#: gallery-plugin.php:1104
|
464 |
msgid "left"
|
465 |
msgstr "gauche"
|
466 |
|
467 |
+
#: gallery-plugin.php:1105
|
468 |
+
#: gallery-plugin.php:1112
|
469 |
msgid "center"
|
470 |
msgstr "centré"
|
471 |
|
472 |
+
#: gallery-plugin.php:1106
|
473 |
msgid "right"
|
474 |
msgstr "droite"
|
475 |
|
476 |
+
#: gallery-plugin.php:1109
|
477 |
msgid "Vertical"
|
478 |
msgstr "Verticale"
|
479 |
|
480 |
+
#: gallery-plugin.php:1111
|
481 |
msgid "top"
|
482 |
msgstr "haut"
|
483 |
|
484 |
+
#: gallery-plugin.php:1113
|
485 |
msgid "bottom"
|
486 |
msgstr "bas"
|
487 |
|
488 |
+
#: gallery-plugin.php:1118
|
489 |
msgid "Lightbox background"
|
490 |
msgstr "Fond de la boite"
|
491 |
|
492 |
+
#: gallery-plugin.php:1120
|
493 |
msgid "Default"
|
494 |
msgstr "Défaut"
|
495 |
|
496 |
+
#: gallery-plugin.php:1121
|
497 |
msgid "Background transparency (from 0 to 1)"
|
498 |
msgstr "Transparence du fond (de 0 à 1)"
|
499 |
|
500 |
+
#: gallery-plugin.php:1123
|
501 |
msgid "Select a background color"
|
502 |
msgstr "Choisir une couleur pour le fond"
|
503 |
|
504 |
+
#: gallery-plugin.php:1125
|
505 |
msgid "Background color"
|
506 |
msgstr "Couleur du fond"
|
507 |
|
508 |
+
#: gallery-plugin.php:1132
|
509 |
+
#: gallery-plugin.php:1237
|
510 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
511 |
msgstr "Cette fonction est disponible dans le version pro de ce plugin. Pour plus de détails, suivre le lien"
|
512 |
|
513 |
+
#: gallery-plugin.php:1139
|
514 |
msgid "Images with border"
|
515 |
msgstr "Image avec bordure"
|
516 |
|
517 |
+
#: gallery-plugin.php:1142
|
518 |
msgid "Border width in px, just numbers"
|
519 |
msgstr "Taille de la bordure en pixel, juste le nombre"
|
520 |
|
521 |
+
#: gallery-plugin.php:1144
|
522 |
+
#: gallery-plugin.php:1146
|
523 |
msgid "Select a border color"
|
524 |
msgstr "Choisir une couleur pour la bordure"
|
525 |
|
526 |
+
#: gallery-plugin.php:1152
|
527 |
msgid "Number of images in the row"
|
528 |
msgstr "Nombre d'images par ligne"
|
529 |
|
530 |
+
#: gallery-plugin.php:1158
|
531 |
msgid "Start slideshow"
|
532 |
msgstr "Démarer le diaporama"
|
533 |
|
534 |
+
#: gallery-plugin.php:1164
|
535 |
msgid "Slideshow interval"
|
536 |
msgstr "Interval de transition pour le diaporama"
|
537 |
|
538 |
+
#: gallery-plugin.php:1172
|
539 |
msgid "Attachment ID"
|
540 |
msgstr "ID du fichier"
|
541 |
|
542 |
+
#: gallery-plugin.php:1173
|
543 |
msgid "Image Name"
|
544 |
msgstr "Nom de l'image "
|
545 |
|
546 |
+
#: gallery-plugin.php:1175
|
547 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
548 |
msgstr "Ordre de tri (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
549 |
|
550 |
+
#: gallery-plugin.php:1176
|
551 |
msgid "Random"
|
552 |
msgstr "Aléatoire"
|
553 |
|
554 |
+
#: gallery-plugin.php:1180
|
555 |
msgid "Sort images"
|
556 |
msgstr "Trier les images"
|
557 |
|
558 |
+
#: gallery-plugin.php:1182
|
559 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
560 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
561 |
|
562 |
+
#: gallery-plugin.php:1183
|
563 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
564 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
565 |
|
566 |
+
#: gallery-plugin.php:1187
|
567 |
msgid "Display text above the image"
|
568 |
msgstr "Aficher le texte au dessus de l'image"
|
569 |
|
570 |
+
#: gallery-plugin.php:1189
|
571 |
msgid "If you want to display text just in a lightbox"
|
572 |
msgstr "Si vous voulez juste afficher du texte dans un boite"
|
573 |
|
574 |
+
#: gallery-plugin.php:1193
|
575 |
msgid "Display the Back link"
|
576 |
msgstr "Afficher le lien de retour"
|
577 |
|
578 |
+
#: gallery-plugin.php:1199
|
579 |
msgid "Display the Back link in the shortcode"
|
580 |
msgstr "Afficher le lien de retour dans le code court"
|
581 |
|
582 |
+
#: gallery-plugin.php:1205
|
583 |
msgid "The Back link text"
|
584 |
msgstr "Le text pour le lien de retour"
|
585 |
|
586 |
+
#: gallery-plugin.php:1211
|
587 |
msgid "The Back link URL"
|
588 |
msgstr "L'URL pour le lien de retour"
|
589 |
|
590 |
+
#: gallery-plugin.php:1213
|
591 |
msgid "Gallery page (Page with Gallery Template)"
|
592 |
msgstr "Page de la galerie (Page avec le modèle de galerie)"
|
593 |
|
594 |
+
#: gallery-plugin.php:1215
|
595 |
msgid "(Full URL to custom page)"
|
596 |
msgstr "(URL complète pour la page spécifique)"
|
597 |
|
598 |
+
#: gallery-plugin.php:1219
|
599 |
msgid "The Read More link text"
|
600 |
msgstr "Texte pour le lien \"Read More\""
|
601 |
|
602 |
+
#: gallery-plugin.php:1227
|
603 |
#, fuzzy
|
604 |
msgid "Display Like buttons in the lightbox"
|
605 |
msgstr "Afficher une image en taille normale dans le boite"
|
606 |
|
607 |
+
#: gallery-plugin.php:1229
|
608 |
msgid "FaceBook"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: gallery-plugin.php:1230
|
612 |
#, fuzzy
|
613 |
msgid "Twitter"
|
614 |
msgstr "Titre"
|
615 |
|
616 |
+
#: gallery-plugin.php:1231
|
617 |
msgid "Pinterest"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1232
|
621 |
msgid "Google +1"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1245
|
625 |
msgid "Save Changes"
|
626 |
msgstr "Sauvegarder"
|
627 |
|
628 |
+
#: gallery-plugin.php:1258
|
629 |
msgid "FAQ"
|
630 |
msgstr "FAQ"
|
631 |
|
632 |
+
#: gallery-plugin.php:1259
|
633 |
msgid "Support"
|
634 |
msgstr "Soutien"
|
635 |
|
636 |
+
#: gallery-plugin.php:1476
|
637 |
#: template/gallery-single-template.php:76
|
638 |
msgid "Sorry, nothing found."
|
639 |
msgstr "Désolé, rien n'a été trouvé"
|
640 |
|
641 |
+
#: gallery-plugin.php:1498
|
642 |
#: template/gallery-single-template.php:101
|
643 |
msgid "Download high resolution image"
|
644 |
msgstr "Télécharger l'image en haute résolution"
|
657 |
#~ msgstr "Fichiers trier par"
|
658 |
#~ msgid "attachments order"
|
659 |
#~ msgstr "ordre des fichiers"
|
|
|
|
|
660 |
#~ msgid "Size for gallery image"
|
661 |
#~ msgstr "Taille de la vignette de la galerie"
|
662 |
#~ msgid "attachment title"
|
languages/gallery-he_IL.mo
CHANGED
Binary file
|
languages/gallery-he_IL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
|
21 |
# @ gallery
|
22 |
#: gallery-plugin.php:103
|
23 |
-
#: gallery-plugin.php:
|
24 |
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"
|
25 |
msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
|
26 |
|
@@ -32,7 +32,7 @@ msgstr "גלריות"
|
|
32 |
|
33 |
# @ gallery
|
34 |
#: gallery-plugin.php:128
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Gallery"
|
37 |
msgstr "גלריה"
|
38 |
|
@@ -115,7 +115,7 @@ msgstr ""
|
|
115 |
|
116 |
# @ gallery
|
117 |
#: gallery-plugin.php:228
|
118 |
-
#: gallery-plugin.php:
|
119 |
#, fuzzy
|
120 |
msgid "Sort images by"
|
121 |
msgstr "מספר תמונות בשורה"
|
@@ -192,378 +192,551 @@ msgstr "ציבורי"
|
|
192 |
|
193 |
# @ gallery
|
194 |
#: gallery-plugin.php:483
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Date"
|
197 |
msgstr "תאריך"
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
# @ gallery
|
200 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
#, fuzzy
|
202 |
msgid "Pro plugins"
|
203 |
msgstr "תוספים מומלצים"
|
204 |
|
205 |
# @ gallery
|
206 |
-
#: gallery-plugin.php:
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Activated plugins"
|
209 |
msgstr "תוספים פעילים"
|
210 |
|
211 |
# @ gallery
|
212 |
-
#: gallery-plugin.php:
|
213 |
-
#: gallery-plugin.php:
|
214 |
-
#: gallery-plugin.php:
|
215 |
-
#: gallery-plugin.php:
|
216 |
-
#: gallery-plugin.php:
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Read more"
|
219 |
msgstr "קרא עוד"
|
220 |
|
221 |
# @ gallery
|
222 |
-
#: gallery-plugin.php:
|
223 |
-
#: gallery-plugin.php:
|
224 |
-
#: gallery-plugin.php:
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Settings"
|
227 |
msgstr "הגדרות"
|
228 |
|
229 |
# @ gallery
|
230 |
-
#: gallery-plugin.php:
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "Installed plugins"
|
233 |
msgstr "תוספים מותקנים"
|
234 |
|
235 |
# @ gallery
|
236 |
-
#: gallery-plugin.php:
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "Recommended plugins"
|
239 |
msgstr "תוספים מומלצים"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Purchase"
|
243 |
msgstr ""
|
244 |
|
245 |
# @ gallery
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Free plugins"
|
249 |
msgstr "תוספים מומלצים"
|
250 |
|
251 |
# @ gallery
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Download"
|
254 |
msgstr "הורד"
|
255 |
|
256 |
# @ default
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, php-format
|
259 |
msgid "Install %s"
|
260 |
msgstr "התקן %s"
|
261 |
|
262 |
# @ gallery
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid "Install now from wordpress.org"
|
265 |
msgstr "הורד כעת מ wordpress.org"
|
266 |
|
267 |
# @ gallery
|
268 |
-
#: gallery-plugin.php:
|
269 |
#, fuzzy
|
270 |
msgid "If you have any questions, please contact us via"
|
271 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
# @ gallery
|
274 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
#, fuzzy
|
276 |
msgid "See images »"
|
277 |
msgstr "ראו תמונה »"
|
278 |
|
279 |
# @ gallery
|
280 |
-
#: gallery-plugin.php:
|
281 |
#, fuzzy
|
282 |
msgid "Settings are saved"
|
283 |
msgstr "האפשרויות נשמרו."
|
284 |
|
285 |
# @ gallery
|
286 |
-
#: gallery-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "Gallery Settings"
|
289 |
msgstr "אפשרויות גלריה"
|
290 |
|
291 |
# @ gallery
|
292 |
-
#: gallery-plugin.php:
|
293 |
#, fuzzy
|
294 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
295 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
296 |
|
297 |
# @ gallery
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "Image size for the album cover"
|
301 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
302 |
|
303 |
# @ gallery
|
304 |
-
#: gallery-plugin.php:
|
305 |
-
#: gallery-plugin.php:
|
306 |
-
#: gallery-plugin.php:
|
307 |
#, fuzzy
|
308 |
msgid "Image size"
|
309 |
msgstr "שם גודל תמונה"
|
310 |
|
311 |
# @ gallery
|
312 |
-
#: gallery-plugin.php:
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Width (in px)"
|
315 |
msgstr "רוחב (בפיקסלים)"
|
316 |
|
317 |
# @ gallery
|
318 |
-
#: gallery-plugin.php:
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Height (in px)"
|
321 |
msgstr "גובה (בפיקסלים)"
|
322 |
|
323 |
# @ gallery
|
324 |
-
#: gallery-plugin.php:
|
325 |
#, fuzzy
|
326 |
msgid "Gallery image size"
|
327 |
msgstr "גלריות"
|
328 |
|
329 |
# @ gallery
|
330 |
-
#: gallery-plugin.php:
|
331 |
#, fuzzy
|
332 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
333 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Gallery image size in the lightbox"
|
337 |
msgstr ""
|
338 |
|
339 |
# @ gallery
|
340 |
-
#: gallery-plugin.php:
|
341 |
#, fuzzy
|
342 |
msgid "Max width (in px)"
|
343 |
msgstr "רוחב (בפיקסלים)"
|
344 |
|
345 |
# @ gallery
|
346 |
-
#: gallery-plugin.php:
|
347 |
#, fuzzy
|
348 |
msgid "Max height (in px)"
|
349 |
msgstr "גובה (בפיקסלים)"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Display a full size image in the lightbox"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
msgid "Crop position"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "Horizontal"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "left"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "center"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "right"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "Vertical"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "top"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "bottom"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Lightbox background"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Default"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Background transparency (from 0 to 1)"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "Select a background color"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Background color"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "Images with border"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Border width in px, just numbers"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Select a border color"
|
424 |
msgstr ""
|
425 |
|
426 |
# @ gallery
|
427 |
-
#: gallery-plugin.php:
|
428 |
#, fuzzy
|
429 |
msgid "Number of images in the row"
|
430 |
msgstr "מספר תמונות בשורה"
|
431 |
|
432 |
# @ gallery
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "Start slideshow"
|
435 |
msgstr "התחל מצגת"
|
436 |
|
437 |
# @ gallery
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Slideshow interval"
|
440 |
msgstr "מרווח מצגת"
|
441 |
|
442 |
# @ gallery
|
443 |
-
#: gallery-plugin.php:
|
444 |
#, fuzzy
|
445 |
msgid "Attachment ID"
|
446 |
msgstr "מזהה קובץ מצורף"
|
447 |
|
448 |
# @ gallery
|
449 |
-
#: gallery-plugin.php:
|
450 |
#, fuzzy
|
451 |
msgid "Image Name"
|
452 |
msgstr "תמונה "
|
453 |
|
454 |
# @ gallery
|
455 |
-
#: gallery-plugin.php:
|
456 |
#, fuzzy
|
457 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
458 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
459 |
|
460 |
# @ gallery
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Random"
|
464 |
msgstr "אקראי"
|
465 |
|
466 |
# @ gallery
|
467 |
-
#: gallery-plugin.php:
|
468 |
#, fuzzy
|
469 |
msgid "Sort images"
|
470 |
msgstr "מספר תמונות בשורה"
|
471 |
|
472 |
# @ gallery
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
475 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
476 |
|
477 |
# @ gallery
|
478 |
-
#: gallery-plugin.php:
|
479 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
480 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
481 |
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid "Display text above the image"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
msgid "If you want to display text just in a lightbox"
|
488 |
msgstr ""
|
489 |
|
490 |
# @ gallery
|
491 |
-
#: gallery-plugin.php:
|
492 |
#, fuzzy
|
493 |
msgid "Display the Back link"
|
494 |
msgstr "הצג קישור חזרה"
|
495 |
|
496 |
# @ gallery
|
497 |
-
#: gallery-plugin.php:
|
498 |
#, fuzzy
|
499 |
msgid "Display the Back link in the shortcode"
|
500 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "The Back link text"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "The Back link URL"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
msgid "Gallery page (Page with Gallery Template)"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
msgid "(Full URL to custom page)"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: gallery-plugin.php:
|
519 |
msgid "The Read More link text"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: gallery-plugin.php:
|
523 |
msgid "Display Like buttons in the lightbox"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid "FaceBook"
|
528 |
msgstr ""
|
529 |
|
530 |
# @ gallery
|
531 |
-
#: gallery-plugin.php:
|
532 |
#, fuzzy
|
533 |
msgid "Twitter"
|
534 |
msgstr "כותרת"
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid "Pinterest"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
msgid "Google +1"
|
542 |
msgstr ""
|
543 |
|
544 |
# @ default
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "Save Changes"
|
547 |
msgstr "שמור שינויים"
|
548 |
|
549 |
# @ gallery
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "FAQ"
|
552 |
msgstr "שאלות ותשובות"
|
553 |
|
554 |
# @ gallery
|
555 |
-
#: gallery-plugin.php:
|
556 |
msgid "Support"
|
557 |
msgstr "תמיכה"
|
558 |
|
559 |
# @ gallery
|
560 |
-
#: gallery-plugin.php:
|
561 |
#: template/gallery-single-template.php:76
|
562 |
#, fuzzy
|
563 |
msgid "Sorry, nothing found."
|
564 |
msgstr "מצטערים, אין מה למצוא."
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
#: template/gallery-single-template.php:101
|
568 |
msgid "Download high resolution image"
|
569 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
|
21 |
# @ gallery
|
22 |
#: gallery-plugin.php:103
|
23 |
+
#: gallery-plugin.php:1056
|
24 |
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"
|
25 |
msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
|
26 |
|
32 |
|
33 |
# @ gallery
|
34 |
#: gallery-plugin.php:128
|
35 |
+
#: gallery-plugin.php:923
|
36 |
msgid "Gallery"
|
37 |
msgstr "גלריה"
|
38 |
|
115 |
|
116 |
# @ gallery
|
117 |
#: gallery-plugin.php:228
|
118 |
+
#: gallery-plugin.php:1170
|
119 |
#, fuzzy
|
120 |
msgid "Sort images by"
|
121 |
msgstr "מספר תמונות בשורה"
|
192 |
|
193 |
# @ gallery
|
194 |
#: gallery-plugin.php:483
|
195 |
+
#: gallery-plugin.php:1174
|
196 |
msgid "Date"
|
197 |
msgstr "תאריך"
|
198 |
|
199 |
+
#: gallery-plugin.php:658
|
200 |
+
msgid "Not set"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:660
|
204 |
+
#: gallery-plugin.php:664
|
205 |
+
msgid "On"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: gallery-plugin.php:662
|
209 |
+
#: gallery-plugin.php:666
|
210 |
+
msgid "Off"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:670
|
214 |
+
#: gallery-plugin.php:674
|
215 |
+
#: gallery-plugin.php:678
|
216 |
+
#: gallery-plugin.php:682
|
217 |
+
#: gallery-plugin.php:686
|
218 |
+
#: gallery-plugin.php:712
|
219 |
+
msgid "N/A"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:684
|
223 |
+
msgid " Mb"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:688
|
227 |
+
#: gallery-plugin.php:692
|
228 |
+
#: gallery-plugin.php:696
|
229 |
+
#: gallery-plugin.php:707
|
230 |
+
msgid "Yes"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:690
|
234 |
+
#: gallery-plugin.php:694
|
235 |
+
#: gallery-plugin.php:698
|
236 |
+
#: gallery-plugin.php:709
|
237 |
+
msgid "No"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:723
|
241 |
+
msgid "Operating System"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: gallery-plugin.php:724
|
245 |
+
msgid "Server"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: gallery-plugin.php:725
|
249 |
+
msgid "Memory usage"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: gallery-plugin.php:726
|
253 |
+
msgid "MYSQL Version"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: gallery-plugin.php:727
|
257 |
+
msgid "SQL Mode"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: gallery-plugin.php:728
|
261 |
+
msgid "PHP Version"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: gallery-plugin.php:729
|
265 |
+
msgid "PHP Safe Mode"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: gallery-plugin.php:730
|
269 |
+
msgid "PHP Allow URL fopen"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: gallery-plugin.php:731
|
273 |
+
msgid "PHP Memory Limit"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
# @ gallery
|
277 |
+
#: gallery-plugin.php:732
|
278 |
+
#, fuzzy
|
279 |
+
msgid "PHP Max Upload Size"
|
280 |
+
msgstr "העלה קובץ"
|
281 |
+
|
282 |
+
#: gallery-plugin.php:733
|
283 |
+
msgid "PHP Max Post Size"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: gallery-plugin.php:734
|
287 |
+
msgid "PHP Max Script Execute Time"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: gallery-plugin.php:735
|
291 |
+
msgid "PHP Exif support"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: gallery-plugin.php:736
|
295 |
+
msgid "PHP IPTC support"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: gallery-plugin.php:737
|
299 |
+
msgid "PHP XML support"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: gallery-plugin.php:738
|
303 |
+
msgid "Site URL"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:739
|
307 |
+
msgid "Home URL"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:740
|
311 |
+
msgid "WordPress Version"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: gallery-plugin.php:741
|
315 |
+
msgid "WordPress DB Version"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: gallery-plugin.php:742
|
319 |
+
msgid "Multisite"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: gallery-plugin.php:743
|
323 |
+
msgid "Active Theme"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: gallery-plugin.php:758
|
327 |
+
msgid "Please enter a valid email address."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: gallery-plugin.php:762
|
331 |
+
msgid "Email with system info is sent to "
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: gallery-plugin.php:766
|
335 |
+
msgid "Thank you for contacting us."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: gallery-plugin.php:794
|
339 |
+
msgid "Sorry, email message could not be delivered."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
# @ gallery
|
343 |
+
#: gallery-plugin.php:802
|
344 |
#, fuzzy
|
345 |
msgid "Pro plugins"
|
346 |
msgstr "תוספים מומלצים"
|
347 |
|
348 |
# @ gallery
|
349 |
+
#: gallery-plugin.php:805
|
350 |
+
#: gallery-plugin.php:831
|
351 |
msgid "Activated plugins"
|
352 |
msgstr "תוספים פעילים"
|
353 |
|
354 |
# @ gallery
|
355 |
+
#: gallery-plugin.php:807
|
356 |
+
#: gallery-plugin.php:815
|
357 |
+
#: gallery-plugin.php:823
|
358 |
+
#: gallery-plugin.php:833
|
359 |
+
#: gallery-plugin.php:841
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Read more"
|
362 |
msgstr "קרא עוד"
|
363 |
|
364 |
# @ gallery
|
365 |
+
#: gallery-plugin.php:807
|
366 |
+
#: gallery-plugin.php:833
|
367 |
+
#: gallery-plugin.php:1257
|
368 |
+
#: gallery-plugin.php:1272
|
369 |
msgid "Settings"
|
370 |
msgstr "הגדרות"
|
371 |
|
372 |
# @ gallery
|
373 |
+
#: gallery-plugin.php:813
|
374 |
+
#: gallery-plugin.php:839
|
375 |
msgid "Installed plugins"
|
376 |
msgstr "תוספים מותקנים"
|
377 |
|
378 |
# @ gallery
|
379 |
+
#: gallery-plugin.php:821
|
380 |
+
#: gallery-plugin.php:847
|
381 |
msgid "Recommended plugins"
|
382 |
msgstr "תוספים מומלצים"
|
383 |
|
384 |
+
#: gallery-plugin.php:823
|
385 |
msgid "Purchase"
|
386 |
msgstr ""
|
387 |
|
388 |
# @ gallery
|
389 |
+
#: gallery-plugin.php:828
|
390 |
#, fuzzy
|
391 |
msgid "Free plugins"
|
392 |
msgstr "תוספים מומלצים"
|
393 |
|
394 |
# @ gallery
|
395 |
+
#: gallery-plugin.php:849
|
396 |
msgid "Download"
|
397 |
msgstr "הורד"
|
398 |
|
399 |
# @ default
|
400 |
+
#: gallery-plugin.php:849
|
401 |
#, php-format
|
402 |
msgid "Install %s"
|
403 |
msgstr "התקן %s"
|
404 |
|
405 |
# @ gallery
|
406 |
+
#: gallery-plugin.php:849
|
407 |
msgid "Install now from wordpress.org"
|
408 |
msgstr "הורד כעת מ wordpress.org"
|
409 |
|
410 |
# @ gallery
|
411 |
+
#: gallery-plugin.php:854
|
412 |
#, fuzzy
|
413 |
msgid "If you have any questions, please contact us via"
|
414 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
415 |
|
416 |
+
#: gallery-plugin.php:861
|
417 |
+
msgid "System status"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: gallery-plugin.php:865
|
421 |
+
msgid "Environment"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
# @ gallery
|
425 |
+
#: gallery-plugin.php:876
|
426 |
+
#, fuzzy
|
427 |
+
msgid "Active Plugins"
|
428 |
+
msgstr "תוספים פעילים"
|
429 |
+
|
430 |
+
# @ gallery
|
431 |
+
#: gallery-plugin.php:887
|
432 |
+
#, fuzzy
|
433 |
+
msgid "Inactive Plugins"
|
434 |
+
msgstr "תוספים פעילים"
|
435 |
+
|
436 |
+
# @ gallery
|
437 |
+
#: gallery-plugin.php:901
|
438 |
+
#, fuzzy
|
439 |
+
msgid "Send to support"
|
440 |
+
msgstr "תמיכה"
|
441 |
+
|
442 |
+
#: gallery-plugin.php:908
|
443 |
+
msgid "Send to custom email »"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
# @ gallery
|
447 |
+
#: gallery-plugin.php:950
|
448 |
#, fuzzy
|
449 |
msgid "See images »"
|
450 |
msgstr "ראו תמונה »"
|
451 |
|
452 |
# @ gallery
|
453 |
+
#: gallery-plugin.php:1049
|
454 |
#, fuzzy
|
455 |
msgid "Settings are saved"
|
456 |
msgstr "האפשרויות נשמרו."
|
457 |
|
458 |
# @ gallery
|
459 |
+
#: gallery-plugin.php:1063
|
460 |
#, fuzzy
|
461 |
msgid "Gallery Settings"
|
462 |
msgstr "אפשרויות גלריה"
|
463 |
|
464 |
# @ gallery
|
465 |
+
#: gallery-plugin.php:1066
|
466 |
#, fuzzy
|
467 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
468 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
469 |
|
470 |
# @ gallery
|
471 |
+
#: gallery-plugin.php:1070
|
472 |
#, fuzzy
|
473 |
msgid "Image size for the album cover"
|
474 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
475 |
|
476 |
# @ gallery
|
477 |
+
#: gallery-plugin.php:1072
|
478 |
+
#: gallery-plugin.php:1080
|
479 |
+
#: gallery-plugin.php:1093
|
480 |
#, fuzzy
|
481 |
msgid "Image size"
|
482 |
msgstr "שם גודל תמונה"
|
483 |
|
484 |
# @ gallery
|
485 |
+
#: gallery-plugin.php:1073
|
486 |
+
#: gallery-plugin.php:1081
|
487 |
msgid "Width (in px)"
|
488 |
msgstr "רוחב (בפיקסלים)"
|
489 |
|
490 |
# @ gallery
|
491 |
+
#: gallery-plugin.php:1074
|
492 |
+
#: gallery-plugin.php:1082
|
493 |
msgid "Height (in px)"
|
494 |
msgstr "גובה (בפיקסלים)"
|
495 |
|
496 |
# @ gallery
|
497 |
+
#: gallery-plugin.php:1078
|
498 |
#, fuzzy
|
499 |
msgid "Gallery image size"
|
500 |
msgstr "גלריות"
|
501 |
|
502 |
# @ gallery
|
503 |
+
#: gallery-plugin.php:1086
|
504 |
#, fuzzy
|
505 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
506 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
507 |
|
508 |
+
#: gallery-plugin.php:1091
|
509 |
msgid "Gallery image size in the lightbox"
|
510 |
msgstr ""
|
511 |
|
512 |
# @ gallery
|
513 |
+
#: gallery-plugin.php:1094
|
514 |
#, fuzzy
|
515 |
msgid "Max width (in px)"
|
516 |
msgstr "רוחב (בפיקסלים)"
|
517 |
|
518 |
# @ gallery
|
519 |
+
#: gallery-plugin.php:1095
|
520 |
#, fuzzy
|
521 |
msgid "Max height (in px)"
|
522 |
msgstr "גובה (בפיקסלים)"
|
523 |
|
524 |
+
#: gallery-plugin.php:1096
|
525 |
msgid "Display a full size image in the lightbox"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:1100
|
529 |
msgid "Crop position"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1102
|
533 |
msgid "Horizontal"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1104
|
537 |
msgid "left"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1105
|
541 |
+
#: gallery-plugin.php:1112
|
542 |
msgid "center"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: gallery-plugin.php:1106
|
546 |
msgid "right"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: gallery-plugin.php:1109
|
550 |
msgid "Vertical"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1111
|
554 |
msgid "top"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1113
|
558 |
msgid "bottom"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1118
|
562 |
msgid "Lightbox background"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: gallery-plugin.php:1120
|
566 |
msgid "Default"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: gallery-plugin.php:1121
|
570 |
msgid "Background transparency (from 0 to 1)"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: gallery-plugin.php:1123
|
574 |
msgid "Select a background color"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: gallery-plugin.php:1125
|
578 |
msgid "Background color"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: gallery-plugin.php:1132
|
582 |
+
#: gallery-plugin.php:1237
|
583 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: gallery-plugin.php:1139
|
587 |
msgid "Images with border"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: gallery-plugin.php:1142
|
591 |
msgid "Border width in px, just numbers"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: gallery-plugin.php:1144
|
595 |
+
#: gallery-plugin.php:1146
|
596 |
msgid "Select a border color"
|
597 |
msgstr ""
|
598 |
|
599 |
# @ gallery
|
600 |
+
#: gallery-plugin.php:1152
|
601 |
#, fuzzy
|
602 |
msgid "Number of images in the row"
|
603 |
msgstr "מספר תמונות בשורה"
|
604 |
|
605 |
# @ gallery
|
606 |
+
#: gallery-plugin.php:1158
|
607 |
msgid "Start slideshow"
|
608 |
msgstr "התחל מצגת"
|
609 |
|
610 |
# @ gallery
|
611 |
+
#: gallery-plugin.php:1164
|
612 |
msgid "Slideshow interval"
|
613 |
msgstr "מרווח מצגת"
|
614 |
|
615 |
# @ gallery
|
616 |
+
#: gallery-plugin.php:1172
|
617 |
#, fuzzy
|
618 |
msgid "Attachment ID"
|
619 |
msgstr "מזהה קובץ מצורף"
|
620 |
|
621 |
# @ gallery
|
622 |
+
#: gallery-plugin.php:1173
|
623 |
#, fuzzy
|
624 |
msgid "Image Name"
|
625 |
msgstr "תמונה "
|
626 |
|
627 |
# @ gallery
|
628 |
+
#: gallery-plugin.php:1175
|
629 |
#, fuzzy
|
630 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
631 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
632 |
|
633 |
# @ gallery
|
634 |
+
#: gallery-plugin.php:1176
|
635 |
#, fuzzy
|
636 |
msgid "Random"
|
637 |
msgstr "אקראי"
|
638 |
|
639 |
# @ gallery
|
640 |
+
#: gallery-plugin.php:1180
|
641 |
#, fuzzy
|
642 |
msgid "Sort images"
|
643 |
msgstr "מספר תמונות בשורה"
|
644 |
|
645 |
# @ gallery
|
646 |
+
#: gallery-plugin.php:1182
|
647 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
648 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
649 |
|
650 |
# @ gallery
|
651 |
+
#: gallery-plugin.php:1183
|
652 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
653 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
654 |
|
655 |
+
#: gallery-plugin.php:1187
|
656 |
msgid "Display text above the image"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: gallery-plugin.php:1189
|
660 |
msgid "If you want to display text just in a lightbox"
|
661 |
msgstr ""
|
662 |
|
663 |
# @ gallery
|
664 |
+
#: gallery-plugin.php:1193
|
665 |
#, fuzzy
|
666 |
msgid "Display the Back link"
|
667 |
msgstr "הצג קישור חזרה"
|
668 |
|
669 |
# @ gallery
|
670 |
+
#: gallery-plugin.php:1199
|
671 |
#, fuzzy
|
672 |
msgid "Display the Back link in the shortcode"
|
673 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
674 |
|
675 |
+
#: gallery-plugin.php:1205
|
676 |
msgid "The Back link text"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: gallery-plugin.php:1211
|
680 |
msgid "The Back link URL"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: gallery-plugin.php:1213
|
684 |
msgid "Gallery page (Page with Gallery Template)"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: gallery-plugin.php:1215
|
688 |
msgid "(Full URL to custom page)"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: gallery-plugin.php:1219
|
692 |
msgid "The Read More link text"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: gallery-plugin.php:1227
|
696 |
msgid "Display Like buttons in the lightbox"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: gallery-plugin.php:1229
|
700 |
msgid "FaceBook"
|
701 |
msgstr ""
|
702 |
|
703 |
# @ gallery
|
704 |
+
#: gallery-plugin.php:1230
|
705 |
#, fuzzy
|
706 |
msgid "Twitter"
|
707 |
msgstr "כותרת"
|
708 |
|
709 |
+
#: gallery-plugin.php:1231
|
710 |
msgid "Pinterest"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: gallery-plugin.php:1232
|
714 |
msgid "Google +1"
|
715 |
msgstr ""
|
716 |
|
717 |
# @ default
|
718 |
+
#: gallery-plugin.php:1245
|
719 |
msgid "Save Changes"
|
720 |
msgstr "שמור שינויים"
|
721 |
|
722 |
# @ gallery
|
723 |
+
#: gallery-plugin.php:1258
|
724 |
msgid "FAQ"
|
725 |
msgstr "שאלות ותשובות"
|
726 |
|
727 |
# @ gallery
|
728 |
+
#: gallery-plugin.php:1259
|
729 |
msgid "Support"
|
730 |
msgstr "תמיכה"
|
731 |
|
732 |
# @ gallery
|
733 |
+
#: gallery-plugin.php:1476
|
734 |
#: template/gallery-single-template.php:76
|
735 |
#, fuzzy
|
736 |
msgid "Sorry, nothing found."
|
737 |
msgstr "מצטערים, אין מה למצוא."
|
738 |
|
739 |
+
#: gallery-plugin.php:1498
|
740 |
#: template/gallery-single-template.php:101
|
741 |
msgid "Download high resolution image"
|
742 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galéria"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Képek száma egy sorban"
|
@@ -166,332 +166,501 @@ msgid "Publishing"
|
|
166 |
msgstr "Publikus"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Date"
|
171 |
msgstr "Dátum"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#, fuzzy
|
175 |
msgid "Pro plugins"
|
176 |
msgstr "Javasolt bővítmények"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Activated plugins"
|
181 |
msgstr "Aktivált bővítmények"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Read more"
|
190 |
msgstr "Bővebben"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Settings"
|
197 |
msgstr "Beállítások"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Installed plugins"
|
202 |
msgstr "Telepített bővítmények"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "Recommended plugins"
|
207 |
msgstr "Javasolt bővítmények"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "Purchase"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "Free plugins"
|
216 |
msgstr "Javasolt bővítmények"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Download"
|
220 |
msgstr "Letöltés"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Install %s"
|
225 |
msgstr "Telepítés %s"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "Install now from wordpress.org"
|
229 |
msgstr "Telepítés a wordpress.org -ról"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "If you have any questions, please contact us via"
|
234 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "See images »"
|
239 |
msgstr "Fotó megtekintése »"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
#, fuzzy
|
243 |
msgid "Settings are saved"
|
244 |
msgstr "Beállítások elmentve."
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Gallery Settings"
|
249 |
msgstr "Galéria beállítások"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "Image size for the album cover"
|
258 |
msgstr "Размер для "
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
-
#: gallery-plugin.php:
|
263 |
#, fuzzy
|
264 |
msgid "Image size"
|
265 |
msgstr "Kép méret neve"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Width (in px)"
|
270 |
msgstr "Szélesség (px-ben)"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Height (in px)"
|
275 |
msgstr "Magasság (px-ben)"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
#, fuzzy
|
279 |
msgid "Gallery image size"
|
280 |
msgstr "Galériák"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
#, fuzzy
|
284 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
285 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
286 |
|
287 |
-
#: gallery-plugin.php:
|
288 |
msgid "Gallery image size in the lightbox"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
#, fuzzy
|
293 |
msgid "Max width (in px)"
|
294 |
msgstr "Szélesség (px-ben)"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
#, fuzzy
|
298 |
msgid "Max height (in px)"
|
299 |
msgstr "Magasság (px-ben)"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "Display a full size image in the lightbox"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Crop position"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Horizontal"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "left"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "center"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "right"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Vertical"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "top"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "bottom"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Lightbox background"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Default"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Background transparency (from 0 to 1)"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Select a background color"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Background color"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Images with border"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Border width in px, just numbers"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Select a border color"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "Number of images in the row"
|
379 |
msgstr "Képek száma egy sorban"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "Start slideshow"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Slideshow interval"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Attachment ID"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "Image Name"
|
396 |
msgstr "Kép méret neve"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "Random"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Sort images"
|
409 |
msgstr "Képek száma egy sorban"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Display text above the image"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "If you want to display text just in a lightbox"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Display the Back link"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display the Back link in the shortcode"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "The Back link text"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "The Back link URL"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Gallery page (Page with Gallery Template)"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "(Full URL to custom page)"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "The Read More link text"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Display Like buttons in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "FaceBook"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#, fuzzy
|
465 |
msgid "Twitter"
|
466 |
msgstr "Cím"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Pinterest"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "Google +1"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
msgid "Save Changes"
|
478 |
msgstr "Változások mentése"
|
479 |
|
480 |
-
#: gallery-plugin.php:
|
481 |
msgid "FAQ"
|
482 |
msgstr "Gy.I.K."
|
483 |
|
484 |
-
#: gallery-plugin.php:
|
485 |
msgid "Support"
|
486 |
msgstr "Támogatás"
|
487 |
|
488 |
-
#: gallery-plugin.php:
|
489 |
#: template/gallery-single-template.php:76
|
490 |
#, fuzzy
|
491 |
msgid "Sorry, nothing found."
|
492 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
#: template/gallery-single-template.php:101
|
496 |
msgid "Download high resolution image"
|
497 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galéria"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Képek száma egy sorban"
|
166 |
msgstr "Publikus"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
+
#: gallery-plugin.php:1174
|
170 |
msgid "Date"
|
171 |
msgstr "Dátum"
|
172 |
|
173 |
+
#: gallery-plugin.php:658
|
174 |
+
msgid "Not set"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: gallery-plugin.php:660
|
178 |
+
#: gallery-plugin.php:664
|
179 |
+
msgid "On"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: gallery-plugin.php:662
|
183 |
+
#: gallery-plugin.php:666
|
184 |
+
msgid "Off"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:670
|
188 |
+
#: gallery-plugin.php:674
|
189 |
+
#: gallery-plugin.php:678
|
190 |
+
#: gallery-plugin.php:682
|
191 |
+
#: gallery-plugin.php:686
|
192 |
+
#: gallery-plugin.php:712
|
193 |
+
msgid "N/A"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: gallery-plugin.php:684
|
197 |
+
msgid " Mb"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: gallery-plugin.php:688
|
201 |
+
#: gallery-plugin.php:692
|
202 |
+
#: gallery-plugin.php:696
|
203 |
+
#: gallery-plugin.php:707
|
204 |
+
msgid "Yes"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: gallery-plugin.php:690
|
208 |
+
#: gallery-plugin.php:694
|
209 |
+
#: gallery-plugin.php:698
|
210 |
+
#: gallery-plugin.php:709
|
211 |
+
msgid "No"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:723
|
215 |
+
msgid "Operating System"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:724
|
219 |
+
msgid "Server"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:725
|
223 |
+
msgid "Memory usage"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:726
|
227 |
+
msgid "MYSQL Version"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:727
|
231 |
+
msgid "SQL Mode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:728
|
235 |
+
msgid "PHP Version"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:729
|
239 |
+
msgid "PHP Safe Mode"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:730
|
243 |
+
msgid "PHP Allow URL fopen"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: gallery-plugin.php:731
|
247 |
+
msgid "PHP Memory Limit"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:732
|
251 |
+
#, fuzzy
|
252 |
+
msgid "PHP Max Upload Size"
|
253 |
+
msgstr "Fájl feltöltése"
|
254 |
+
|
255 |
+
#: gallery-plugin.php:733
|
256 |
+
msgid "PHP Max Post Size"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: gallery-plugin.php:734
|
260 |
+
msgid "PHP Max Script Execute Time"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:735
|
264 |
+
msgid "PHP Exif support"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:736
|
268 |
+
msgid "PHP IPTC support"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: gallery-plugin.php:737
|
272 |
+
msgid "PHP XML support"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:738
|
276 |
+
msgid "Site URL"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:739
|
280 |
+
msgid "Home URL"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:740
|
284 |
+
msgid "WordPress Version"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:741
|
288 |
+
msgid "WordPress DB Version"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:742
|
292 |
+
msgid "Multisite"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:743
|
296 |
+
msgid "Active Theme"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:758
|
300 |
+
msgid "Please enter a valid email address."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:762
|
304 |
+
msgid "Email with system info is sent to "
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:766
|
308 |
+
msgid "Thank you for contacting us."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: gallery-plugin.php:794
|
312 |
+
msgid "Sorry, email message could not be delivered."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: gallery-plugin.php:802
|
316 |
#, fuzzy
|
317 |
msgid "Pro plugins"
|
318 |
msgstr "Javasolt bővítmények"
|
319 |
|
320 |
+
#: gallery-plugin.php:805
|
321 |
+
#: gallery-plugin.php:831
|
322 |
msgid "Activated plugins"
|
323 |
msgstr "Aktivált bővítmények"
|
324 |
|
325 |
+
#: gallery-plugin.php:807
|
326 |
+
#: gallery-plugin.php:815
|
327 |
+
#: gallery-plugin.php:823
|
328 |
+
#: gallery-plugin.php:833
|
329 |
+
#: gallery-plugin.php:841
|
330 |
+
#: gallery-plugin.php:849
|
331 |
msgid "Read more"
|
332 |
msgstr "Bővebben"
|
333 |
|
334 |
+
#: gallery-plugin.php:807
|
335 |
+
#: gallery-plugin.php:833
|
336 |
+
#: gallery-plugin.php:1257
|
337 |
+
#: gallery-plugin.php:1272
|
338 |
msgid "Settings"
|
339 |
msgstr "Beállítások"
|
340 |
|
341 |
+
#: gallery-plugin.php:813
|
342 |
+
#: gallery-plugin.php:839
|
343 |
msgid "Installed plugins"
|
344 |
msgstr "Telepített bővítmények"
|
345 |
|
346 |
+
#: gallery-plugin.php:821
|
347 |
+
#: gallery-plugin.php:847
|
348 |
msgid "Recommended plugins"
|
349 |
msgstr "Javasolt bővítmények"
|
350 |
|
351 |
+
#: gallery-plugin.php:823
|
352 |
msgid "Purchase"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: gallery-plugin.php:828
|
356 |
#, fuzzy
|
357 |
msgid "Free plugins"
|
358 |
msgstr "Javasolt bővítmények"
|
359 |
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Download"
|
362 |
msgstr "Letöltés"
|
363 |
|
364 |
+
#: gallery-plugin.php:849
|
365 |
#, php-format
|
366 |
msgid "Install %s"
|
367 |
msgstr "Telepítés %s"
|
368 |
|
369 |
+
#: gallery-plugin.php:849
|
370 |
msgid "Install now from wordpress.org"
|
371 |
msgstr "Telepítés a wordpress.org -ról"
|
372 |
|
373 |
+
#: gallery-plugin.php:854
|
374 |
#, fuzzy
|
375 |
msgid "If you have any questions, please contact us via"
|
376 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
377 |
|
378 |
+
#: gallery-plugin.php:861
|
379 |
+
msgid "System status"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: gallery-plugin.php:865
|
383 |
+
msgid "Environment"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: gallery-plugin.php:876
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Active Plugins"
|
389 |
+
msgstr "Aktivált bővítmények"
|
390 |
+
|
391 |
+
#: gallery-plugin.php:887
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Inactive Plugins"
|
394 |
+
msgstr "Aktivált bővítmények"
|
395 |
+
|
396 |
+
#: gallery-plugin.php:901
|
397 |
+
#, fuzzy
|
398 |
+
msgid "Send to support"
|
399 |
+
msgstr "Támogatás"
|
400 |
+
|
401 |
+
#: gallery-plugin.php:908
|
402 |
+
msgid "Send to custom email »"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: gallery-plugin.php:950
|
406 |
#, fuzzy
|
407 |
msgid "See images »"
|
408 |
msgstr "Fotó megtekintése »"
|
409 |
|
410 |
+
#: gallery-plugin.php:1049
|
411 |
#, fuzzy
|
412 |
msgid "Settings are saved"
|
413 |
msgstr "Beállítások elmentve."
|
414 |
|
415 |
+
#: gallery-plugin.php:1063
|
416 |
#, fuzzy
|
417 |
msgid "Gallery Settings"
|
418 |
msgstr "Galéria beállítások"
|
419 |
|
420 |
+
#: gallery-plugin.php:1066
|
421 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: gallery-plugin.php:1070
|
425 |
#, fuzzy
|
426 |
msgid "Image size for the album cover"
|
427 |
msgstr "Размер для "
|
428 |
|
429 |
+
#: gallery-plugin.php:1072
|
430 |
+
#: gallery-plugin.php:1080
|
431 |
+
#: gallery-plugin.php:1093
|
432 |
#, fuzzy
|
433 |
msgid "Image size"
|
434 |
msgstr "Kép méret neve"
|
435 |
|
436 |
+
#: gallery-plugin.php:1073
|
437 |
+
#: gallery-plugin.php:1081
|
438 |
msgid "Width (in px)"
|
439 |
msgstr "Szélesség (px-ben)"
|
440 |
|
441 |
+
#: gallery-plugin.php:1074
|
442 |
+
#: gallery-plugin.php:1082
|
443 |
msgid "Height (in px)"
|
444 |
msgstr "Magasság (px-ben)"
|
445 |
|
446 |
+
#: gallery-plugin.php:1078
|
447 |
#, fuzzy
|
448 |
msgid "Gallery image size"
|
449 |
msgstr "Galériák"
|
450 |
|
451 |
+
#: gallery-plugin.php:1086
|
452 |
#, fuzzy
|
453 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
454 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
455 |
|
456 |
+
#: gallery-plugin.php:1091
|
457 |
msgid "Gallery image size in the lightbox"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1094
|
461 |
#, fuzzy
|
462 |
msgid "Max width (in px)"
|
463 |
msgstr "Szélesség (px-ben)"
|
464 |
|
465 |
+
#: gallery-plugin.php:1095
|
466 |
#, fuzzy
|
467 |
msgid "Max height (in px)"
|
468 |
msgstr "Magasság (px-ben)"
|
469 |
|
470 |
+
#: gallery-plugin.php:1096
|
471 |
msgid "Display a full size image in the lightbox"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: gallery-plugin.php:1100
|
475 |
msgid "Crop position"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:1102
|
479 |
msgid "Horizontal"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:1104
|
483 |
msgid "left"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1105
|
487 |
+
#: gallery-plugin.php:1112
|
488 |
msgid "center"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: gallery-plugin.php:1106
|
492 |
msgid "right"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:1109
|
496 |
msgid "Vertical"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:1111
|
500 |
msgid "top"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:1113
|
504 |
msgid "bottom"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1118
|
508 |
msgid "Lightbox background"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:1120
|
512 |
msgid "Default"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1121
|
516 |
msgid "Background transparency (from 0 to 1)"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1123
|
520 |
msgid "Select a background color"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1125
|
524 |
msgid "Background color"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1132
|
528 |
+
#: gallery-plugin.php:1237
|
529 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1139
|
533 |
msgid "Images with border"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1142
|
537 |
msgid "Border width in px, just numbers"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1144
|
541 |
+
#: gallery-plugin.php:1146
|
542 |
msgid "Select a border color"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: gallery-plugin.php:1152
|
546 |
#, fuzzy
|
547 |
msgid "Number of images in the row"
|
548 |
msgstr "Képek száma egy sorban"
|
549 |
|
550 |
+
#: gallery-plugin.php:1158
|
551 |
msgid "Start slideshow"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: gallery-plugin.php:1164
|
555 |
msgid "Slideshow interval"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: gallery-plugin.php:1172
|
559 |
msgid "Attachment ID"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: gallery-plugin.php:1173
|
563 |
#, fuzzy
|
564 |
msgid "Image Name"
|
565 |
msgstr "Kép méret neve"
|
566 |
|
567 |
+
#: gallery-plugin.php:1175
|
568 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: gallery-plugin.php:1176
|
572 |
msgid "Random"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: gallery-plugin.php:1180
|
576 |
#, fuzzy
|
577 |
msgid "Sort images"
|
578 |
msgstr "Képek száma egy sorban"
|
579 |
|
580 |
+
#: gallery-plugin.php:1182
|
581 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: gallery-plugin.php:1183
|
585 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: gallery-plugin.php:1187
|
589 |
msgid "Display text above the image"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: gallery-plugin.php:1189
|
593 |
msgid "If you want to display text just in a lightbox"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: gallery-plugin.php:1193
|
597 |
msgid "Display the Back link"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: gallery-plugin.php:1199
|
601 |
msgid "Display the Back link in the shortcode"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: gallery-plugin.php:1205
|
605 |
msgid "The Back link text"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: gallery-plugin.php:1211
|
609 |
msgid "The Back link URL"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: gallery-plugin.php:1213
|
613 |
msgid "Gallery page (Page with Gallery Template)"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: gallery-plugin.php:1215
|
617 |
msgid "(Full URL to custom page)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1219
|
621 |
msgid "The Read More link text"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1227
|
625 |
msgid "Display Like buttons in the lightbox"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:1229
|
629 |
msgid "FaceBook"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:1230
|
633 |
#, fuzzy
|
634 |
msgid "Twitter"
|
635 |
msgstr "Cím"
|
636 |
|
637 |
+
#: gallery-plugin.php:1231
|
638 |
msgid "Pinterest"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:1232
|
642 |
msgid "Google +1"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: gallery-plugin.php:1245
|
646 |
msgid "Save Changes"
|
647 |
msgstr "Változások mentése"
|
648 |
|
649 |
+
#: gallery-plugin.php:1258
|
650 |
msgid "FAQ"
|
651 |
msgstr "Gy.I.K."
|
652 |
|
653 |
+
#: gallery-plugin.php:1259
|
654 |
msgid "Support"
|
655 |
msgstr "Támogatás"
|
656 |
|
657 |
+
#: gallery-plugin.php:1476
|
658 |
#: template/gallery-single-template.php:76
|
659 |
#, fuzzy
|
660 |
msgid "Sorry, nothing found."
|
661 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
662 |
|
663 |
+
#: gallery-plugin.php:1498
|
664 |
#: template/gallery-single-template.php:101
|
665 |
msgid "Download high resolution image"
|
666 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
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 "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Gallerie"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galleria"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Conta immagini"
|
@@ -167,338 +167,507 @@ msgid "Publishing"
|
|
167 |
msgstr "Pubblico"
|
168 |
|
169 |
#: gallery-plugin.php:483
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Date"
|
172 |
msgstr "Data"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
#, fuzzy
|
176 |
msgid "Pro plugins"
|
177 |
msgstr "Plugin consigliati"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Activated plugins"
|
182 |
msgstr "Attivare plugin"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Read more"
|
191 |
msgstr "Leggi altro"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Settings"
|
198 |
msgstr "Impostazioni"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Installed plugins"
|
203 |
msgstr "Plugin installati"
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "Recommended plugins"
|
208 |
msgstr "Plugin consigliati"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "Purchase"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
#, fuzzy
|
216 |
msgid "Free plugins"
|
217 |
msgstr "Plugin consigliati"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Download"
|
221 |
msgstr "Download"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
#, php-format
|
225 |
msgid "Install %s"
|
226 |
msgstr "Installа %s"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Install now from wordpress.org"
|
230 |
msgstr "Installa ora da wordpress.org"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
#, fuzzy
|
234 |
msgid "If you have any questions, please contact us via"
|
235 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
#, fuzzy
|
239 |
msgid "See images »"
|
240 |
msgstr "Guarda foto »"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
#, fuzzy
|
244 |
msgid "Settings are saved"
|
245 |
msgstr "Opzioni salvate."
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
#, fuzzy
|
249 |
msgid "Gallery Settings"
|
250 |
msgstr "Opzioni gallerie"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#, fuzzy
|
254 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
255 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, fuzzy
|
259 |
msgid "Image size for the album cover"
|
260 |
msgstr "Размер для "
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
-
#: gallery-plugin.php:
|
264 |
-
#: gallery-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "Image size"
|
267 |
msgstr "Image size name"
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Width (in px)"
|
272 |
msgstr "Larghezza in px"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "Height (in px)"
|
277 |
msgstr "Altezza in px"
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
#, fuzzy
|
281 |
msgid "Gallery image size"
|
282 |
msgstr "Gallerie"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
#, fuzzy
|
286 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
287 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Gallery image size in the lightbox"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
#, fuzzy
|
295 |
msgid "Max width (in px)"
|
296 |
msgstr "Larghezza in px"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "Max height (in px)"
|
301 |
msgstr "Altezza in px"
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Display a full size image in the lightbox"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
msgid "Crop position"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Horizontal"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "left"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "center"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "right"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Vertical"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "top"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "bottom"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "Lightbox background"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid "Default"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "Background transparency (from 0 to 1)"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Select a background color"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Background color"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "Images with border"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
msgid "Border width in px, just numbers"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Select a border color"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, fuzzy
|
380 |
msgid "Number of images in the row"
|
381 |
msgstr "Conta immagini"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "Start slideshow"
|
385 |
msgstr "Avvia presentazione"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "Slideshow interval"
|
389 |
msgstr "Intervallo presentazione"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
#, fuzzy
|
393 |
msgid "Attachment ID"
|
394 |
msgstr "Id di visualizzazione"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "Image Name"
|
399 |
msgstr "Immagine"
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
#, fuzzy
|
403 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
404 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Random"
|
409 |
msgstr "Casuale"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
#, fuzzy
|
413 |
msgid "Sort images"
|
414 |
msgstr "Conta immagini"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
418 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
422 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "Display text above the image"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "If you want to display text just in a lightbox"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Display the Back link"
|
435 |
msgstr "Mostra lin di ritorno"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
#, fuzzy
|
439 |
msgid "Display the Back link in the shortcode"
|
440 |
msgstr "Mostra il link di ritorno col codice"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "The Back link text"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "The Back link URL"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Gallery page (Page with Gallery Template)"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "(Full URL to custom page)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "The Read More link text"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
msgid "Display Like buttons in the lightbox"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "FaceBook"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Twitter"
|
473 |
msgstr "Titolo"
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Pinterest"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "Google +1"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Save Changes"
|
485 |
msgstr "Salva cambiamenti"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid "FAQ"
|
489 |
msgstr "FAQ "
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid "Support"
|
493 |
msgstr "Supporto"
|
494 |
|
495 |
-
#: gallery-plugin.php:
|
496 |
#: template/gallery-single-template.php:76
|
497 |
#, fuzzy
|
498 |
msgid "Sorry, nothing found."
|
499 |
msgstr "Spiacente - non è stato trovato nulla."
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
#: template/gallery-single-template.php:101
|
503 |
msgid "Download high resolution image"
|
504 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
23 |
|
27 |
msgstr "Gallerie"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galleria"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Conta immagini"
|
167 |
msgstr "Pubblico"
|
168 |
|
169 |
#: gallery-plugin.php:483
|
170 |
+
#: gallery-plugin.php:1174
|
171 |
msgid "Date"
|
172 |
msgstr "Data"
|
173 |
|
174 |
+
#: gallery-plugin.php:658
|
175 |
+
msgid "Not set"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: gallery-plugin.php:660
|
179 |
+
#: gallery-plugin.php:664
|
180 |
+
msgid "On"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: gallery-plugin.php:662
|
184 |
+
#: gallery-plugin.php:666
|
185 |
+
msgid "Off"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: gallery-plugin.php:670
|
189 |
+
#: gallery-plugin.php:674
|
190 |
+
#: gallery-plugin.php:678
|
191 |
+
#: gallery-plugin.php:682
|
192 |
+
#: gallery-plugin.php:686
|
193 |
+
#: gallery-plugin.php:712
|
194 |
+
msgid "N/A"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: gallery-plugin.php:684
|
198 |
+
msgid " Mb"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: gallery-plugin.php:688
|
202 |
+
#: gallery-plugin.php:692
|
203 |
+
#: gallery-plugin.php:696
|
204 |
+
#: gallery-plugin.php:707
|
205 |
+
msgid "Yes"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: gallery-plugin.php:690
|
209 |
+
#: gallery-plugin.php:694
|
210 |
+
#: gallery-plugin.php:698
|
211 |
+
#: gallery-plugin.php:709
|
212 |
+
msgid "No"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: gallery-plugin.php:723
|
216 |
+
msgid "Operating System"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: gallery-plugin.php:724
|
220 |
+
msgid "Server"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: gallery-plugin.php:725
|
224 |
+
msgid "Memory usage"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: gallery-plugin.php:726
|
228 |
+
msgid "MYSQL Version"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: gallery-plugin.php:727
|
232 |
+
msgid "SQL Mode"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: gallery-plugin.php:728
|
236 |
+
msgid "PHP Version"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: gallery-plugin.php:729
|
240 |
+
msgid "PHP Safe Mode"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: gallery-plugin.php:730
|
244 |
+
msgid "PHP Allow URL fopen"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: gallery-plugin.php:731
|
248 |
+
msgid "PHP Memory Limit"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: gallery-plugin.php:732
|
252 |
+
#, fuzzy
|
253 |
+
msgid "PHP Max Upload Size"
|
254 |
+
msgstr "Carica file"
|
255 |
+
|
256 |
+
#: gallery-plugin.php:733
|
257 |
+
msgid "PHP Max Post Size"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: gallery-plugin.php:734
|
261 |
+
msgid "PHP Max Script Execute Time"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: gallery-plugin.php:735
|
265 |
+
msgid "PHP Exif support"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: gallery-plugin.php:736
|
269 |
+
msgid "PHP IPTC support"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: gallery-plugin.php:737
|
273 |
+
msgid "PHP XML support"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:738
|
277 |
+
msgid "Site URL"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: gallery-plugin.php:739
|
281 |
+
msgid "Home URL"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: gallery-plugin.php:740
|
285 |
+
msgid "WordPress Version"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: gallery-plugin.php:741
|
289 |
+
msgid "WordPress DB Version"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: gallery-plugin.php:742
|
293 |
+
msgid "Multisite"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: gallery-plugin.php:743
|
297 |
+
msgid "Active Theme"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: gallery-plugin.php:758
|
301 |
+
msgid "Please enter a valid email address."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: gallery-plugin.php:762
|
305 |
+
msgid "Email with system info is sent to "
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: gallery-plugin.php:766
|
309 |
+
msgid "Thank you for contacting us."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: gallery-plugin.php:794
|
313 |
+
msgid "Sorry, email message could not be delivered."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: gallery-plugin.php:802
|
317 |
#, fuzzy
|
318 |
msgid "Pro plugins"
|
319 |
msgstr "Plugin consigliati"
|
320 |
|
321 |
+
#: gallery-plugin.php:805
|
322 |
+
#: gallery-plugin.php:831
|
323 |
msgid "Activated plugins"
|
324 |
msgstr "Attivare plugin"
|
325 |
|
326 |
+
#: gallery-plugin.php:807
|
327 |
+
#: gallery-plugin.php:815
|
328 |
+
#: gallery-plugin.php:823
|
329 |
+
#: gallery-plugin.php:833
|
330 |
+
#: gallery-plugin.php:841
|
331 |
+
#: gallery-plugin.php:849
|
332 |
msgid "Read more"
|
333 |
msgstr "Leggi altro"
|
334 |
|
335 |
+
#: gallery-plugin.php:807
|
336 |
+
#: gallery-plugin.php:833
|
337 |
+
#: gallery-plugin.php:1257
|
338 |
+
#: gallery-plugin.php:1272
|
339 |
msgid "Settings"
|
340 |
msgstr "Impostazioni"
|
341 |
|
342 |
+
#: gallery-plugin.php:813
|
343 |
+
#: gallery-plugin.php:839
|
344 |
msgid "Installed plugins"
|
345 |
msgstr "Plugin installati"
|
346 |
|
347 |
+
#: gallery-plugin.php:821
|
348 |
+
#: gallery-plugin.php:847
|
349 |
msgid "Recommended plugins"
|
350 |
msgstr "Plugin consigliati"
|
351 |
|
352 |
+
#: gallery-plugin.php:823
|
353 |
msgid "Purchase"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: gallery-plugin.php:828
|
357 |
#, fuzzy
|
358 |
msgid "Free plugins"
|
359 |
msgstr "Plugin consigliati"
|
360 |
|
361 |
+
#: gallery-plugin.php:849
|
362 |
msgid "Download"
|
363 |
msgstr "Download"
|
364 |
|
365 |
+
#: gallery-plugin.php:849
|
366 |
#, php-format
|
367 |
msgid "Install %s"
|
368 |
msgstr "Installа %s"
|
369 |
|
370 |
+
#: gallery-plugin.php:849
|
371 |
msgid "Install now from wordpress.org"
|
372 |
msgstr "Installa ora da wordpress.org"
|
373 |
|
374 |
+
#: gallery-plugin.php:854
|
375 |
#, fuzzy
|
376 |
msgid "If you have any questions, please contact us via"
|
377 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
378 |
|
379 |
+
#: gallery-plugin.php:861
|
380 |
+
msgid "System status"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: gallery-plugin.php:865
|
384 |
+
msgid "Environment"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: gallery-plugin.php:876
|
388 |
+
#, fuzzy
|
389 |
+
msgid "Active Plugins"
|
390 |
+
msgstr "Attivare plugin"
|
391 |
+
|
392 |
+
#: gallery-plugin.php:887
|
393 |
+
#, fuzzy
|
394 |
+
msgid "Inactive Plugins"
|
395 |
+
msgstr "Attivare plugin"
|
396 |
+
|
397 |
+
#: gallery-plugin.php:901
|
398 |
+
#, fuzzy
|
399 |
+
msgid "Send to support"
|
400 |
+
msgstr "Supporto"
|
401 |
+
|
402 |
+
#: gallery-plugin.php:908
|
403 |
+
msgid "Send to custom email »"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: gallery-plugin.php:950
|
407 |
#, fuzzy
|
408 |
msgid "See images »"
|
409 |
msgstr "Guarda foto »"
|
410 |
|
411 |
+
#: gallery-plugin.php:1049
|
412 |
#, fuzzy
|
413 |
msgid "Settings are saved"
|
414 |
msgstr "Opzioni salvate."
|
415 |
|
416 |
+
#: gallery-plugin.php:1063
|
417 |
#, fuzzy
|
418 |
msgid "Gallery Settings"
|
419 |
msgstr "Opzioni gallerie"
|
420 |
|
421 |
+
#: gallery-plugin.php:1066
|
422 |
#, fuzzy
|
423 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
424 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
425 |
|
426 |
+
#: gallery-plugin.php:1070
|
427 |
#, fuzzy
|
428 |
msgid "Image size for the album cover"
|
429 |
msgstr "Размер для "
|
430 |
|
431 |
+
#: gallery-plugin.php:1072
|
432 |
+
#: gallery-plugin.php:1080
|
433 |
+
#: gallery-plugin.php:1093
|
434 |
#, fuzzy
|
435 |
msgid "Image size"
|
436 |
msgstr "Image size name"
|
437 |
|
438 |
+
#: gallery-plugin.php:1073
|
439 |
+
#: gallery-plugin.php:1081
|
440 |
msgid "Width (in px)"
|
441 |
msgstr "Larghezza in px"
|
442 |
|
443 |
+
#: gallery-plugin.php:1074
|
444 |
+
#: gallery-plugin.php:1082
|
445 |
msgid "Height (in px)"
|
446 |
msgstr "Altezza in px"
|
447 |
|
448 |
+
#: gallery-plugin.php:1078
|
449 |
#, fuzzy
|
450 |
msgid "Gallery image size"
|
451 |
msgstr "Gallerie"
|
452 |
|
453 |
+
#: gallery-plugin.php:1086
|
454 |
#, fuzzy
|
455 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
456 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
457 |
|
458 |
+
#: gallery-plugin.php:1091
|
459 |
msgid "Gallery image size in the lightbox"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: gallery-plugin.php:1094
|
463 |
#, fuzzy
|
464 |
msgid "Max width (in px)"
|
465 |
msgstr "Larghezza in px"
|
466 |
|
467 |
+
#: gallery-plugin.php:1095
|
468 |
#, fuzzy
|
469 |
msgid "Max height (in px)"
|
470 |
msgstr "Altezza in px"
|
471 |
|
472 |
+
#: gallery-plugin.php:1096
|
473 |
msgid "Display a full size image in the lightbox"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: gallery-plugin.php:1100
|
477 |
msgid "Crop position"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: gallery-plugin.php:1102
|
481 |
msgid "Horizontal"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1104
|
485 |
msgid "left"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: gallery-plugin.php:1105
|
489 |
+
#: gallery-plugin.php:1112
|
490 |
msgid "center"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:1106
|
494 |
msgid "right"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:1109
|
498 |
msgid "Vertical"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: gallery-plugin.php:1111
|
502 |
msgid "top"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: gallery-plugin.php:1113
|
506 |
msgid "bottom"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: gallery-plugin.php:1118
|
510 |
msgid "Lightbox background"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: gallery-plugin.php:1120
|
514 |
msgid "Default"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: gallery-plugin.php:1121
|
518 |
msgid "Background transparency (from 0 to 1)"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:1123
|
522 |
msgid "Select a background color"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: gallery-plugin.php:1125
|
526 |
msgid "Background color"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: gallery-plugin.php:1132
|
530 |
+
#: gallery-plugin.php:1237
|
531 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1139
|
535 |
msgid "Images with border"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: gallery-plugin.php:1142
|
539 |
msgid "Border width in px, just numbers"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: gallery-plugin.php:1144
|
543 |
+
#: gallery-plugin.php:1146
|
544 |
msgid "Select a border color"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: gallery-plugin.php:1152
|
548 |
#, fuzzy
|
549 |
msgid "Number of images in the row"
|
550 |
msgstr "Conta immagini"
|
551 |
|
552 |
+
#: gallery-plugin.php:1158
|
553 |
msgid "Start slideshow"
|
554 |
msgstr "Avvia presentazione"
|
555 |
|
556 |
+
#: gallery-plugin.php:1164
|
557 |
msgid "Slideshow interval"
|
558 |
msgstr "Intervallo presentazione"
|
559 |
|
560 |
+
#: gallery-plugin.php:1172
|
561 |
#, fuzzy
|
562 |
msgid "Attachment ID"
|
563 |
msgstr "Id di visualizzazione"
|
564 |
|
565 |
+
#: gallery-plugin.php:1173
|
566 |
#, fuzzy
|
567 |
msgid "Image Name"
|
568 |
msgstr "Immagine"
|
569 |
|
570 |
+
#: gallery-plugin.php:1175
|
571 |
#, fuzzy
|
572 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
573 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
574 |
|
575 |
+
#: gallery-plugin.php:1176
|
576 |
#, fuzzy
|
577 |
msgid "Random"
|
578 |
msgstr "Casuale"
|
579 |
|
580 |
+
#: gallery-plugin.php:1180
|
581 |
#, fuzzy
|
582 |
msgid "Sort images"
|
583 |
msgstr "Conta immagini"
|
584 |
|
585 |
+
#: gallery-plugin.php:1182
|
586 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
587 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
588 |
|
589 |
+
#: gallery-plugin.php:1183
|
590 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
591 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
592 |
|
593 |
+
#: gallery-plugin.php:1187
|
594 |
msgid "Display text above the image"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: gallery-plugin.php:1189
|
598 |
msgid "If you want to display text just in a lightbox"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: gallery-plugin.php:1193
|
602 |
#, fuzzy
|
603 |
msgid "Display the Back link"
|
604 |
msgstr "Mostra lin di ritorno"
|
605 |
|
606 |
+
#: gallery-plugin.php:1199
|
607 |
#, fuzzy
|
608 |
msgid "Display the Back link in the shortcode"
|
609 |
msgstr "Mostra il link di ritorno col codice"
|
610 |
|
611 |
+
#: gallery-plugin.php:1205
|
612 |
msgid "The Back link text"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1211
|
616 |
msgid "The Back link URL"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1213
|
620 |
msgid "Gallery page (Page with Gallery Template)"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1215
|
624 |
msgid "(Full URL to custom page)"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1219
|
628 |
msgid "The Read More link text"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1227
|
632 |
msgid "Display Like buttons in the lightbox"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: gallery-plugin.php:1229
|
636 |
msgid "FaceBook"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: gallery-plugin.php:1230
|
640 |
#, fuzzy
|
641 |
msgid "Twitter"
|
642 |
msgstr "Titolo"
|
643 |
|
644 |
+
#: gallery-plugin.php:1231
|
645 |
msgid "Pinterest"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: gallery-plugin.php:1232
|
649 |
msgid "Google +1"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: gallery-plugin.php:1245
|
653 |
msgid "Save Changes"
|
654 |
msgstr "Salva cambiamenti"
|
655 |
|
656 |
+
#: gallery-plugin.php:1258
|
657 |
msgid "FAQ"
|
658 |
msgstr "FAQ "
|
659 |
|
660 |
+
#: gallery-plugin.php:1259
|
661 |
msgid "Support"
|
662 |
msgstr "Supporto"
|
663 |
|
664 |
+
#: gallery-plugin.php:1476
|
665 |
#: template/gallery-single-template.php:76
|
666 |
#, fuzzy
|
667 |
msgid "Sorry, nothing found."
|
668 |
msgstr "Spiacente - non è stato trovato nulla."
|
669 |
|
670 |
+
#: gallery-plugin.php:1498
|
671 |
#: template/gallery-single-template.php:101
|
672 |
msgid "Download high resolution image"
|
673 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "გალერეა"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "სურათების რაოდენობა მწკრივში"
|
@@ -166,331 +166,500 @@ msgid "Publishing"
|
|
166 |
msgstr "საჯარო"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Date"
|
171 |
msgstr "თარიღი"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#, fuzzy
|
175 |
msgid "Pro plugins"
|
176 |
msgstr "რეკომენდირებული დანამატები"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Activated plugins"
|
181 |
msgstr "გააქტიურებული დანამატები:"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Read more"
|
190 |
msgstr "სრულად ნახვა"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Settings"
|
197 |
msgstr "პარამეტრები"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Installed plugins"
|
202 |
msgstr "დაყენებული დანამატები"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "Recommended plugins"
|
207 |
msgstr "რეკომენდირებული დანამატები"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "Purchase"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "Free plugins"
|
216 |
msgstr "რეკომენდირებული დანამატები"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Download"
|
220 |
msgstr "გადმოტვირთვა"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Install %s"
|
225 |
msgstr "დაყენებულია %s"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "Install now from wordpress.org"
|
229 |
msgstr "დააყენეთ wordpress.org-იდან"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "If you have any questions, please contact us via"
|
234 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
msgid "See images »"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
#, fuzzy
|
242 |
msgid "Settings are saved"
|
243 |
msgstr "პარამეტრები შენახულია"
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
#, fuzzy
|
247 |
msgid "Gallery Settings"
|
248 |
msgstr "გალერეის პარამეტრები"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
#, fuzzy
|
256 |
msgid "Image size for the album cover"
|
257 |
msgstr "Размер для "
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "Image size"
|
264 |
msgstr "ზომის სახელი"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Width (in px)"
|
269 |
msgstr "სიგანე(პიქსელებში)"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Height (in px)"
|
274 |
msgstr "სიმაღლე(პიქსელებში)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
#, fuzzy
|
278 |
msgid "Gallery image size"
|
279 |
msgstr "გალერეა"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
#, fuzzy
|
283 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
284 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Gallery image size in the lightbox"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "Max width (in px)"
|
293 |
msgstr "სიგანე(პიქსელებში)"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Max height (in px)"
|
298 |
msgstr "სიმაღლე(პიქსელებში)"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Display a full size image in the lightbox"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Crop position"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Horizontal"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "left"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "center"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "right"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Vertical"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "top"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "bottom"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "Lightbox background"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "Default"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Background transparency (from 0 to 1)"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Select a background color"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Background color"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Images with border"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Border width in px, just numbers"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Select a border color"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Number of images in the row"
|
378 |
msgstr "სურათების რაოდენობა მწკრივში"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "Start slideshow"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Slideshow interval"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Attachment ID"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "Image Name"
|
395 |
msgstr "ზომის სახელი"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "Random"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Sort images"
|
408 |
msgstr "სურათების რაოდენობა მწკრივში"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Display text above the image"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "If you want to display text just in a lightbox"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Display the Back link in the shortcode"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link text"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "The Back link URL"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Gallery page (Page with Gallery Template)"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "(Full URL to custom page)"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "The Read More link text"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Display Like buttons in the lightbox"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "FaceBook"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "Twitter"
|
465 |
msgstr "სათაური"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Pinterest"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Google +1"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Save Changes"
|
477 |
msgstr "ცვლილებების შენახვა"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "FAQ"
|
481 |
msgstr "FAQ"
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Support"
|
485 |
msgstr "Support"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
#: template/gallery-single-template.php:76
|
489 |
#, fuzzy
|
490 |
msgid "Sorry, nothing found."
|
491 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
#: template/gallery-single-template.php:101
|
495 |
msgid "Download high resolution image"
|
496 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \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:103
|
20 |
+
#: gallery-plugin.php:1056
|
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:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "გალერეა"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "სურათების რაოდენობა მწკრივში"
|
166 |
msgstr "საჯარო"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
+
#: gallery-plugin.php:1174
|
170 |
msgid "Date"
|
171 |
msgstr "თარიღი"
|
172 |
|
173 |
+
#: gallery-plugin.php:658
|
174 |
+
msgid "Not set"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: gallery-plugin.php:660
|
178 |
+
#: gallery-plugin.php:664
|
179 |
+
msgid "On"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: gallery-plugin.php:662
|
183 |
+
#: gallery-plugin.php:666
|
184 |
+
msgid "Off"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:670
|
188 |
+
#: gallery-plugin.php:674
|
189 |
+
#: gallery-plugin.php:678
|
190 |
+
#: gallery-plugin.php:682
|
191 |
+
#: gallery-plugin.php:686
|
192 |
+
#: gallery-plugin.php:712
|
193 |
+
msgid "N/A"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: gallery-plugin.php:684
|
197 |
+
msgid " Mb"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: gallery-plugin.php:688
|
201 |
+
#: gallery-plugin.php:692
|
202 |
+
#: gallery-plugin.php:696
|
203 |
+
#: gallery-plugin.php:707
|
204 |
+
msgid "Yes"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: gallery-plugin.php:690
|
208 |
+
#: gallery-plugin.php:694
|
209 |
+
#: gallery-plugin.php:698
|
210 |
+
#: gallery-plugin.php:709
|
211 |
+
msgid "No"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:723
|
215 |
+
msgid "Operating System"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:724
|
219 |
+
msgid "Server"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:725
|
223 |
+
msgid "Memory usage"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:726
|
227 |
+
msgid "MYSQL Version"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:727
|
231 |
+
msgid "SQL Mode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:728
|
235 |
+
msgid "PHP Version"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:729
|
239 |
+
msgid "PHP Safe Mode"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:730
|
243 |
+
msgid "PHP Allow URL fopen"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: gallery-plugin.php:731
|
247 |
+
msgid "PHP Memory Limit"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:732
|
251 |
+
#, fuzzy
|
252 |
+
msgid "PHP Max Upload Size"
|
253 |
+
msgstr "ფაილის ატვირთვა"
|
254 |
+
|
255 |
+
#: gallery-plugin.php:733
|
256 |
+
msgid "PHP Max Post Size"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: gallery-plugin.php:734
|
260 |
+
msgid "PHP Max Script Execute Time"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:735
|
264 |
+
msgid "PHP Exif support"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:736
|
268 |
+
msgid "PHP IPTC support"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: gallery-plugin.php:737
|
272 |
+
msgid "PHP XML support"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:738
|
276 |
+
msgid "Site URL"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:739
|
280 |
+
msgid "Home URL"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:740
|
284 |
+
msgid "WordPress Version"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:741
|
288 |
+
msgid "WordPress DB Version"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:742
|
292 |
+
msgid "Multisite"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:743
|
296 |
+
msgid "Active Theme"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:758
|
300 |
+
msgid "Please enter a valid email address."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:762
|
304 |
+
msgid "Email with system info is sent to "
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:766
|
308 |
+
msgid "Thank you for contacting us."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: gallery-plugin.php:794
|
312 |
+
msgid "Sorry, email message could not be delivered."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: gallery-plugin.php:802
|
316 |
#, fuzzy
|
317 |
msgid "Pro plugins"
|
318 |
msgstr "რეკომენდირებული დანამატები"
|
319 |
|
320 |
+
#: gallery-plugin.php:805
|
321 |
+
#: gallery-plugin.php:831
|
322 |
msgid "Activated plugins"
|
323 |
msgstr "გააქტიურებული დანამატები:"
|
324 |
|
325 |
+
#: gallery-plugin.php:807
|
326 |
+
#: gallery-plugin.php:815
|
327 |
+
#: gallery-plugin.php:823
|
328 |
+
#: gallery-plugin.php:833
|
329 |
+
#: gallery-plugin.php:841
|
330 |
+
#: gallery-plugin.php:849
|
331 |
msgid "Read more"
|
332 |
msgstr "სრულად ნახვა"
|
333 |
|
334 |
+
#: gallery-plugin.php:807
|
335 |
+
#: gallery-plugin.php:833
|
336 |
+
#: gallery-plugin.php:1257
|
337 |
+
#: gallery-plugin.php:1272
|
338 |
msgid "Settings"
|
339 |
msgstr "პარამეტრები"
|
340 |
|
341 |
+
#: gallery-plugin.php:813
|
342 |
+
#: gallery-plugin.php:839
|
343 |
msgid "Installed plugins"
|
344 |
msgstr "დაყენებული დანამატები"
|
345 |
|
346 |
+
#: gallery-plugin.php:821
|
347 |
+
#: gallery-plugin.php:847
|
348 |
msgid "Recommended plugins"
|
349 |
msgstr "რეკომენდირებული დანამატები"
|
350 |
|
351 |
+
#: gallery-plugin.php:823
|
352 |
msgid "Purchase"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: gallery-plugin.php:828
|
356 |
#, fuzzy
|
357 |
msgid "Free plugins"
|
358 |
msgstr "რეკომენდირებული დანამატები"
|
359 |
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Download"
|
362 |
msgstr "გადმოტვირთვა"
|
363 |
|
364 |
+
#: gallery-plugin.php:849
|
365 |
#, php-format
|
366 |
msgid "Install %s"
|
367 |
msgstr "დაყენებულია %s"
|
368 |
|
369 |
+
#: gallery-plugin.php:849
|
370 |
msgid "Install now from wordpress.org"
|
371 |
msgstr "დააყენეთ wordpress.org-იდან"
|
372 |
|
373 |
+
#: gallery-plugin.php:854
|
374 |
#, fuzzy
|
375 |
msgid "If you have any questions, please contact us via"
|
376 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
377 |
|
378 |
+
#: gallery-plugin.php:861
|
379 |
+
msgid "System status"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: gallery-plugin.php:865
|
383 |
+
msgid "Environment"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: gallery-plugin.php:876
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Active Plugins"
|
389 |
+
msgstr "გააქტიურებული დანამატები:"
|
390 |
+
|
391 |
+
#: gallery-plugin.php:887
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Inactive Plugins"
|
394 |
+
msgstr "გააქტიურებული დანამატები:"
|
395 |
+
|
396 |
+
#: gallery-plugin.php:901
|
397 |
+
#, fuzzy
|
398 |
+
msgid "Send to support"
|
399 |
+
msgstr "Support"
|
400 |
+
|
401 |
+
#: gallery-plugin.php:908
|
402 |
+
msgid "Send to custom email »"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: gallery-plugin.php:950
|
406 |
msgid "See images »"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: gallery-plugin.php:1049
|
410 |
#, fuzzy
|
411 |
msgid "Settings are saved"
|
412 |
msgstr "პარამეტრები შენახულია"
|
413 |
|
414 |
+
#: gallery-plugin.php:1063
|
415 |
#, fuzzy
|
416 |
msgid "Gallery Settings"
|
417 |
msgstr "გალერეის პარამეტრები"
|
418 |
|
419 |
+
#: gallery-plugin.php:1066
|
420 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: gallery-plugin.php:1070
|
424 |
#, fuzzy
|
425 |
msgid "Image size for the album cover"
|
426 |
msgstr "Размер для "
|
427 |
|
428 |
+
#: gallery-plugin.php:1072
|
429 |
+
#: gallery-plugin.php:1080
|
430 |
+
#: gallery-plugin.php:1093
|
431 |
#, fuzzy
|
432 |
msgid "Image size"
|
433 |
msgstr "ზომის სახელი"
|
434 |
|
435 |
+
#: gallery-plugin.php:1073
|
436 |
+
#: gallery-plugin.php:1081
|
437 |
msgid "Width (in px)"
|
438 |
msgstr "სიგანე(პიქსელებში)"
|
439 |
|
440 |
+
#: gallery-plugin.php:1074
|
441 |
+
#: gallery-plugin.php:1082
|
442 |
msgid "Height (in px)"
|
443 |
msgstr "სიმაღლე(პიქსელებში)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1078
|
446 |
#, fuzzy
|
447 |
msgid "Gallery image size"
|
448 |
msgstr "გალერეა"
|
449 |
|
450 |
+
#: gallery-plugin.php:1086
|
451 |
#, fuzzy
|
452 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
453 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
454 |
|
455 |
+
#: gallery-plugin.php:1091
|
456 |
msgid "Gallery image size in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1094
|
460 |
#, fuzzy
|
461 |
msgid "Max width (in px)"
|
462 |
msgstr "სიგანე(პიქსელებში)"
|
463 |
|
464 |
+
#: gallery-plugin.php:1095
|
465 |
#, fuzzy
|
466 |
msgid "Max height (in px)"
|
467 |
msgstr "სიმაღლე(პიქსელებში)"
|
468 |
|
469 |
+
#: gallery-plugin.php:1096
|
470 |
msgid "Display a full size image in the lightbox"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1100
|
474 |
msgid "Crop position"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:1102
|
478 |
msgid "Horizontal"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1104
|
482 |
msgid "left"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1105
|
486 |
+
#: gallery-plugin.php:1112
|
487 |
msgid "center"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:1106
|
491 |
msgid "right"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:1109
|
495 |
msgid "Vertical"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1111
|
499 |
msgid "top"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1113
|
503 |
msgid "bottom"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1118
|
507 |
msgid "Lightbox background"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:1120
|
511 |
msgid "Default"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1121
|
515 |
msgid "Background transparency (from 0 to 1)"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1123
|
519 |
msgid "Select a background color"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1125
|
523 |
msgid "Background color"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1132
|
527 |
+
#: gallery-plugin.php:1237
|
528 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1139
|
532 |
msgid "Images with border"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:1142
|
536 |
msgid "Border width in px, just numbers"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:1144
|
540 |
+
#: gallery-plugin.php:1146
|
541 |
msgid "Select a border color"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: gallery-plugin.php:1152
|
545 |
#, fuzzy
|
546 |
msgid "Number of images in the row"
|
547 |
msgstr "სურათების რაოდენობა მწკრივში"
|
548 |
|
549 |
+
#: gallery-plugin.php:1158
|
550 |
msgid "Start slideshow"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1164
|
554 |
msgid "Slideshow interval"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1172
|
558 |
msgid "Attachment ID"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1173
|
562 |
#, fuzzy
|
563 |
msgid "Image Name"
|
564 |
msgstr "ზომის სახელი"
|
565 |
|
566 |
+
#: gallery-plugin.php:1175
|
567 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: gallery-plugin.php:1176
|
571 |
msgid "Random"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: gallery-plugin.php:1180
|
575 |
#, fuzzy
|
576 |
msgid "Sort images"
|
577 |
msgstr "სურათების რაოდენობა მწკრივში"
|
578 |
|
579 |
+
#: gallery-plugin.php:1182
|
580 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: gallery-plugin.php:1183
|
584 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: gallery-plugin.php:1187
|
588 |
msgid "Display text above the image"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1189
|
592 |
msgid "If you want to display text just in a lightbox"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1193
|
596 |
msgid "Display the Back link"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: gallery-plugin.php:1199
|
600 |
msgid "Display the Back link in the shortcode"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:1205
|
604 |
msgid "The Back link text"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: gallery-plugin.php:1211
|
608 |
msgid "The Back link URL"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: gallery-plugin.php:1213
|
612 |
msgid "Gallery page (Page with Gallery Template)"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1215
|
616 |
msgid "(Full URL to custom page)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1219
|
620 |
msgid "The Read More link text"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1227
|
624 |
msgid "Display Like buttons in the lightbox"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1229
|
628 |
msgid "FaceBook"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1230
|
632 |
#, fuzzy
|
633 |
msgid "Twitter"
|
634 |
msgstr "სათაური"
|
635 |
|
636 |
+
#: gallery-plugin.php:1231
|
637 |
msgid "Pinterest"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1232
|
641 |
msgid "Google +1"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1245
|
645 |
msgid "Save Changes"
|
646 |
msgstr "ცვლილებების შენახვა"
|
647 |
|
648 |
+
#: gallery-plugin.php:1258
|
649 |
msgid "FAQ"
|
650 |
msgstr "FAQ"
|
651 |
|
652 |
+
#: gallery-plugin.php:1259
|
653 |
msgid "Support"
|
654 |
msgstr "Support"
|
655 |
|
656 |
+
#: gallery-plugin.php:1476
|
657 |
#: template/gallery-single-template.php:76
|
658 |
#, fuzzy
|
659 |
msgid "Sorry, nothing found."
|
660 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
661 |
|
662 |
+
#: gallery-plugin.php:1498
|
663 |
#: template/gallery-single-template.php:101
|
664 |
msgid "Download high resolution image"
|
665 |
msgstr ""
|
languages/gallery-lt_LT.mo
CHANGED
Binary file
|
languages/gallery-lt_LT.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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Naglis Jonaitis <njonaitis@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:103
|
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 "Jūsų temos aplanke nėra failų \"gallery-template.php\" bei \"gallery-single-template.php\". Jei norite, kad galerijos įskiepis tinkamai veiktų, prašome nukopijuoti juos iš `/wp-content/plugins/gallery-plugin/template/` aplanko į savo temos aplanką."
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galerijos"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerija"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Paveikslėlių eilėje kiekis"
|
@@ -167,338 +167,507 @@ msgid "Publishing"
|
|
167 |
msgstr "Vieša"
|
168 |
|
169 |
#: gallery-plugin.php:483
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Date"
|
172 |
msgstr "Data"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
#, fuzzy
|
176 |
msgid "Pro plugins"
|
177 |
msgstr "Rekomenduojami įskiepiai"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Activated plugins"
|
182 |
msgstr "Įjungti įskiepiai"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Read more"
|
191 |
msgstr "Skaityti daugiau"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Settings"
|
198 |
msgstr "Nustatymai"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Installed plugins"
|
203 |
msgstr "Įdiegti įskiepiai"
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "Recommended plugins"
|
208 |
msgstr "Rekomenduojami įskiepiai"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "Purchase"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
#, fuzzy
|
216 |
msgid "Free plugins"
|
217 |
msgstr "Rekomenduojami įskiepiai"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "Download"
|
221 |
msgstr "Atsisiųsti"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
#, php-format
|
225 |
msgid "Install %s"
|
226 |
msgstr "Įdiegti %s"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Install now from wordpress.org"
|
230 |
msgstr "Įdiegti tiesiai iš wordpress.org"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
#, fuzzy
|
234 |
msgid "If you have any questions, please contact us via"
|
235 |
msgstr "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, arba užpildykite susisiekimo formą mūsų tinklalapyje"
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
#, fuzzy
|
239 |
msgid "See images »"
|
240 |
msgstr "Peržiūrėti nuotrauką »"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
#, fuzzy
|
244 |
msgid "Settings are saved"
|
245 |
msgstr "Pasirinktys išsaugotos."
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
#, fuzzy
|
249 |
msgid "Gallery Settings"
|
250 |
msgstr "Galerijų pasirinktys"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#, fuzzy
|
254 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
255 |
msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, fuzzy
|
259 |
msgid "Image size for the album cover"
|
260 |
msgstr "Размер для "
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
-
#: gallery-plugin.php:
|
264 |
-
#: gallery-plugin.php:
|
265 |
#, fuzzy
|
266 |
msgid "Image size"
|
267 |
msgstr "Paveikslėlio matmenų klasės vardas"
|
268 |
|
269 |
-
#: gallery-plugin.php:
|
270 |
-
#: gallery-plugin.php:
|
271 |
msgid "Width (in px)"
|
272 |
msgstr "Plotis (pikseliais)"
|
273 |
|
274 |
-
#: gallery-plugin.php:
|
275 |
-
#: gallery-plugin.php:
|
276 |
msgid "Height (in px)"
|
277 |
msgstr "Aukštis (pikseliais)"
|
278 |
|
279 |
-
#: gallery-plugin.php:
|
280 |
#, fuzzy
|
281 |
msgid "Gallery image size"
|
282 |
msgstr "Galerijos"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
#, fuzzy
|
286 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
287 |
msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
|
288 |
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "Gallery image size in the lightbox"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
#, fuzzy
|
295 |
msgid "Max width (in px)"
|
296 |
msgstr "Plotis (pikseliais)"
|
297 |
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "Max height (in px)"
|
301 |
msgstr "Aukštis (pikseliais)"
|
302 |
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Display a full size image in the lightbox"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
msgid "Crop position"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Horizontal"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "left"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
-
#: gallery-plugin.php:
|
321 |
msgid "center"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "right"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "Vertical"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "top"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "bottom"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "Lightbox background"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid "Default"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "Background transparency (from 0 to 1)"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Select a background color"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Background color"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
-
#: gallery-plugin.php:
|
362 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "Images with border"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
msgid "Border width in px, just numbers"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
-
#: gallery-plugin.php:
|
375 |
msgid "Select a border color"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: gallery-plugin.php:
|
379 |
#, fuzzy
|
380 |
msgid "Number of images in the row"
|
381 |
msgstr "Paveikslėlių eilėje kiekis"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "Start slideshow"
|
385 |
msgstr "Pradėti demonstraciją"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "Slideshow interval"
|
389 |
msgstr "Demonstracijos trukmė"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
#, fuzzy
|
393 |
msgid "Attachment ID"
|
394 |
msgstr "prisegtuko ID"
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
#, fuzzy
|
398 |
msgid "Image Name"
|
399 |
msgstr "Paveikslėlis"
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
#, fuzzy
|
403 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
404 |
msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Random"
|
409 |
msgstr "atsitiktine tvarka"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
#, fuzzy
|
413 |
msgid "Sort images"
|
414 |
msgstr "Paveikslėlių eilėje kiekis"
|
415 |
|
416 |
-
#: gallery-plugin.php:
|
417 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
418 |
msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
422 |
msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "Display text above the image"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "If you want to display text just in a lightbox"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
#, fuzzy
|
434 |
msgid "Display the Back link"
|
435 |
msgstr "Rodyti Sugrįžimo nuorodą"
|
436 |
|
437 |
-
#: gallery-plugin.php:
|
438 |
#, fuzzy
|
439 |
msgid "Display the Back link in the shortcode"
|
440 |
msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "The Back link text"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "The Back link URL"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "Gallery page (Page with Gallery Template)"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "(Full URL to custom page)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "The Read More link text"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
msgid "Display Like buttons in the lightbox"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: gallery-plugin.php:
|
467 |
msgid "FaceBook"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: gallery-plugin.php:
|
471 |
#, fuzzy
|
472 |
msgid "Twitter"
|
473 |
msgstr "Pavadinimas"
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Pinterest"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "Google +1"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Save Changes"
|
485 |
msgstr "Išsaugoti pakeitimus"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
msgid "FAQ"
|
489 |
msgstr "D. U. K."
|
490 |
|
491 |
-
#: gallery-plugin.php:
|
492 |
msgid "Support"
|
493 |
msgstr "Palaikymas"
|
494 |
|
495 |
-
#: gallery-plugin.php:
|
496 |
#: template/gallery-single-template.php:76
|
497 |
#, fuzzy
|
498 |
msgid "Sorry, nothing found."
|
499 |
msgstr "Deja, nieko nerasta."
|
500 |
|
501 |
-
#: gallery-plugin.php:
|
502 |
#: template/gallery-single-template.php:101
|
503 |
msgid "Download high resolution image"
|
504 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Naglis Jonaitis <njonaitis@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "Jūsų temos aplanke nėra failų \"gallery-template.php\" bei \"gallery-single-template.php\". Jei norite, kad galerijos įskiepis tinkamai veiktų, prašome nukopijuoti juos iš `/wp-content/plugins/gallery-plugin/template/` aplanko į savo temos aplanką."
|
23 |
|
27 |
msgstr "Galerijos"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerija"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Paveikslėlių eilėje kiekis"
|
167 |
msgstr "Vieša"
|
168 |
|
169 |
#: gallery-plugin.php:483
|
170 |
+
#: gallery-plugin.php:1174
|
171 |
msgid "Date"
|
172 |
msgstr "Data"
|
173 |
|
174 |
+
#: gallery-plugin.php:658
|
175 |
+
msgid "Not set"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: gallery-plugin.php:660
|
179 |
+
#: gallery-plugin.php:664
|
180 |
+
msgid "On"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: gallery-plugin.php:662
|
184 |
+
#: gallery-plugin.php:666
|
185 |
+
msgid "Off"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: gallery-plugin.php:670
|
189 |
+
#: gallery-plugin.php:674
|
190 |
+
#: gallery-plugin.php:678
|
191 |
+
#: gallery-plugin.php:682
|
192 |
+
#: gallery-plugin.php:686
|
193 |
+
#: gallery-plugin.php:712
|
194 |
+
msgid "N/A"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: gallery-plugin.php:684
|
198 |
+
msgid " Mb"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: gallery-plugin.php:688
|
202 |
+
#: gallery-plugin.php:692
|
203 |
+
#: gallery-plugin.php:696
|
204 |
+
#: gallery-plugin.php:707
|
205 |
+
msgid "Yes"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: gallery-plugin.php:690
|
209 |
+
#: gallery-plugin.php:694
|
210 |
+
#: gallery-plugin.php:698
|
211 |
+
#: gallery-plugin.php:709
|
212 |
+
msgid "No"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: gallery-plugin.php:723
|
216 |
+
msgid "Operating System"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: gallery-plugin.php:724
|
220 |
+
msgid "Server"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: gallery-plugin.php:725
|
224 |
+
msgid "Memory usage"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: gallery-plugin.php:726
|
228 |
+
msgid "MYSQL Version"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: gallery-plugin.php:727
|
232 |
+
msgid "SQL Mode"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: gallery-plugin.php:728
|
236 |
+
msgid "PHP Version"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: gallery-plugin.php:729
|
240 |
+
msgid "PHP Safe Mode"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: gallery-plugin.php:730
|
244 |
+
msgid "PHP Allow URL fopen"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: gallery-plugin.php:731
|
248 |
+
msgid "PHP Memory Limit"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: gallery-plugin.php:732
|
252 |
+
#, fuzzy
|
253 |
+
msgid "PHP Max Upload Size"
|
254 |
+
msgstr "Įkelti failą"
|
255 |
+
|
256 |
+
#: gallery-plugin.php:733
|
257 |
+
msgid "PHP Max Post Size"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: gallery-plugin.php:734
|
261 |
+
msgid "PHP Max Script Execute Time"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: gallery-plugin.php:735
|
265 |
+
msgid "PHP Exif support"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: gallery-plugin.php:736
|
269 |
+
msgid "PHP IPTC support"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: gallery-plugin.php:737
|
273 |
+
msgid "PHP XML support"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:738
|
277 |
+
msgid "Site URL"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: gallery-plugin.php:739
|
281 |
+
msgid "Home URL"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: gallery-plugin.php:740
|
285 |
+
msgid "WordPress Version"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: gallery-plugin.php:741
|
289 |
+
msgid "WordPress DB Version"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: gallery-plugin.php:742
|
293 |
+
msgid "Multisite"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: gallery-plugin.php:743
|
297 |
+
msgid "Active Theme"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: gallery-plugin.php:758
|
301 |
+
msgid "Please enter a valid email address."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: gallery-plugin.php:762
|
305 |
+
msgid "Email with system info is sent to "
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: gallery-plugin.php:766
|
309 |
+
msgid "Thank you for contacting us."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: gallery-plugin.php:794
|
313 |
+
msgid "Sorry, email message could not be delivered."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: gallery-plugin.php:802
|
317 |
#, fuzzy
|
318 |
msgid "Pro plugins"
|
319 |
msgstr "Rekomenduojami įskiepiai"
|
320 |
|
321 |
+
#: gallery-plugin.php:805
|
322 |
+
#: gallery-plugin.php:831
|
323 |
msgid "Activated plugins"
|
324 |
msgstr "Įjungti įskiepiai"
|
325 |
|
326 |
+
#: gallery-plugin.php:807
|
327 |
+
#: gallery-plugin.php:815
|
328 |
+
#: gallery-plugin.php:823
|
329 |
+
#: gallery-plugin.php:833
|
330 |
+
#: gallery-plugin.php:841
|
331 |
+
#: gallery-plugin.php:849
|
332 |
msgid "Read more"
|
333 |
msgstr "Skaityti daugiau"
|
334 |
|
335 |
+
#: gallery-plugin.php:807
|
336 |
+
#: gallery-plugin.php:833
|
337 |
+
#: gallery-plugin.php:1257
|
338 |
+
#: gallery-plugin.php:1272
|
339 |
msgid "Settings"
|
340 |
msgstr "Nustatymai"
|
341 |
|
342 |
+
#: gallery-plugin.php:813
|
343 |
+
#: gallery-plugin.php:839
|
344 |
msgid "Installed plugins"
|
345 |
msgstr "Įdiegti įskiepiai"
|
346 |
|
347 |
+
#: gallery-plugin.php:821
|
348 |
+
#: gallery-plugin.php:847
|
349 |
msgid "Recommended plugins"
|
350 |
msgstr "Rekomenduojami įskiepiai"
|
351 |
|
352 |
+
#: gallery-plugin.php:823
|
353 |
msgid "Purchase"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: gallery-plugin.php:828
|
357 |
#, fuzzy
|
358 |
msgid "Free plugins"
|
359 |
msgstr "Rekomenduojami įskiepiai"
|
360 |
|
361 |
+
#: gallery-plugin.php:849
|
362 |
msgid "Download"
|
363 |
msgstr "Atsisiųsti"
|
364 |
|
365 |
+
#: gallery-plugin.php:849
|
366 |
#, php-format
|
367 |
msgid "Install %s"
|
368 |
msgstr "Įdiegti %s"
|
369 |
|
370 |
+
#: gallery-plugin.php:849
|
371 |
msgid "Install now from wordpress.org"
|
372 |
msgstr "Įdiegti tiesiai iš wordpress.org"
|
373 |
|
374 |
+
#: gallery-plugin.php:854
|
375 |
#, fuzzy
|
376 |
msgid "If you have any questions, please contact us via"
|
377 |
msgstr "Jei turite klausimų, susisiekite su mumis adresu plugin@bestwebsoft.com, arba užpildykite susisiekimo formą mūsų tinklalapyje"
|
378 |
|
379 |
+
#: gallery-plugin.php:861
|
380 |
+
msgid "System status"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: gallery-plugin.php:865
|
384 |
+
msgid "Environment"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: gallery-plugin.php:876
|
388 |
+
#, fuzzy
|
389 |
+
msgid "Active Plugins"
|
390 |
+
msgstr "Įjungti įskiepiai"
|
391 |
+
|
392 |
+
#: gallery-plugin.php:887
|
393 |
+
#, fuzzy
|
394 |
+
msgid "Inactive Plugins"
|
395 |
+
msgstr "Įjungti įskiepiai"
|
396 |
+
|
397 |
+
#: gallery-plugin.php:901
|
398 |
+
#, fuzzy
|
399 |
+
msgid "Send to support"
|
400 |
+
msgstr "Palaikymas"
|
401 |
+
|
402 |
+
#: gallery-plugin.php:908
|
403 |
+
msgid "Send to custom email »"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: gallery-plugin.php:950
|
407 |
#, fuzzy
|
408 |
msgid "See images »"
|
409 |
msgstr "Peržiūrėti nuotrauką »"
|
410 |
|
411 |
+
#: gallery-plugin.php:1049
|
412 |
#, fuzzy
|
413 |
msgid "Settings are saved"
|
414 |
msgstr "Pasirinktys išsaugotos."
|
415 |
|
416 |
+
#: gallery-plugin.php:1063
|
417 |
#, fuzzy
|
418 |
msgid "Gallery Settings"
|
419 |
msgstr "Galerijų pasirinktys"
|
420 |
|
421 |
+
#: gallery-plugin.php:1066
|
422 |
#, fuzzy
|
423 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
424 |
msgstr "Jei norite įterpti galeriją į savo įrašą ar puslapį, tiesiog nukopijuokite šį trumpąjį kodą į savo įrašo ar puslapio turinį:"
|
425 |
|
426 |
+
#: gallery-plugin.php:1070
|
427 |
#, fuzzy
|
428 |
msgid "Image size for the album cover"
|
429 |
msgstr "Размер для "
|
430 |
|
431 |
+
#: gallery-plugin.php:1072
|
432 |
+
#: gallery-plugin.php:1080
|
433 |
+
#: gallery-plugin.php:1093
|
434 |
#, fuzzy
|
435 |
msgid "Image size"
|
436 |
msgstr "Paveikslėlio matmenų klasės vardas"
|
437 |
|
438 |
+
#: gallery-plugin.php:1073
|
439 |
+
#: gallery-plugin.php:1081
|
440 |
msgid "Width (in px)"
|
441 |
msgstr "Plotis (pikseliais)"
|
442 |
|
443 |
+
#: gallery-plugin.php:1074
|
444 |
+
#: gallery-plugin.php:1082
|
445 |
msgid "Height (in px)"
|
446 |
msgstr "Aukštis (pikseliais)"
|
447 |
|
448 |
+
#: gallery-plugin.php:1078
|
449 |
#, fuzzy
|
450 |
msgid "Gallery image size"
|
451 |
msgstr "Galerijos"
|
452 |
|
453 |
+
#: gallery-plugin.php:1086
|
454 |
#, fuzzy
|
455 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
456 |
msgstr "WordPress sukurs įrašo nurodytų matmenų miniatiūros kopiją kai įkelsite naują paveikslėlį."
|
457 |
|
458 |
+
#: gallery-plugin.php:1091
|
459 |
msgid "Gallery image size in the lightbox"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: gallery-plugin.php:1094
|
463 |
#, fuzzy
|
464 |
msgid "Max width (in px)"
|
465 |
msgstr "Plotis (pikseliais)"
|
466 |
|
467 |
+
#: gallery-plugin.php:1095
|
468 |
#, fuzzy
|
469 |
msgid "Max height (in px)"
|
470 |
msgstr "Aukštis (pikseliais)"
|
471 |
|
472 |
+
#: gallery-plugin.php:1096
|
473 |
msgid "Display a full size image in the lightbox"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: gallery-plugin.php:1100
|
477 |
msgid "Crop position"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: gallery-plugin.php:1102
|
481 |
msgid "Horizontal"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1104
|
485 |
msgid "left"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: gallery-plugin.php:1105
|
489 |
+
#: gallery-plugin.php:1112
|
490 |
msgid "center"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: gallery-plugin.php:1106
|
494 |
msgid "right"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:1109
|
498 |
msgid "Vertical"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: gallery-plugin.php:1111
|
502 |
msgid "top"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: gallery-plugin.php:1113
|
506 |
msgid "bottom"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: gallery-plugin.php:1118
|
510 |
msgid "Lightbox background"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: gallery-plugin.php:1120
|
514 |
msgid "Default"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: gallery-plugin.php:1121
|
518 |
msgid "Background transparency (from 0 to 1)"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:1123
|
522 |
msgid "Select a background color"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: gallery-plugin.php:1125
|
526 |
msgid "Background color"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: gallery-plugin.php:1132
|
530 |
+
#: gallery-plugin.php:1237
|
531 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: gallery-plugin.php:1139
|
535 |
msgid "Images with border"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: gallery-plugin.php:1142
|
539 |
msgid "Border width in px, just numbers"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: gallery-plugin.php:1144
|
543 |
+
#: gallery-plugin.php:1146
|
544 |
msgid "Select a border color"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: gallery-plugin.php:1152
|
548 |
#, fuzzy
|
549 |
msgid "Number of images in the row"
|
550 |
msgstr "Paveikslėlių eilėje kiekis"
|
551 |
|
552 |
+
#: gallery-plugin.php:1158
|
553 |
msgid "Start slideshow"
|
554 |
msgstr "Pradėti demonstraciją"
|
555 |
|
556 |
+
#: gallery-plugin.php:1164
|
557 |
msgid "Slideshow interval"
|
558 |
msgstr "Demonstracijos trukmė"
|
559 |
|
560 |
+
#: gallery-plugin.php:1172
|
561 |
#, fuzzy
|
562 |
msgid "Attachment ID"
|
563 |
msgstr "prisegtuko ID"
|
564 |
|
565 |
+
#: gallery-plugin.php:1173
|
566 |
#, fuzzy
|
567 |
msgid "Image Name"
|
568 |
msgstr "Paveikslėlis"
|
569 |
|
570 |
+
#: gallery-plugin.php:1175
|
571 |
#, fuzzy
|
572 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
573 |
msgstr "prisegtukų tvarką (sveikojo skaičiaus laukelis „Įkelti failą“ dialoge)"
|
574 |
|
575 |
+
#: gallery-plugin.php:1176
|
576 |
#, fuzzy
|
577 |
msgid "Random"
|
578 |
msgstr "atsitiktine tvarka"
|
579 |
|
580 |
+
#: gallery-plugin.php:1180
|
581 |
#, fuzzy
|
582 |
msgid "Sort images"
|
583 |
msgstr "Paveikslėlių eilėje kiekis"
|
584 |
|
585 |
+
#: gallery-plugin.php:1182
|
586 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
587 |
msgstr "Didėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 1, 2, 3; a, b, c)"
|
588 |
|
589 |
+
#: gallery-plugin.php:1183
|
590 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
591 |
msgstr "Mažėjančia tvarka (nuo žemiausios iki aukščiausios reikšmės - 3, 2, 1; c, b, a)"
|
592 |
|
593 |
+
#: gallery-plugin.php:1187
|
594 |
msgid "Display text above the image"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: gallery-plugin.php:1189
|
598 |
msgid "If you want to display text just in a lightbox"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: gallery-plugin.php:1193
|
602 |
#, fuzzy
|
603 |
msgid "Display the Back link"
|
604 |
msgstr "Rodyti Sugrįžimo nuorodą"
|
605 |
|
606 |
+
#: gallery-plugin.php:1199
|
607 |
#, fuzzy
|
608 |
msgid "Display the Back link in the shortcode"
|
609 |
msgstr "Rodyti Sugrįžimo nuorodą naudojantis trumpuoju kodu"
|
610 |
|
611 |
+
#: gallery-plugin.php:1205
|
612 |
msgid "The Back link text"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1211
|
616 |
msgid "The Back link URL"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1213
|
620 |
msgid "Gallery page (Page with Gallery Template)"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1215
|
624 |
msgid "(Full URL to custom page)"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1219
|
628 |
msgid "The Read More link text"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1227
|
632 |
msgid "Display Like buttons in the lightbox"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: gallery-plugin.php:1229
|
636 |
msgid "FaceBook"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: gallery-plugin.php:1230
|
640 |
#, fuzzy
|
641 |
msgid "Twitter"
|
642 |
msgstr "Pavadinimas"
|
643 |
|
644 |
+
#: gallery-plugin.php:1231
|
645 |
msgid "Pinterest"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: gallery-plugin.php:1232
|
649 |
msgid "Google +1"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: gallery-plugin.php:1245
|
653 |
msgid "Save Changes"
|
654 |
msgstr "Išsaugoti pakeitimus"
|
655 |
|
656 |
+
#: gallery-plugin.php:1258
|
657 |
msgid "FAQ"
|
658 |
msgstr "D. U. K."
|
659 |
|
660 |
+
#: gallery-plugin.php:1259
|
661 |
msgid "Support"
|
662 |
msgstr "Palaikymas"
|
663 |
|
664 |
+
#: gallery-plugin.php:1476
|
665 |
#: template/gallery-single-template.php:76
|
666 |
#, fuzzy
|
667 |
msgid "Sorry, nothing found."
|
668 |
msgstr "Deja, nieko nerasta."
|
669 |
|
670 |
+
#: gallery-plugin.php:1498
|
671 |
#: template/gallery-single-template.php:101
|
672 |
msgid "Download high resolution image"
|
673 |
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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 "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 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Fotoalbum's"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Fotoalbum"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Aantal afbeeldingen op een rij"
|
@@ -166,332 +166,501 @@ msgid "Publishing"
|
|
166 |
msgstr "Gepubliceerd"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Date"
|
171 |
msgstr "Datum"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#, fuzzy
|
175 |
msgid "Pro plugins"
|
176 |
msgstr "Aanbevolen plugins"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Activated plugins"
|
181 |
msgstr "Geactiveerde plugins"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Read more"
|
190 |
msgstr "Lees verder"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Settings"
|
197 |
msgstr "Instellingen"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Installed plugins"
|
202 |
msgstr "Geinstalleerde plugins"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "Recommended plugins"
|
207 |
msgstr "Aanbevolen plugins"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "Purchase"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "Free plugins"
|
216 |
msgstr "Aanbevolen plugins"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Download"
|
220 |
msgstr "Download"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Install %s"
|
225 |
msgstr "Install %s"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "Install now from wordpress.org"
|
229 |
msgstr "Installeer nu vanaf wordpress.org"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "If you have any questions, please contact us via"
|
234 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "See images »"
|
239 |
msgstr "Bekijk foto »"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
#, fuzzy
|
243 |
msgid "Settings are saved"
|
244 |
msgstr "Opties opgeslagen"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Gallery Settings"
|
249 |
msgstr "Fotoalbum opties"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "Image size for the album cover"
|
258 |
msgstr "De afmetingen voor de cover van het album"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
-
#: gallery-plugin.php:
|
263 |
#, fuzzy
|
264 |
msgid "Image size"
|
265 |
msgstr "Afbeelding grootte"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Width (in px)"
|
270 |
msgstr "Breedte (in px)"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Height (in px)"
|
275 |
msgstr "Hoogte (in px)"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
#, fuzzy
|
279 |
msgid "Gallery image size"
|
280 |
msgstr "Fotoalbum's"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
#, fuzzy
|
284 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
285 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
286 |
|
287 |
-
#: gallery-plugin.php:
|
288 |
msgid "Gallery image size in the lightbox"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
#, fuzzy
|
293 |
msgid "Max width (in px)"
|
294 |
msgstr "Breedte (in px)"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
#, fuzzy
|
298 |
msgid "Max height (in px)"
|
299 |
msgstr "Hoogte (in px)"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "Display a full size image in the lightbox"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Crop position"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Horizontal"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "left"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "center"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "right"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Vertical"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "top"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "bottom"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Lightbox background"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Default"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Background transparency (from 0 to 1)"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Select a background color"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Background color"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Images with border"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Border width in px, just numbers"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Select a border color"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "Number of images in the row"
|
379 |
msgstr "Aantal afbeeldingen op een rij"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "Start slideshow"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Slideshow interval"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Attachment ID"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "Image Name"
|
396 |
msgstr "Afbeelding grootte"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "Random"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Sort images"
|
409 |
msgstr "Aantal afbeeldingen op een rij"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Display text above the image"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "If you want to display text just in a lightbox"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Display the Back link"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display the Back link in the shortcode"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "The Back link text"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "The Back link URL"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Gallery page (Page with Gallery Template)"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "(Full URL to custom page)"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "The Read More link text"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Display Like buttons in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "FaceBook"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#, fuzzy
|
465 |
msgid "Twitter"
|
466 |
msgstr "Titel"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Pinterest"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "Google +1"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
msgid "Save Changes"
|
478 |
msgstr "Bewaar veranderingen"
|
479 |
|
480 |
-
#: gallery-plugin.php:
|
481 |
msgid "FAQ"
|
482 |
msgstr "FAQ"
|
483 |
|
484 |
-
#: gallery-plugin.php:
|
485 |
msgid "Support"
|
486 |
msgstr "Support"
|
487 |
|
488 |
-
#: gallery-plugin.php:
|
489 |
#: template/gallery-single-template.php:76
|
490 |
#, fuzzy
|
491 |
msgid "Sorry, nothing found."
|
492 |
msgstr "Helaas - niets gevonden"
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
#: template/gallery-single-template.php:101
|
496 |
msgid "Download high resolution image"
|
497 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \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:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "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 |
|
27 |
msgstr "Fotoalbum's"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Fotoalbum"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Aantal afbeeldingen op een rij"
|
166 |
msgstr "Gepubliceerd"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
+
#: gallery-plugin.php:1174
|
170 |
msgid "Date"
|
171 |
msgstr "Datum"
|
172 |
|
173 |
+
#: gallery-plugin.php:658
|
174 |
+
msgid "Not set"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: gallery-plugin.php:660
|
178 |
+
#: gallery-plugin.php:664
|
179 |
+
msgid "On"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: gallery-plugin.php:662
|
183 |
+
#: gallery-plugin.php:666
|
184 |
+
msgid "Off"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:670
|
188 |
+
#: gallery-plugin.php:674
|
189 |
+
#: gallery-plugin.php:678
|
190 |
+
#: gallery-plugin.php:682
|
191 |
+
#: gallery-plugin.php:686
|
192 |
+
#: gallery-plugin.php:712
|
193 |
+
msgid "N/A"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: gallery-plugin.php:684
|
197 |
+
msgid " Mb"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: gallery-plugin.php:688
|
201 |
+
#: gallery-plugin.php:692
|
202 |
+
#: gallery-plugin.php:696
|
203 |
+
#: gallery-plugin.php:707
|
204 |
+
msgid "Yes"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: gallery-plugin.php:690
|
208 |
+
#: gallery-plugin.php:694
|
209 |
+
#: gallery-plugin.php:698
|
210 |
+
#: gallery-plugin.php:709
|
211 |
+
msgid "No"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:723
|
215 |
+
msgid "Operating System"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:724
|
219 |
+
msgid "Server"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:725
|
223 |
+
msgid "Memory usage"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:726
|
227 |
+
msgid "MYSQL Version"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:727
|
231 |
+
msgid "SQL Mode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:728
|
235 |
+
msgid "PHP Version"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:729
|
239 |
+
msgid "PHP Safe Mode"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:730
|
243 |
+
msgid "PHP Allow URL fopen"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: gallery-plugin.php:731
|
247 |
+
msgid "PHP Memory Limit"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:732
|
251 |
+
#, fuzzy
|
252 |
+
msgid "PHP Max Upload Size"
|
253 |
+
msgstr "Foto's uploaden"
|
254 |
+
|
255 |
+
#: gallery-plugin.php:733
|
256 |
+
msgid "PHP Max Post Size"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: gallery-plugin.php:734
|
260 |
+
msgid "PHP Max Script Execute Time"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:735
|
264 |
+
msgid "PHP Exif support"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:736
|
268 |
+
msgid "PHP IPTC support"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: gallery-plugin.php:737
|
272 |
+
msgid "PHP XML support"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:738
|
276 |
+
msgid "Site URL"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:739
|
280 |
+
msgid "Home URL"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:740
|
284 |
+
msgid "WordPress Version"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:741
|
288 |
+
msgid "WordPress DB Version"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:742
|
292 |
+
msgid "Multisite"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:743
|
296 |
+
msgid "Active Theme"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:758
|
300 |
+
msgid "Please enter a valid email address."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:762
|
304 |
+
msgid "Email with system info is sent to "
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:766
|
308 |
+
msgid "Thank you for contacting us."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: gallery-plugin.php:794
|
312 |
+
msgid "Sorry, email message could not be delivered."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: gallery-plugin.php:802
|
316 |
#, fuzzy
|
317 |
msgid "Pro plugins"
|
318 |
msgstr "Aanbevolen plugins"
|
319 |
|
320 |
+
#: gallery-plugin.php:805
|
321 |
+
#: gallery-plugin.php:831
|
322 |
msgid "Activated plugins"
|
323 |
msgstr "Geactiveerde plugins"
|
324 |
|
325 |
+
#: gallery-plugin.php:807
|
326 |
+
#: gallery-plugin.php:815
|
327 |
+
#: gallery-plugin.php:823
|
328 |
+
#: gallery-plugin.php:833
|
329 |
+
#: gallery-plugin.php:841
|
330 |
+
#: gallery-plugin.php:849
|
331 |
msgid "Read more"
|
332 |
msgstr "Lees verder"
|
333 |
|
334 |
+
#: gallery-plugin.php:807
|
335 |
+
#: gallery-plugin.php:833
|
336 |
+
#: gallery-plugin.php:1257
|
337 |
+
#: gallery-plugin.php:1272
|
338 |
msgid "Settings"
|
339 |
msgstr "Instellingen"
|
340 |
|
341 |
+
#: gallery-plugin.php:813
|
342 |
+
#: gallery-plugin.php:839
|
343 |
msgid "Installed plugins"
|
344 |
msgstr "Geinstalleerde plugins"
|
345 |
|
346 |
+
#: gallery-plugin.php:821
|
347 |
+
#: gallery-plugin.php:847
|
348 |
msgid "Recommended plugins"
|
349 |
msgstr "Aanbevolen plugins"
|
350 |
|
351 |
+
#: gallery-plugin.php:823
|
352 |
msgid "Purchase"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: gallery-plugin.php:828
|
356 |
#, fuzzy
|
357 |
msgid "Free plugins"
|
358 |
msgstr "Aanbevolen plugins"
|
359 |
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Download"
|
362 |
msgstr "Download"
|
363 |
|
364 |
+
#: gallery-plugin.php:849
|
365 |
#, php-format
|
366 |
msgid "Install %s"
|
367 |
msgstr "Install %s"
|
368 |
|
369 |
+
#: gallery-plugin.php:849
|
370 |
msgid "Install now from wordpress.org"
|
371 |
msgstr "Installeer nu vanaf wordpress.org"
|
372 |
|
373 |
+
#: gallery-plugin.php:854
|
374 |
#, fuzzy
|
375 |
msgid "If you have any questions, please contact us via"
|
376 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
377 |
|
378 |
+
#: gallery-plugin.php:861
|
379 |
+
msgid "System status"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: gallery-plugin.php:865
|
383 |
+
msgid "Environment"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: gallery-plugin.php:876
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Active Plugins"
|
389 |
+
msgstr "Geactiveerde plugins"
|
390 |
+
|
391 |
+
#: gallery-plugin.php:887
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Inactive Plugins"
|
394 |
+
msgstr "Geactiveerde plugins"
|
395 |
+
|
396 |
+
#: gallery-plugin.php:901
|
397 |
+
#, fuzzy
|
398 |
+
msgid "Send to support"
|
399 |
+
msgstr "Support"
|
400 |
+
|
401 |
+
#: gallery-plugin.php:908
|
402 |
+
msgid "Send to custom email »"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: gallery-plugin.php:950
|
406 |
#, fuzzy
|
407 |
msgid "See images »"
|
408 |
msgstr "Bekijk foto »"
|
409 |
|
410 |
+
#: gallery-plugin.php:1049
|
411 |
#, fuzzy
|
412 |
msgid "Settings are saved"
|
413 |
msgstr "Opties opgeslagen"
|
414 |
|
415 |
+
#: gallery-plugin.php:1063
|
416 |
#, fuzzy
|
417 |
msgid "Gallery Settings"
|
418 |
msgstr "Fotoalbum opties"
|
419 |
|
420 |
+
#: gallery-plugin.php:1066
|
421 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: gallery-plugin.php:1070
|
425 |
#, fuzzy
|
426 |
msgid "Image size for the album cover"
|
427 |
msgstr "De afmetingen voor de cover van het album"
|
428 |
|
429 |
+
#: gallery-plugin.php:1072
|
430 |
+
#: gallery-plugin.php:1080
|
431 |
+
#: gallery-plugin.php:1093
|
432 |
#, fuzzy
|
433 |
msgid "Image size"
|
434 |
msgstr "Afbeelding grootte"
|
435 |
|
436 |
+
#: gallery-plugin.php:1073
|
437 |
+
#: gallery-plugin.php:1081
|
438 |
msgid "Width (in px)"
|
439 |
msgstr "Breedte (in px)"
|
440 |
|
441 |
+
#: gallery-plugin.php:1074
|
442 |
+
#: gallery-plugin.php:1082
|
443 |
msgid "Height (in px)"
|
444 |
msgstr "Hoogte (in px)"
|
445 |
|
446 |
+
#: gallery-plugin.php:1078
|
447 |
#, fuzzy
|
448 |
msgid "Gallery image size"
|
449 |
msgstr "Fotoalbum's"
|
450 |
|
451 |
+
#: gallery-plugin.php:1086
|
452 |
#, fuzzy
|
453 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
454 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
455 |
|
456 |
+
#: gallery-plugin.php:1091
|
457 |
msgid "Gallery image size in the lightbox"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1094
|
461 |
#, fuzzy
|
462 |
msgid "Max width (in px)"
|
463 |
msgstr "Breedte (in px)"
|
464 |
|
465 |
+
#: gallery-plugin.php:1095
|
466 |
#, fuzzy
|
467 |
msgid "Max height (in px)"
|
468 |
msgstr "Hoogte (in px)"
|
469 |
|
470 |
+
#: gallery-plugin.php:1096
|
471 |
msgid "Display a full size image in the lightbox"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: gallery-plugin.php:1100
|
475 |
msgid "Crop position"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:1102
|
479 |
msgid "Horizontal"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:1104
|
483 |
msgid "left"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1105
|
487 |
+
#: gallery-plugin.php:1112
|
488 |
msgid "center"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: gallery-plugin.php:1106
|
492 |
msgid "right"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:1109
|
496 |
msgid "Vertical"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:1111
|
500 |
msgid "top"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:1113
|
504 |
msgid "bottom"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1118
|
508 |
msgid "Lightbox background"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:1120
|
512 |
msgid "Default"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1121
|
516 |
msgid "Background transparency (from 0 to 1)"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1123
|
520 |
msgid "Select a background color"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1125
|
524 |
msgid "Background color"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1132
|
528 |
+
#: gallery-plugin.php:1237
|
529 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1139
|
533 |
msgid "Images with border"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1142
|
537 |
msgid "Border width in px, just numbers"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1144
|
541 |
+
#: gallery-plugin.php:1146
|
542 |
msgid "Select a border color"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: gallery-plugin.php:1152
|
546 |
#, fuzzy
|
547 |
msgid "Number of images in the row"
|
548 |
msgstr "Aantal afbeeldingen op een rij"
|
549 |
|
550 |
+
#: gallery-plugin.php:1158
|
551 |
msgid "Start slideshow"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: gallery-plugin.php:1164
|
555 |
msgid "Slideshow interval"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: gallery-plugin.php:1172
|
559 |
msgid "Attachment ID"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: gallery-plugin.php:1173
|
563 |
#, fuzzy
|
564 |
msgid "Image Name"
|
565 |
msgstr "Afbeelding grootte"
|
566 |
|
567 |
+
#: gallery-plugin.php:1175
|
568 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: gallery-plugin.php:1176
|
572 |
msgid "Random"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: gallery-plugin.php:1180
|
576 |
#, fuzzy
|
577 |
msgid "Sort images"
|
578 |
msgstr "Aantal afbeeldingen op een rij"
|
579 |
|
580 |
+
#: gallery-plugin.php:1182
|
581 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: gallery-plugin.php:1183
|
585 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: gallery-plugin.php:1187
|
589 |
msgid "Display text above the image"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: gallery-plugin.php:1189
|
593 |
msgid "If you want to display text just in a lightbox"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: gallery-plugin.php:1193
|
597 |
msgid "Display the Back link"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: gallery-plugin.php:1199
|
601 |
msgid "Display the Back link in the shortcode"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: gallery-plugin.php:1205
|
605 |
msgid "The Back link text"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: gallery-plugin.php:1211
|
609 |
msgid "The Back link URL"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: gallery-plugin.php:1213
|
613 |
msgid "Gallery page (Page with Gallery Template)"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: gallery-plugin.php:1215
|
617 |
msgid "(Full URL to custom page)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1219
|
621 |
msgid "The Read More link text"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1227
|
625 |
msgid "Display Like buttons in the lightbox"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:1229
|
629 |
msgid "FaceBook"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:1230
|
633 |
#, fuzzy
|
634 |
msgid "Twitter"
|
635 |
msgstr "Titel"
|
636 |
|
637 |
+
#: gallery-plugin.php:1231
|
638 |
msgid "Pinterest"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:1232
|
642 |
msgid "Google +1"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: gallery-plugin.php:1245
|
646 |
msgid "Save Changes"
|
647 |
msgstr "Bewaar veranderingen"
|
648 |
|
649 |
+
#: gallery-plugin.php:1258
|
650 |
msgid "FAQ"
|
651 |
msgstr "FAQ"
|
652 |
|
653 |
+
#: gallery-plugin.php:1259
|
654 |
msgid "Support"
|
655 |
msgstr "Support"
|
656 |
|
657 |
+
#: gallery-plugin.php:1476
|
658 |
#: template/gallery-single-template.php:76
|
659 |
#, fuzzy
|
660 |
msgid "Sorry, nothing found."
|
661 |
msgstr "Helaas - niets gevonden"
|
662 |
|
663 |
+
#: gallery-plugin.php:1498
|
664 |
#: template/gallery-single-template.php:101
|
665 |
msgid "Download high resolution image"
|
666 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galeria zdjęć"
|
33 |
|
@@ -97,7 +97,7 @@ msgid "Please make a choice"
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
-
#: gallery-plugin.php:
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Ilość obrazków w rzędzie"
|
@@ -166,332 +166,501 @@ msgid "Publishing"
|
|
166 |
msgstr "Publiczne"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
-
#: gallery-plugin.php:
|
170 |
msgid "Date"
|
171 |
msgstr "Data"
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#, fuzzy
|
175 |
msgid "Pro plugins"
|
176 |
msgstr "Rekomendowane pluginy"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Activated plugins"
|
181 |
msgstr "Aktywny plugin"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Read more"
|
190 |
msgstr "Czytaj dalej"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Settings"
|
197 |
msgstr "Ustawienia"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Installed plugins"
|
202 |
msgstr "Zainstalowane pluginy"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "Recommended plugins"
|
207 |
msgstr "Rekomendowane pluginy"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "Purchase"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "Free plugins"
|
216 |
msgstr "Rekomendowane pluginy"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Download"
|
220 |
msgstr "Pobierz"
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
#, php-format
|
224 |
msgid "Install %s"
|
225 |
msgstr "Zainstaluj %s"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "Install now from wordpress.org"
|
229 |
msgstr "Zainstaluj teraz z wordpress.org"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
#, fuzzy
|
233 |
msgid "If you have any questions, please contact us via"
|
234 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
#, fuzzy
|
238 |
msgid "See images »"
|
239 |
msgstr "Zobacz zdjęcia »"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
#, fuzzy
|
243 |
msgid "Settings are saved"
|
244 |
msgstr "Opcje zostały zapisane."
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Gallery Settings"
|
249 |
msgstr "Opcje galerii."
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
#, fuzzy
|
257 |
msgid "Image size for the album cover"
|
258 |
msgstr "Размер для "
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
-
#: gallery-plugin.php:
|
263 |
#, fuzzy
|
264 |
msgid "Image size"
|
265 |
msgstr "Nazwa rozmiaru obrazka"
|
266 |
|
267 |
-
#: gallery-plugin.php:
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Width (in px)"
|
270 |
msgstr "Szerokość (w px)"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Height (in px)"
|
275 |
msgstr "Wysokość (w px)"
|
276 |
|
277 |
-
#: gallery-plugin.php:
|
278 |
#, fuzzy
|
279 |
msgid "Gallery image size"
|
280 |
msgstr "Galerie zdjęć"
|
281 |
|
282 |
-
#: gallery-plugin.php:
|
283 |
#, fuzzy
|
284 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
285 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
286 |
|
287 |
-
#: gallery-plugin.php:
|
288 |
msgid "Gallery image size in the lightbox"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: gallery-plugin.php:
|
292 |
#, fuzzy
|
293 |
msgid "Max width (in px)"
|
294 |
msgstr "Szerokość (w px)"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
#, fuzzy
|
298 |
msgid "Max height (in px)"
|
299 |
msgstr "Wysokość (w px)"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "Display a full size image in the lightbox"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Crop position"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "Horizontal"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "left"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
-
#: gallery-plugin.php:
|
319 |
msgid "center"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: gallery-plugin.php:
|
323 |
msgid "right"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: gallery-plugin.php:
|
327 |
msgid "Vertical"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: gallery-plugin.php:
|
331 |
msgid "top"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: gallery-plugin.php:
|
335 |
msgid "bottom"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "Lightbox background"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Default"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Background transparency (from 0 to 1)"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
msgid "Select a background color"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: gallery-plugin.php:
|
355 |
msgid "Background color"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: gallery-plugin.php:
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Images with border"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Border width in px, just numbers"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "Select a border color"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
#, fuzzy
|
378 |
msgid "Number of images in the row"
|
379 |
msgstr "Ilość obrazków w rzędzie"
|
380 |
|
381 |
-
#: gallery-plugin.php:
|
382 |
msgid "Start slideshow"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: gallery-plugin.php:
|
386 |
msgid "Slideshow interval"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: gallery-plugin.php:
|
390 |
msgid "Attachment ID"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: gallery-plugin.php:
|
394 |
#, fuzzy
|
395 |
msgid "Image Name"
|
396 |
msgstr "Nazwa rozmiaru obrazka"
|
397 |
|
398 |
-
#: gallery-plugin.php:
|
399 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: gallery-plugin.php:
|
403 |
msgid "Random"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: gallery-plugin.php:
|
407 |
#, fuzzy
|
408 |
msgid "Sort images"
|
409 |
msgstr "Ilość obrazków w rzędzie"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Display text above the image"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "If you want to display text just in a lightbox"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "Display the Back link"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display the Back link in the shortcode"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "The Back link text"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "The Back link URL"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Gallery page (Page with Gallery Template)"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "(Full URL to custom page)"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "The Read More link text"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "Display Like buttons in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "FaceBook"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#, fuzzy
|
465 |
msgid "Twitter"
|
466 |
msgstr "Tytuł"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
msgid "Pinterest"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: gallery-plugin.php:
|
473 |
msgid "Google +1"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: gallery-plugin.php:
|
477 |
msgid "Save Changes"
|
478 |
msgstr "Zapisz zmiany"
|
479 |
|
480 |
-
#: gallery-plugin.php:
|
481 |
msgid "FAQ"
|
482 |
msgstr "FAQ "
|
483 |
|
484 |
-
#: gallery-plugin.php:
|
485 |
msgid "Support"
|
486 |
msgstr "Wsparcie"
|
487 |
|
488 |
-
#: gallery-plugin.php:
|
489 |
#: template/gallery-single-template.php:76
|
490 |
#, fuzzy
|
491 |
msgid "Sorry, nothing found."
|
492 |
msgstr "Przykro nam - nic nie znaleziono."
|
493 |
|
494 |
-
#: gallery-plugin.php:
|
495 |
#: template/gallery-single-template.php:101
|
496 |
msgid "Download high resolution image"
|
497 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:31+0300\n"
|
7 |
"Last-Translator: \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:103
|
20 |
+
#: gallery-plugin.php:1056
|
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:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galeria zdjęć"
|
33 |
|
97 |
msgstr ""
|
98 |
|
99 |
#: gallery-plugin.php:228
|
100 |
+
#: gallery-plugin.php:1170
|
101 |
#, fuzzy
|
102 |
msgid "Sort images by"
|
103 |
msgstr "Ilość obrazków w rzędzie"
|
166 |
msgstr "Publiczne"
|
167 |
|
168 |
#: gallery-plugin.php:483
|
169 |
+
#: gallery-plugin.php:1174
|
170 |
msgid "Date"
|
171 |
msgstr "Data"
|
172 |
|
173 |
+
#: gallery-plugin.php:658
|
174 |
+
msgid "Not set"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: gallery-plugin.php:660
|
178 |
+
#: gallery-plugin.php:664
|
179 |
+
msgid "On"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: gallery-plugin.php:662
|
183 |
+
#: gallery-plugin.php:666
|
184 |
+
msgid "Off"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:670
|
188 |
+
#: gallery-plugin.php:674
|
189 |
+
#: gallery-plugin.php:678
|
190 |
+
#: gallery-plugin.php:682
|
191 |
+
#: gallery-plugin.php:686
|
192 |
+
#: gallery-plugin.php:712
|
193 |
+
msgid "N/A"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: gallery-plugin.php:684
|
197 |
+
msgid " Mb"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: gallery-plugin.php:688
|
201 |
+
#: gallery-plugin.php:692
|
202 |
+
#: gallery-plugin.php:696
|
203 |
+
#: gallery-plugin.php:707
|
204 |
+
msgid "Yes"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: gallery-plugin.php:690
|
208 |
+
#: gallery-plugin.php:694
|
209 |
+
#: gallery-plugin.php:698
|
210 |
+
#: gallery-plugin.php:709
|
211 |
+
msgid "No"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: gallery-plugin.php:723
|
215 |
+
msgid "Operating System"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: gallery-plugin.php:724
|
219 |
+
msgid "Server"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:725
|
223 |
+
msgid "Memory usage"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:726
|
227 |
+
msgid "MYSQL Version"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: gallery-plugin.php:727
|
231 |
+
msgid "SQL Mode"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: gallery-plugin.php:728
|
235 |
+
msgid "PHP Version"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: gallery-plugin.php:729
|
239 |
+
msgid "PHP Safe Mode"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: gallery-plugin.php:730
|
243 |
+
msgid "PHP Allow URL fopen"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: gallery-plugin.php:731
|
247 |
+
msgid "PHP Memory Limit"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:732
|
251 |
+
#, fuzzy
|
252 |
+
msgid "PHP Max Upload Size"
|
253 |
+
msgstr "Wgraj plik"
|
254 |
+
|
255 |
+
#: gallery-plugin.php:733
|
256 |
+
msgid "PHP Max Post Size"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: gallery-plugin.php:734
|
260 |
+
msgid "PHP Max Script Execute Time"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: gallery-plugin.php:735
|
264 |
+
msgid "PHP Exif support"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: gallery-plugin.php:736
|
268 |
+
msgid "PHP IPTC support"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: gallery-plugin.php:737
|
272 |
+
msgid "PHP XML support"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:738
|
276 |
+
msgid "Site URL"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:739
|
280 |
+
msgid "Home URL"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:740
|
284 |
+
msgid "WordPress Version"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:741
|
288 |
+
msgid "WordPress DB Version"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:742
|
292 |
+
msgid "Multisite"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:743
|
296 |
+
msgid "Active Theme"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:758
|
300 |
+
msgid "Please enter a valid email address."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:762
|
304 |
+
msgid "Email with system info is sent to "
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:766
|
308 |
+
msgid "Thank you for contacting us."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: gallery-plugin.php:794
|
312 |
+
msgid "Sorry, email message could not be delivered."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: gallery-plugin.php:802
|
316 |
#, fuzzy
|
317 |
msgid "Pro plugins"
|
318 |
msgstr "Rekomendowane pluginy"
|
319 |
|
320 |
+
#: gallery-plugin.php:805
|
321 |
+
#: gallery-plugin.php:831
|
322 |
msgid "Activated plugins"
|
323 |
msgstr "Aktywny plugin"
|
324 |
|
325 |
+
#: gallery-plugin.php:807
|
326 |
+
#: gallery-plugin.php:815
|
327 |
+
#: gallery-plugin.php:823
|
328 |
+
#: gallery-plugin.php:833
|
329 |
+
#: gallery-plugin.php:841
|
330 |
+
#: gallery-plugin.php:849
|
331 |
msgid "Read more"
|
332 |
msgstr "Czytaj dalej"
|
333 |
|
334 |
+
#: gallery-plugin.php:807
|
335 |
+
#: gallery-plugin.php:833
|
336 |
+
#: gallery-plugin.php:1257
|
337 |
+
#: gallery-plugin.php:1272
|
338 |
msgid "Settings"
|
339 |
msgstr "Ustawienia"
|
340 |
|
341 |
+
#: gallery-plugin.php:813
|
342 |
+
#: gallery-plugin.php:839
|
343 |
msgid "Installed plugins"
|
344 |
msgstr "Zainstalowane pluginy"
|
345 |
|
346 |
+
#: gallery-plugin.php:821
|
347 |
+
#: gallery-plugin.php:847
|
348 |
msgid "Recommended plugins"
|
349 |
msgstr "Rekomendowane pluginy"
|
350 |
|
351 |
+
#: gallery-plugin.php:823
|
352 |
msgid "Purchase"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: gallery-plugin.php:828
|
356 |
#, fuzzy
|
357 |
msgid "Free plugins"
|
358 |
msgstr "Rekomendowane pluginy"
|
359 |
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Download"
|
362 |
msgstr "Pobierz"
|
363 |
|
364 |
+
#: gallery-plugin.php:849
|
365 |
#, php-format
|
366 |
msgid "Install %s"
|
367 |
msgstr "Zainstaluj %s"
|
368 |
|
369 |
+
#: gallery-plugin.php:849
|
370 |
msgid "Install now from wordpress.org"
|
371 |
msgstr "Zainstaluj teraz z wordpress.org"
|
372 |
|
373 |
+
#: gallery-plugin.php:854
|
374 |
#, fuzzy
|
375 |
msgid "If you have any questions, please contact us via"
|
376 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
377 |
|
378 |
+
#: gallery-plugin.php:861
|
379 |
+
msgid "System status"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: gallery-plugin.php:865
|
383 |
+
msgid "Environment"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: gallery-plugin.php:876
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Active Plugins"
|
389 |
+
msgstr "Aktywny plugin"
|
390 |
+
|
391 |
+
#: gallery-plugin.php:887
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Inactive Plugins"
|
394 |
+
msgstr "Aktywny plugin"
|
395 |
+
|
396 |
+
#: gallery-plugin.php:901
|
397 |
+
#, fuzzy
|
398 |
+
msgid "Send to support"
|
399 |
+
msgstr "Wsparcie"
|
400 |
+
|
401 |
+
#: gallery-plugin.php:908
|
402 |
+
msgid "Send to custom email »"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: gallery-plugin.php:950
|
406 |
#, fuzzy
|
407 |
msgid "See images »"
|
408 |
msgstr "Zobacz zdjęcia »"
|
409 |
|
410 |
+
#: gallery-plugin.php:1049
|
411 |
#, fuzzy
|
412 |
msgid "Settings are saved"
|
413 |
msgstr "Opcje zostały zapisane."
|
414 |
|
415 |
+
#: gallery-plugin.php:1063
|
416 |
#, fuzzy
|
417 |
msgid "Gallery Settings"
|
418 |
msgstr "Opcje galerii."
|
419 |
|
420 |
+
#: gallery-plugin.php:1066
|
421 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: gallery-plugin.php:1070
|
425 |
#, fuzzy
|
426 |
msgid "Image size for the album cover"
|
427 |
msgstr "Размер для "
|
428 |
|
429 |
+
#: gallery-plugin.php:1072
|
430 |
+
#: gallery-plugin.php:1080
|
431 |
+
#: gallery-plugin.php:1093
|
432 |
#, fuzzy
|
433 |
msgid "Image size"
|
434 |
msgstr "Nazwa rozmiaru obrazka"
|
435 |
|
436 |
+
#: gallery-plugin.php:1073
|
437 |
+
#: gallery-plugin.php:1081
|
438 |
msgid "Width (in px)"
|
439 |
msgstr "Szerokość (w px)"
|
440 |
|
441 |
+
#: gallery-plugin.php:1074
|
442 |
+
#: gallery-plugin.php:1082
|
443 |
msgid "Height (in px)"
|
444 |
msgstr "Wysokość (w px)"
|
445 |
|
446 |
+
#: gallery-plugin.php:1078
|
447 |
#, fuzzy
|
448 |
msgid "Gallery image size"
|
449 |
msgstr "Galerie zdjęć"
|
450 |
|
451 |
+
#: gallery-plugin.php:1086
|
452 |
#, fuzzy
|
453 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
454 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
455 |
|
456 |
+
#: gallery-plugin.php:1091
|
457 |
msgid "Gallery image size in the lightbox"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: gallery-plugin.php:1094
|
461 |
#, fuzzy
|
462 |
msgid "Max width (in px)"
|
463 |
msgstr "Szerokość (w px)"
|
464 |
|
465 |
+
#: gallery-plugin.php:1095
|
466 |
#, fuzzy
|
467 |
msgid "Max height (in px)"
|
468 |
msgstr "Wysokość (w px)"
|
469 |
|
470 |
+
#: gallery-plugin.php:1096
|
471 |
msgid "Display a full size image in the lightbox"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: gallery-plugin.php:1100
|
475 |
msgid "Crop position"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: gallery-plugin.php:1102
|
479 |
msgid "Horizontal"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: gallery-plugin.php:1104
|
483 |
msgid "left"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: gallery-plugin.php:1105
|
487 |
+
#: gallery-plugin.php:1112
|
488 |
msgid "center"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: gallery-plugin.php:1106
|
492 |
msgid "right"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: gallery-plugin.php:1109
|
496 |
msgid "Vertical"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: gallery-plugin.php:1111
|
500 |
msgid "top"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: gallery-plugin.php:1113
|
504 |
msgid "bottom"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: gallery-plugin.php:1118
|
508 |
msgid "Lightbox background"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: gallery-plugin.php:1120
|
512 |
msgid "Default"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: gallery-plugin.php:1121
|
516 |
msgid "Background transparency (from 0 to 1)"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: gallery-plugin.php:1123
|
520 |
msgid "Select a background color"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: gallery-plugin.php:1125
|
524 |
msgid "Background color"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: gallery-plugin.php:1132
|
528 |
+
#: gallery-plugin.php:1237
|
529 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1139
|
533 |
msgid "Images with border"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1142
|
537 |
msgid "Border width in px, just numbers"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1144
|
541 |
+
#: gallery-plugin.php:1146
|
542 |
msgid "Select a border color"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: gallery-plugin.php:1152
|
546 |
#, fuzzy
|
547 |
msgid "Number of images in the row"
|
548 |
msgstr "Ilość obrazków w rzędzie"
|
549 |
|
550 |
+
#: gallery-plugin.php:1158
|
551 |
msgid "Start slideshow"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: gallery-plugin.php:1164
|
555 |
msgid "Slideshow interval"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: gallery-plugin.php:1172
|
559 |
msgid "Attachment ID"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: gallery-plugin.php:1173
|
563 |
#, fuzzy
|
564 |
msgid "Image Name"
|
565 |
msgstr "Nazwa rozmiaru obrazka"
|
566 |
|
567 |
+
#: gallery-plugin.php:1175
|
568 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: gallery-plugin.php:1176
|
572 |
msgid "Random"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: gallery-plugin.php:1180
|
576 |
#, fuzzy
|
577 |
msgid "Sort images"
|
578 |
msgstr "Ilość obrazków w rzędzie"
|
579 |
|
580 |
+
#: gallery-plugin.php:1182
|
581 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: gallery-plugin.php:1183
|
585 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: gallery-plugin.php:1187
|
589 |
msgid "Display text above the image"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: gallery-plugin.php:1189
|
593 |
msgid "If you want to display text just in a lightbox"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: gallery-plugin.php:1193
|
597 |
msgid "Display the Back link"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: gallery-plugin.php:1199
|
601 |
msgid "Display the Back link in the shortcode"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: gallery-plugin.php:1205
|
605 |
msgid "The Back link text"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: gallery-plugin.php:1211
|
609 |
msgid "The Back link URL"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: gallery-plugin.php:1213
|
613 |
msgid "Gallery page (Page with Gallery Template)"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: gallery-plugin.php:1215
|
617 |
msgid "(Full URL to custom page)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: gallery-plugin.php:1219
|
621 |
msgid "The Read More link text"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: gallery-plugin.php:1227
|
625 |
msgid "Display Like buttons in the lightbox"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: gallery-plugin.php:1229
|
629 |
msgid "FaceBook"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: gallery-plugin.php:1230
|
633 |
#, fuzzy
|
634 |
msgid "Twitter"
|
635 |
msgstr "Tytuł"
|
636 |
|
637 |
+
#: gallery-plugin.php:1231
|
638 |
msgid "Pinterest"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: gallery-plugin.php:1232
|
642 |
msgid "Google +1"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: gallery-plugin.php:1245
|
646 |
msgid "Save Changes"
|
647 |
msgstr "Zapisz zmiany"
|
648 |
|
649 |
+
#: gallery-plugin.php:1258
|
650 |
msgid "FAQ"
|
651 |
msgstr "FAQ "
|
652 |
|
653 |
+
#: gallery-plugin.php:1259
|
654 |
msgid "Support"
|
655 |
msgstr "Wsparcie"
|
656 |
|
657 |
+
#: gallery-plugin.php:1476
|
658 |
#: template/gallery-single-template.php:76
|
659 |
#, fuzzy
|
660 |
msgid "Sorry, nothing found."
|
661 |
msgstr "Przykro nam - nic nie znaleziono."
|
662 |
|
663 |
+
#: gallery-plugin.php:1498
|
664 |
#: template/gallery-single-template.php:101
|
665 |
msgid "Download high resolution image"
|
666 |
msgstr ""
|
languages/gallery-pt_BR.mo
CHANGED
Binary file
|
languages/gallery-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
|
21 |
# @ gallery
|
22 |
#: gallery-plugin.php:103
|
23 |
-
#: gallery-plugin.php:
|
24 |
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"
|
25 |
msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
|
26 |
|
@@ -32,7 +32,7 @@ msgstr "Galerias"
|
|
32 |
|
33 |
# @ gallery
|
34 |
#: gallery-plugin.php:128
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Gallery"
|
37 |
msgstr "Galeria"
|
38 |
|
@@ -115,7 +115,7 @@ msgstr ""
|
|
115 |
|
116 |
# @ gallery
|
117 |
#: gallery-plugin.php:228
|
118 |
-
#: gallery-plugin.php:
|
119 |
#, fuzzy
|
120 |
msgid "Sort images by"
|
121 |
msgstr "Quantidade de imagens por linha"
|
@@ -192,378 +192,551 @@ msgstr "Público"
|
|
192 |
|
193 |
# @ gallery
|
194 |
#: gallery-plugin.php:483
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Date"
|
197 |
msgstr "Data"
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
# @ gallery
|
200 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
#, fuzzy
|
202 |
msgid "Pro plugins"
|
203 |
msgstr "Plugins recomendados"
|
204 |
|
205 |
# @ gallery
|
206 |
-
#: gallery-plugin.php:
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Activated plugins"
|
209 |
msgstr "Plugins ativados"
|
210 |
|
211 |
# @ gallery
|
212 |
-
#: gallery-plugin.php:
|
213 |
-
#: gallery-plugin.php:
|
214 |
-
#: gallery-plugin.php:
|
215 |
-
#: gallery-plugin.php:
|
216 |
-
#: gallery-plugin.php:
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Read more"
|
219 |
msgstr "Leia mais"
|
220 |
|
221 |
# @ gallery
|
222 |
-
#: gallery-plugin.php:
|
223 |
-
#: gallery-plugin.php:
|
224 |
-
#: gallery-plugin.php:
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Settings"
|
227 |
msgstr "Configurações"
|
228 |
|
229 |
# @ gallery
|
230 |
-
#: gallery-plugin.php:
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "Installed plugins"
|
233 |
msgstr "Plugins instalados"
|
234 |
|
235 |
# @ gallery
|
236 |
-
#: gallery-plugin.php:
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "Recommended plugins"
|
239 |
msgstr "Plugins recomendados"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Purchase"
|
243 |
msgstr ""
|
244 |
|
245 |
# @ gallery
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Free plugins"
|
249 |
msgstr "Plugins recomendados"
|
250 |
|
251 |
# @ gallery
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "Download"
|
254 |
msgstr "Download"
|
255 |
|
256 |
# @ default
|
257 |
-
#: gallery-plugin.php:
|
258 |
#, php-format
|
259 |
msgid "Install %s"
|
260 |
msgstr "Instalar %s"
|
261 |
|
262 |
# @ gallery
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid "Install now from wordpress.org"
|
265 |
msgstr "Instale agora via wordpres.org"
|
266 |
|
267 |
# @ gallery
|
268 |
-
#: gallery-plugin.php:
|
269 |
#, fuzzy
|
270 |
msgid "If you have any questions, please contact us via"
|
271 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
# @ gallery
|
274 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
#, fuzzy
|
276 |
msgid "See images »"
|
277 |
msgstr "Ver foto »"
|
278 |
|
279 |
# @ gallery
|
280 |
-
#: gallery-plugin.php:
|
281 |
#, fuzzy
|
282 |
msgid "Settings are saved"
|
283 |
msgstr "Opções salvas."
|
284 |
|
285 |
# @ gallery
|
286 |
-
#: gallery-plugin.php:
|
287 |
#, fuzzy
|
288 |
msgid "Gallery Settings"
|
289 |
msgstr "Opções da Galeria"
|
290 |
|
291 |
# @ gallery
|
292 |
-
#: gallery-plugin.php:
|
293 |
#, fuzzy
|
294 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
295 |
msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
|
296 |
|
297 |
# @ gallery
|
298 |
-
#: gallery-plugin.php:
|
299 |
#, fuzzy
|
300 |
msgid "Image size for the album cover"
|
301 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
302 |
|
303 |
# @ gallery
|
304 |
-
#: gallery-plugin.php:
|
305 |
-
#: gallery-plugin.php:
|
306 |
-
#: gallery-plugin.php:
|
307 |
#, fuzzy
|
308 |
msgid "Image size"
|
309 |
msgstr "Nome do tamanho"
|
310 |
|
311 |
# @ gallery
|
312 |
-
#: gallery-plugin.php:
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Width (in px)"
|
315 |
msgstr "Largura (em px)"
|
316 |
|
317 |
# @ gallery
|
318 |
-
#: gallery-plugin.php:
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Height (in px)"
|
321 |
msgstr "Altura (em px)"
|
322 |
|
323 |
# @ gallery
|
324 |
-
#: gallery-plugin.php:
|
325 |
#, fuzzy
|
326 |
msgid "Gallery image size"
|
327 |
msgstr "Galerias"
|
328 |
|
329 |
# @ gallery
|
330 |
-
#: gallery-plugin.php:
|
331 |
#, fuzzy
|
332 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
333 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
334 |
|
335 |
-
#: gallery-plugin.php:
|
336 |
msgid "Gallery image size in the lightbox"
|
337 |
msgstr ""
|
338 |
|
339 |
# @ gallery
|
340 |
-
#: gallery-plugin.php:
|
341 |
#, fuzzy
|
342 |
msgid "Max width (in px)"
|
343 |
msgstr "Largura (em px)"
|
344 |
|
345 |
# @ gallery
|
346 |
-
#: gallery-plugin.php:
|
347 |
#, fuzzy
|
348 |
msgid "Max height (in px)"
|
349 |
msgstr "Altura (em px)"
|
350 |
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Display a full size image in the lightbox"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
msgid "Crop position"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "Horizontal"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "left"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
-
#: gallery-plugin.php:
|
369 |
msgid "center"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: gallery-plugin.php:
|
373 |
msgid "right"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: gallery-plugin.php:
|
377 |
msgid "Vertical"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "top"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "bottom"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Lightbox background"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
msgid "Default"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: gallery-plugin.php:
|
397 |
msgid "Background transparency (from 0 to 1)"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
msgid "Select a background color"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: gallery-plugin.php:
|
405 |
msgid "Background color"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: gallery-plugin.php:
|
409 |
-
#: gallery-plugin.php:
|
410 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: gallery-plugin.php:
|
414 |
msgid "Images with border"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: gallery-plugin.php:
|
418 |
msgid "Border width in px, just numbers"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: gallery-plugin.php:
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "Select a border color"
|
424 |
msgstr ""
|
425 |
|
426 |
# @ gallery
|
427 |
-
#: gallery-plugin.php:
|
428 |
#, fuzzy
|
429 |
msgid "Number of images in the row"
|
430 |
msgstr "Quantidade de imagens por linha"
|
431 |
|
432 |
# @ gallery
|
433 |
-
#: gallery-plugin.php:
|
434 |
msgid "Start slideshow"
|
435 |
msgstr "Iniciar Apresentação de Slides"
|
436 |
|
437 |
# @ gallery
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "Slideshow interval"
|
440 |
msgstr "Intervalo de tempo entre cada Slide"
|
441 |
|
442 |
# @ gallery
|
443 |
-
#: gallery-plugin.php:
|
444 |
#, fuzzy
|
445 |
msgid "Attachment ID"
|
446 |
msgstr "id do anexo"
|
447 |
|
448 |
# @ gallery
|
449 |
-
#: gallery-plugin.php:
|
450 |
#, fuzzy
|
451 |
msgid "Image Name"
|
452 |
msgstr "Imagem "
|
453 |
|
454 |
# @ gallery
|
455 |
-
#: gallery-plugin.php:
|
456 |
#, fuzzy
|
457 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
458 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
459 |
|
460 |
# @ gallery
|
461 |
-
#: gallery-plugin.php:
|
462 |
#, fuzzy
|
463 |
msgid "Random"
|
464 |
msgstr "aleatório"
|
465 |
|
466 |
# @ gallery
|
467 |
-
#: gallery-plugin.php:
|
468 |
#, fuzzy
|
469 |
msgid "Sort images"
|
470 |
msgstr "Quantidade de imagens por linha"
|
471 |
|
472 |
# @ gallery
|
473 |
-
#: gallery-plugin.php:
|
474 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
475 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
476 |
|
477 |
# @ gallery
|
478 |
-
#: gallery-plugin.php:
|
479 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
480 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
481 |
|
482 |
-
#: gallery-plugin.php:
|
483 |
msgid "Display text above the image"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: gallery-plugin.php:
|
487 |
msgid "If you want to display text just in a lightbox"
|
488 |
msgstr ""
|
489 |
|
490 |
# @ gallery
|
491 |
-
#: gallery-plugin.php:
|
492 |
#, fuzzy
|
493 |
msgid "Display the Back link"
|
494 |
msgstr "Mostrar link de Retorno"
|
495 |
|
496 |
# @ gallery
|
497 |
-
#: gallery-plugin.php:
|
498 |
#, fuzzy
|
499 |
msgid "Display the Back link in the shortcode"
|
500 |
msgstr "Mostrar link de Retorno no shortcode"
|
501 |
|
502 |
-
#: gallery-plugin.php:
|
503 |
msgid "The Back link text"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
msgid "The Back link URL"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: gallery-plugin.php:
|
511 |
msgid "Gallery page (Page with Gallery Template)"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: gallery-plugin.php:
|
515 |
msgid "(Full URL to custom page)"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: gallery-plugin.php:
|
519 |
msgid "The Read More link text"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: gallery-plugin.php:
|
523 |
msgid "Display Like buttons in the lightbox"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: gallery-plugin.php:
|
527 |
msgid "FaceBook"
|
528 |
msgstr ""
|
529 |
|
530 |
# @ gallery
|
531 |
-
#: gallery-plugin.php:
|
532 |
#, fuzzy
|
533 |
msgid "Twitter"
|
534 |
msgstr "Título"
|
535 |
|
536 |
-
#: gallery-plugin.php:
|
537 |
msgid "Pinterest"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: gallery-plugin.php:
|
541 |
msgid "Google +1"
|
542 |
msgstr ""
|
543 |
|
544 |
# @ default
|
545 |
-
#: gallery-plugin.php:
|
546 |
msgid "Save Changes"
|
547 |
msgstr "Salvar Alterações"
|
548 |
|
549 |
# @ gallery
|
550 |
-
#: gallery-plugin.php:
|
551 |
msgid "FAQ"
|
552 |
msgstr "FAQ"
|
553 |
|
554 |
# @ gallery
|
555 |
-
#: gallery-plugin.php:
|
556 |
msgid "Support"
|
557 |
msgstr "Suporte"
|
558 |
|
559 |
# @ gallery
|
560 |
-
#: gallery-plugin.php:
|
561 |
#: template/gallery-single-template.php:76
|
562 |
#, fuzzy
|
563 |
msgid "Sorry, nothing found."
|
564 |
msgstr "Desculpe - nada foi encontrado."
|
565 |
|
566 |
-
#: gallery-plugin.php:
|
567 |
#: template/gallery-single-template.php:101
|
568 |
msgid "Download high resolution image"
|
569 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:32+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:32+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
9 |
"MIME-Version: 1.0\n"
|
20 |
|
21 |
# @ gallery
|
22 |
#: gallery-plugin.php:103
|
23 |
+
#: gallery-plugin.php:1056
|
24 |
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"
|
25 |
msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
|
26 |
|
32 |
|
33 |
# @ gallery
|
34 |
#: gallery-plugin.php:128
|
35 |
+
#: gallery-plugin.php:923
|
36 |
msgid "Gallery"
|
37 |
msgstr "Galeria"
|
38 |
|
115 |
|
116 |
# @ gallery
|
117 |
#: gallery-plugin.php:228
|
118 |
+
#: gallery-plugin.php:1170
|
119 |
#, fuzzy
|
120 |
msgid "Sort images by"
|
121 |
msgstr "Quantidade de imagens por linha"
|
192 |
|
193 |
# @ gallery
|
194 |
#: gallery-plugin.php:483
|
195 |
+
#: gallery-plugin.php:1174
|
196 |
msgid "Date"
|
197 |
msgstr "Data"
|
198 |
|
199 |
+
#: gallery-plugin.php:658
|
200 |
+
msgid "Not set"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: gallery-plugin.php:660
|
204 |
+
#: gallery-plugin.php:664
|
205 |
+
msgid "On"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: gallery-plugin.php:662
|
209 |
+
#: gallery-plugin.php:666
|
210 |
+
msgid "Off"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:670
|
214 |
+
#: gallery-plugin.php:674
|
215 |
+
#: gallery-plugin.php:678
|
216 |
+
#: gallery-plugin.php:682
|
217 |
+
#: gallery-plugin.php:686
|
218 |
+
#: gallery-plugin.php:712
|
219 |
+
msgid "N/A"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: gallery-plugin.php:684
|
223 |
+
msgid " Mb"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: gallery-plugin.php:688
|
227 |
+
#: gallery-plugin.php:692
|
228 |
+
#: gallery-plugin.php:696
|
229 |
+
#: gallery-plugin.php:707
|
230 |
+
msgid "Yes"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:690
|
234 |
+
#: gallery-plugin.php:694
|
235 |
+
#: gallery-plugin.php:698
|
236 |
+
#: gallery-plugin.php:709
|
237 |
+
msgid "No"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: gallery-plugin.php:723
|
241 |
+
msgid "Operating System"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: gallery-plugin.php:724
|
245 |
+
msgid "Server"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: gallery-plugin.php:725
|
249 |
+
msgid "Memory usage"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: gallery-plugin.php:726
|
253 |
+
msgid "MYSQL Version"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: gallery-plugin.php:727
|
257 |
+
msgid "SQL Mode"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: gallery-plugin.php:728
|
261 |
+
msgid "PHP Version"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: gallery-plugin.php:729
|
265 |
+
msgid "PHP Safe Mode"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: gallery-plugin.php:730
|
269 |
+
msgid "PHP Allow URL fopen"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: gallery-plugin.php:731
|
273 |
+
msgid "PHP Memory Limit"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
# @ gallery
|
277 |
+
#: gallery-plugin.php:732
|
278 |
+
#, fuzzy
|
279 |
+
msgid "PHP Max Upload Size"
|
280 |
+
msgstr "Enviar Arquivo"
|
281 |
+
|
282 |
+
#: gallery-plugin.php:733
|
283 |
+
msgid "PHP Max Post Size"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: gallery-plugin.php:734
|
287 |
+
msgid "PHP Max Script Execute Time"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: gallery-plugin.php:735
|
291 |
+
msgid "PHP Exif support"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: gallery-plugin.php:736
|
295 |
+
msgid "PHP IPTC support"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: gallery-plugin.php:737
|
299 |
+
msgid "PHP XML support"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: gallery-plugin.php:738
|
303 |
+
msgid "Site URL"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:739
|
307 |
+
msgid "Home URL"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:740
|
311 |
+
msgid "WordPress Version"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: gallery-plugin.php:741
|
315 |
+
msgid "WordPress DB Version"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: gallery-plugin.php:742
|
319 |
+
msgid "Multisite"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: gallery-plugin.php:743
|
323 |
+
msgid "Active Theme"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: gallery-plugin.php:758
|
327 |
+
msgid "Please enter a valid email address."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: gallery-plugin.php:762
|
331 |
+
msgid "Email with system info is sent to "
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: gallery-plugin.php:766
|
335 |
+
msgid "Thank you for contacting us."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: gallery-plugin.php:794
|
339 |
+
msgid "Sorry, email message could not be delivered."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
# @ gallery
|
343 |
+
#: gallery-plugin.php:802
|
344 |
#, fuzzy
|
345 |
msgid "Pro plugins"
|
346 |
msgstr "Plugins recomendados"
|
347 |
|
348 |
# @ gallery
|
349 |
+
#: gallery-plugin.php:805
|
350 |
+
#: gallery-plugin.php:831
|
351 |
msgid "Activated plugins"
|
352 |
msgstr "Plugins ativados"
|
353 |
|
354 |
# @ gallery
|
355 |
+
#: gallery-plugin.php:807
|
356 |
+
#: gallery-plugin.php:815
|
357 |
+
#: gallery-plugin.php:823
|
358 |
+
#: gallery-plugin.php:833
|
359 |
+
#: gallery-plugin.php:841
|
360 |
+
#: gallery-plugin.php:849
|
361 |
msgid "Read more"
|
362 |
msgstr "Leia mais"
|
363 |
|
364 |
# @ gallery
|
365 |
+
#: gallery-plugin.php:807
|
366 |
+
#: gallery-plugin.php:833
|
367 |
+
#: gallery-plugin.php:1257
|
368 |
+
#: gallery-plugin.php:1272
|
369 |
msgid "Settings"
|
370 |
msgstr "Configurações"
|
371 |
|
372 |
# @ gallery
|
373 |
+
#: gallery-plugin.php:813
|
374 |
+
#: gallery-plugin.php:839
|
375 |
msgid "Installed plugins"
|
376 |
msgstr "Plugins instalados"
|
377 |
|
378 |
# @ gallery
|
379 |
+
#: gallery-plugin.php:821
|
380 |
+
#: gallery-plugin.php:847
|
381 |
msgid "Recommended plugins"
|
382 |
msgstr "Plugins recomendados"
|
383 |
|
384 |
+
#: gallery-plugin.php:823
|
385 |
msgid "Purchase"
|
386 |
msgstr ""
|
387 |
|
388 |
# @ gallery
|
389 |
+
#: gallery-plugin.php:828
|
390 |
#, fuzzy
|
391 |
msgid "Free plugins"
|
392 |
msgstr "Plugins recomendados"
|
393 |
|
394 |
# @ gallery
|
395 |
+
#: gallery-plugin.php:849
|
396 |
msgid "Download"
|
397 |
msgstr "Download"
|
398 |
|
399 |
# @ default
|
400 |
+
#: gallery-plugin.php:849
|
401 |
#, php-format
|
402 |
msgid "Install %s"
|
403 |
msgstr "Instalar %s"
|
404 |
|
405 |
# @ gallery
|
406 |
+
#: gallery-plugin.php:849
|
407 |
msgid "Install now from wordpress.org"
|
408 |
msgstr "Instale agora via wordpres.org"
|
409 |
|
410 |
# @ gallery
|
411 |
+
#: gallery-plugin.php:854
|
412 |
#, fuzzy
|
413 |
msgid "If you have any questions, please contact us via"
|
414 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
415 |
|
416 |
+
#: gallery-plugin.php:861
|
417 |
+
msgid "System status"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: gallery-plugin.php:865
|
421 |
+
msgid "Environment"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
# @ gallery
|
425 |
+
#: gallery-plugin.php:876
|
426 |
+
#, fuzzy
|
427 |
+
msgid "Active Plugins"
|
428 |
+
msgstr "Plugins ativados"
|
429 |
+
|
430 |
+
# @ gallery
|
431 |
+
#: gallery-plugin.php:887
|
432 |
+
#, fuzzy
|
433 |
+
msgid "Inactive Plugins"
|
434 |
+
msgstr "Plugins ativados"
|
435 |
+
|
436 |
+
# @ gallery
|
437 |
+
#: gallery-plugin.php:901
|
438 |
+
#, fuzzy
|
439 |
+
msgid "Send to support"
|
440 |
+
msgstr "Suporte"
|
441 |
+
|
442 |
+
#: gallery-plugin.php:908
|
443 |
+
msgid "Send to custom email »"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
# @ gallery
|
447 |
+
#: gallery-plugin.php:950
|
448 |
#, fuzzy
|
449 |
msgid "See images »"
|
450 |
msgstr "Ver foto »"
|
451 |
|
452 |
# @ gallery
|
453 |
+
#: gallery-plugin.php:1049
|
454 |
#, fuzzy
|
455 |
msgid "Settings are saved"
|
456 |
msgstr "Opções salvas."
|
457 |
|
458 |
# @ gallery
|
459 |
+
#: gallery-plugin.php:1063
|
460 |
#, fuzzy
|
461 |
msgid "Gallery Settings"
|
462 |
msgstr "Opções da Galeria"
|
463 |
|
464 |
# @ gallery
|
465 |
+
#: gallery-plugin.php:1066
|
466 |
#, fuzzy
|
467 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
468 |
msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
|
469 |
|
470 |
# @ gallery
|
471 |
+
#: gallery-plugin.php:1070
|
472 |
#, fuzzy
|
473 |
msgid "Image size for the album cover"
|
474 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
475 |
|
476 |
# @ gallery
|
477 |
+
#: gallery-plugin.php:1072
|
478 |
+
#: gallery-plugin.php:1080
|
479 |
+
#: gallery-plugin.php:1093
|
480 |
#, fuzzy
|
481 |
msgid "Image size"
|
482 |
msgstr "Nome do tamanho"
|
483 |
|
484 |
# @ gallery
|
485 |
+
#: gallery-plugin.php:1073
|
486 |
+
#: gallery-plugin.php:1081
|
487 |
msgid "Width (in px)"
|
488 |
msgstr "Largura (em px)"
|
489 |
|
490 |
# @ gallery
|
491 |
+
#: gallery-plugin.php:1074
|
492 |
+
#: gallery-plugin.php:1082
|
493 |
msgid "Height (in px)"
|
494 |
msgstr "Altura (em px)"
|
495 |
|
496 |
# @ gallery
|
497 |
+
#: gallery-plugin.php:1078
|
498 |
#, fuzzy
|
499 |
msgid "Gallery image size"
|
500 |
msgstr "Galerias"
|
501 |
|
502 |
# @ gallery
|
503 |
+
#: gallery-plugin.php:1086
|
504 |
#, fuzzy
|
505 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
506 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
507 |
|
508 |
+
#: gallery-plugin.php:1091
|
509 |
msgid "Gallery image size in the lightbox"
|
510 |
msgstr ""
|
511 |
|
512 |
# @ gallery
|
513 |
+
#: gallery-plugin.php:1094
|
514 |
#, fuzzy
|
515 |
msgid "Max width (in px)"
|
516 |
msgstr "Largura (em px)"
|
517 |
|
518 |
# @ gallery
|
519 |
+
#: gallery-plugin.php:1095
|
520 |
#, fuzzy
|
521 |
msgid "Max height (in px)"
|
522 |
msgstr "Altura (em px)"
|
523 |
|
524 |
+
#: gallery-plugin.php:1096
|
525 |
msgid "Display a full size image in the lightbox"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: gallery-plugin.php:1100
|
529 |
msgid "Crop position"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: gallery-plugin.php:1102
|
533 |
msgid "Horizontal"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: gallery-plugin.php:1104
|
537 |
msgid "left"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: gallery-plugin.php:1105
|
541 |
+
#: gallery-plugin.php:1112
|
542 |
msgid "center"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: gallery-plugin.php:1106
|
546 |
msgid "right"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: gallery-plugin.php:1109
|
550 |
msgid "Vertical"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1111
|
554 |
msgid "top"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1113
|
558 |
msgid "bottom"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1118
|
562 |
msgid "Lightbox background"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: gallery-plugin.php:1120
|
566 |
msgid "Default"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: gallery-plugin.php:1121
|
570 |
msgid "Background transparency (from 0 to 1)"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: gallery-plugin.php:1123
|
574 |
msgid "Select a background color"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: gallery-plugin.php:1125
|
578 |
msgid "Background color"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: gallery-plugin.php:1132
|
582 |
+
#: gallery-plugin.php:1237
|
583 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: gallery-plugin.php:1139
|
587 |
msgid "Images with border"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: gallery-plugin.php:1142
|
591 |
msgid "Border width in px, just numbers"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: gallery-plugin.php:1144
|
595 |
+
#: gallery-plugin.php:1146
|
596 |
msgid "Select a border color"
|
597 |
msgstr ""
|
598 |
|
599 |
# @ gallery
|
600 |
+
#: gallery-plugin.php:1152
|
601 |
#, fuzzy
|
602 |
msgid "Number of images in the row"
|
603 |
msgstr "Quantidade de imagens por linha"
|
604 |
|
605 |
# @ gallery
|
606 |
+
#: gallery-plugin.php:1158
|
607 |
msgid "Start slideshow"
|
608 |
msgstr "Iniciar Apresentação de Slides"
|
609 |
|
610 |
# @ gallery
|
611 |
+
#: gallery-plugin.php:1164
|
612 |
msgid "Slideshow interval"
|
613 |
msgstr "Intervalo de tempo entre cada Slide"
|
614 |
|
615 |
# @ gallery
|
616 |
+
#: gallery-plugin.php:1172
|
617 |
#, fuzzy
|
618 |
msgid "Attachment ID"
|
619 |
msgstr "id do anexo"
|
620 |
|
621 |
# @ gallery
|
622 |
+
#: gallery-plugin.php:1173
|
623 |
#, fuzzy
|
624 |
msgid "Image Name"
|
625 |
msgstr "Imagem "
|
626 |
|
627 |
# @ gallery
|
628 |
+
#: gallery-plugin.php:1175
|
629 |
#, fuzzy
|
630 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
631 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
632 |
|
633 |
# @ gallery
|
634 |
+
#: gallery-plugin.php:1176
|
635 |
#, fuzzy
|
636 |
msgid "Random"
|
637 |
msgstr "aleatório"
|
638 |
|
639 |
# @ gallery
|
640 |
+
#: gallery-plugin.php:1180
|
641 |
#, fuzzy
|
642 |
msgid "Sort images"
|
643 |
msgstr "Quantidade de imagens por linha"
|
644 |
|
645 |
# @ gallery
|
646 |
+
#: gallery-plugin.php:1182
|
647 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
648 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
649 |
|
650 |
# @ gallery
|
651 |
+
#: gallery-plugin.php:1183
|
652 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
653 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
654 |
|
655 |
+
#: gallery-plugin.php:1187
|
656 |
msgid "Display text above the image"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: gallery-plugin.php:1189
|
660 |
msgid "If you want to display text just in a lightbox"
|
661 |
msgstr ""
|
662 |
|
663 |
# @ gallery
|
664 |
+
#: gallery-plugin.php:1193
|
665 |
#, fuzzy
|
666 |
msgid "Display the Back link"
|
667 |
msgstr "Mostrar link de Retorno"
|
668 |
|
669 |
# @ gallery
|
670 |
+
#: gallery-plugin.php:1199
|
671 |
#, fuzzy
|
672 |
msgid "Display the Back link in the shortcode"
|
673 |
msgstr "Mostrar link de Retorno no shortcode"
|
674 |
|
675 |
+
#: gallery-plugin.php:1205
|
676 |
msgid "The Back link text"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: gallery-plugin.php:1211
|
680 |
msgid "The Back link URL"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: gallery-plugin.php:1213
|
684 |
msgid "Gallery page (Page with Gallery Template)"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: gallery-plugin.php:1215
|
688 |
msgid "(Full URL to custom page)"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: gallery-plugin.php:1219
|
692 |
msgid "The Read More link text"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: gallery-plugin.php:1227
|
696 |
msgid "Display Like buttons in the lightbox"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: gallery-plugin.php:1229
|
700 |
msgid "FaceBook"
|
701 |
msgstr ""
|
702 |
|
703 |
# @ gallery
|
704 |
+
#: gallery-plugin.php:1230
|
705 |
#, fuzzy
|
706 |
msgid "Twitter"
|
707 |
msgstr "Título"
|
708 |
|
709 |
+
#: gallery-plugin.php:1231
|
710 |
msgid "Pinterest"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: gallery-plugin.php:1232
|
714 |
msgid "Google +1"
|
715 |
msgstr ""
|
716 |
|
717 |
# @ default
|
718 |
+
#: gallery-plugin.php:1245
|
719 |
msgid "Save Changes"
|
720 |
msgstr "Salvar Alterações"
|
721 |
|
722 |
# @ gallery
|
723 |
+
#: gallery-plugin.php:1258
|
724 |
msgid "FAQ"
|
725 |
msgstr "FAQ"
|
726 |
|
727 |
# @ gallery
|
728 |
+
#: gallery-plugin.php:1259
|
729 |
msgid "Support"
|
730 |
msgstr "Suporte"
|
731 |
|
732 |
# @ gallery
|
733 |
+
#: gallery-plugin.php:1476
|
734 |
#: template/gallery-single-template.php:76
|
735 |
#, fuzzy
|
736 |
msgid "Sorry, nothing found."
|
737 |
msgstr "Desculpe - nada foi encontrado."
|
738 |
|
739 |
+
#: gallery-plugin.php:1498
|
740 |
#: template/gallery-single-template.php:101
|
741 |
msgid "Download high resolution image"
|
742 |
msgstr ""
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@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:103
|
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 "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Галереи"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
@@ -92,7 +92,7 @@ msgid "Please make a choice"
|
|
92 |
msgstr "Пожалуйста, выберите"
|
93 |
|
94 |
#: gallery-plugin.php:228
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Sort images by"
|
97 |
msgstr "Изображения сортируются по"
|
98 |
|
@@ -157,315 +157,480 @@ msgid "Publishing"
|
|
157 |
msgstr "Опубликование"
|
158 |
|
159 |
#: gallery-plugin.php:483
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Date"
|
162 |
msgstr "Дата"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
#: gallery-plugin.php:666
|
|
|
|
|
|
|
|
|
175 |
#: gallery-plugin.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
#: gallery-plugin.php:684
|
|
|
|
|
|
|
|
|
177 |
#: gallery-plugin.php:692
|
178 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Read more"
|
180 |
msgstr "Подробнее..."
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Settings"
|
187 |
msgstr "Настройки"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Installed plugins"
|
192 |
msgstr "Установленные плагины"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Recommended plugins"
|
197 |
msgstr "Рекомендованные к установке плагины"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Purchase"
|
201 |
msgstr "Купить"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "Free plugins"
|
205 |
msgstr "Бесплатные плагины"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Download"
|
209 |
msgstr "Скачать"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
#, php-format
|
213 |
msgid "Install %s"
|
214 |
msgstr "Установлено %s"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Install now from wordpress.org"
|
218 |
msgstr "Установить с wordpress.org"
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "If you have any questions, please contact us via"
|
222 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "See images »"
|
226 |
msgstr "Смотреть фотографии »"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Settings are saved"
|
230 |
msgstr "Опции сохранены"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Gallery Settings"
|
234 |
msgstr "Настройки Галереи"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
238 |
msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Image size for the album cover"
|
242 |
msgstr "Размер изображения для обложки альбома галереи"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
-
#: gallery-plugin.php:
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Image size"
|
248 |
msgstr "Название размера изображения"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Width (in px)"
|
253 |
msgstr "Ширина (в px)"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Height (in px)"
|
258 |
msgstr "Высота (в px)"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Gallery image size"
|
262 |
msgstr "Размер изображений Галереи"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
266 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Gallery image size in the lightbox"
|
270 |
msgstr "Размер изображений Галереи в лайтбоксе"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Max width (in px)"
|
274 |
msgstr "Макс. ширина (в px)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "Max height (in px)"
|
278 |
msgstr "Макс. высота (в px)"
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Display a full size image in the lightbox"
|
282 |
msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Crop position"
|
286 |
msgstr "Позиция обрезки"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Horizontal"
|
290 |
msgstr "Горизонтальная"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "left"
|
294 |
msgstr "лево"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "center"
|
299 |
msgstr "центр"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "right"
|
303 |
msgstr "право"
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Vertical"
|
307 |
msgstr "Вертикальная"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "top"
|
311 |
msgstr "верх"
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "bottom"
|
315 |
msgstr "низ"
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "Lightbox background"
|
319 |
msgstr "Фон лайтбокса"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Default"
|
323 |
msgstr "По-умолчанию"
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Background transparency (from 0 to 1)"
|
327 |
msgstr "Прозрачность для фона (от 0 до 1)"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "Select a background color"
|
331 |
msgstr "Выберите цвет фона"
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "Background color"
|
335 |
msgstr "Цвет фона"
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
340 |
msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Images with border"
|
344 |
msgstr "Изображения с рамкой"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Border width in px, just numbers"
|
348 |
msgstr "Ширина рамки в px, только числа"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Select a border color"
|
353 |
msgstr "Выберите цвет рамки"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
msgid "Number of images in the row"
|
357 |
msgstr "Количество изображений в строке"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "Start slideshow"
|
361 |
msgstr "Начать слайдшоу"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Slideshow interval"
|
365 |
msgstr "Интервал времени при показе слайдшоу"
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Attachment ID"
|
369 |
msgstr "id изображения"
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Image Name"
|
373 |
msgstr "названию изображения"
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
377 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
378 |
|
379 |
-
#: gallery-plugin.php:
|
380 |
msgid "Random"
|
381 |
msgstr "произвольно"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "Sort images"
|
385 |
msgstr "Сортировать изображения"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
389 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
393 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
msgid "Display text above the image"
|
397 |
msgstr "Отображение текста над изображением"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
msgid "If you want to display text just in a lightbox"
|
401 |
msgstr "Если вы хотите отображать текст только в лайтбоксе"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "Display the Back link"
|
405 |
msgstr "Отображать ссылку Вернуться"
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "Display the Back link in the shortcode"
|
409 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "The Back link text"
|
413 |
msgstr "Текст для ссылки Вернуться"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "The Back link URL"
|
417 |
msgstr "URL для ссылки Вернуться"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Gallery page (Page with Gallery Template)"
|
421 |
msgstr "Страница галереи (Страница с Gallery Template)"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "(Full URL to custom page)"
|
425 |
msgstr "(Полная ссылка на пользовательскую страницу)"
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "The Read More link text"
|
429 |
msgstr "Текст для ссылки Вернуться"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display Like buttons in the lightbox"
|
433 |
msgstr "Отображать Like кнопки в лайтбоксе"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "FaceBook"
|
437 |
msgstr "FaceBook"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "Twitter"
|
441 |
msgstr "Twitter"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Pinterest"
|
445 |
msgstr "Pinterest"
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "Google +1"
|
449 |
msgstr "Google +1"
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Save Changes"
|
453 |
msgstr "Сохранить изменения"
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "FAQ"
|
457 |
msgstr "FAQ"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "Support"
|
461 |
msgstr "Поддержка"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#: template/gallery-single-template.php:76
|
465 |
msgid "Sorry, nothing found."
|
466 |
msgstr "Извините, ничего не найдено."
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
#: template/gallery-single-template.php:101
|
470 |
msgid "Download high resolution image"
|
471 |
msgstr "Скачать изображение в высоком разрешении"
|
@@ -494,8 +659,6 @@ msgstr "Изображение"
|
|
494 |
#~ msgstr "Изображения сортируются по"
|
495 |
#~ msgid "attachments order"
|
496 |
#~ msgstr "Сортировать изображения"
|
497 |
-
#~ msgid "Link URL"
|
498 |
-
#~ msgstr "Ссылка урл"
|
499 |
#~ msgid "The size of the cover album for gallery"
|
500 |
#~ msgstr "Размер изображения для обложки альбома галереи"
|
501 |
#~ msgid "Size for gallery image"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:38+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:38+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
23 |
|
27 |
msgstr "Галереи"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
92 |
msgstr "Пожалуйста, выберите"
|
93 |
|
94 |
#: gallery-plugin.php:228
|
95 |
+
#: gallery-plugin.php:1170
|
96 |
msgid "Sort images by"
|
97 |
msgstr "Изображения сортируются по"
|
98 |
|
157 |
msgstr "Опубликование"
|
158 |
|
159 |
#: gallery-plugin.php:483
|
160 |
+
#: gallery-plugin.php:1174
|
161 |
msgid "Date"
|
162 |
msgstr "Дата"
|
163 |
|
164 |
+
#: gallery-plugin.php:658
|
165 |
+
msgid "Not set"
|
166 |
+
msgstr "Не задан"
|
167 |
|
168 |
+
#: gallery-plugin.php:660
|
169 |
+
#: gallery-plugin.php:664
|
170 |
+
msgid "On"
|
171 |
+
msgstr "Вкл"
|
172 |
|
173 |
+
#: gallery-plugin.php:662
|
174 |
#: gallery-plugin.php:666
|
175 |
+
msgid "Off"
|
176 |
+
msgstr "Выкл"
|
177 |
+
|
178 |
+
#: gallery-plugin.php:670
|
179 |
#: gallery-plugin.php:674
|
180 |
+
#: gallery-plugin.php:678
|
181 |
+
#: gallery-plugin.php:682
|
182 |
+
#: gallery-plugin.php:686
|
183 |
+
#: gallery-plugin.php:712
|
184 |
+
msgid "N/A"
|
185 |
+
msgstr "Неизвестно"
|
186 |
+
|
187 |
#: gallery-plugin.php:684
|
188 |
+
msgid " Mb"
|
189 |
+
msgstr " Mb"
|
190 |
+
|
191 |
+
#: gallery-plugin.php:688
|
192 |
#: gallery-plugin.php:692
|
193 |
+
#: gallery-plugin.php:696
|
194 |
+
#: gallery-plugin.php:707
|
195 |
+
msgid "Yes"
|
196 |
+
msgstr "Да"
|
197 |
+
|
198 |
+
#: gallery-plugin.php:690
|
199 |
+
#: gallery-plugin.php:694
|
200 |
+
#: gallery-plugin.php:698
|
201 |
+
#: gallery-plugin.php:709
|
202 |
+
msgid "No"
|
203 |
+
msgstr "Нет"
|
204 |
+
|
205 |
+
#: gallery-plugin.php:723
|
206 |
+
msgid "Operating System"
|
207 |
+
msgstr "Операционная система"
|
208 |
+
|
209 |
+
#: gallery-plugin.php:724
|
210 |
+
msgid "Server"
|
211 |
+
msgstr "Тип сервера"
|
212 |
+
|
213 |
+
#: gallery-plugin.php:725
|
214 |
+
msgid "Memory usage"
|
215 |
+
msgstr "Памяти использовано"
|
216 |
+
|
217 |
+
#: gallery-plugin.php:726
|
218 |
+
msgid "MYSQL Version"
|
219 |
+
msgstr "Версия MYSQL"
|
220 |
+
|
221 |
+
#: gallery-plugin.php:727
|
222 |
+
msgid "SQL Mode"
|
223 |
+
msgstr "Режим SQL"
|
224 |
+
|
225 |
+
#: gallery-plugin.php:728
|
226 |
+
msgid "PHP Version"
|
227 |
+
msgstr "Версия PHP"
|
228 |
+
|
229 |
+
#: gallery-plugin.php:729
|
230 |
+
msgid "PHP Safe Mode"
|
231 |
+
msgstr "PHP Safe Mode"
|
232 |
+
|
233 |
+
#: gallery-plugin.php:730
|
234 |
+
msgid "PHP Allow URL fopen"
|
235 |
+
msgstr "PHP Allow URL fopen"
|
236 |
+
|
237 |
+
#: gallery-plugin.php:731
|
238 |
+
msgid "PHP Memory Limit"
|
239 |
+
msgstr "Лимит памяти"
|
240 |
+
|
241 |
+
#: gallery-plugin.php:732
|
242 |
+
msgid "PHP Max Upload Size"
|
243 |
+
msgstr "Макс. размер загружаемого файла"
|
244 |
+
|
245 |
+
#: gallery-plugin.php:733
|
246 |
+
msgid "PHP Max Post Size"
|
247 |
+
msgstr "Макс. размер записи"
|
248 |
+
|
249 |
+
#: gallery-plugin.php:734
|
250 |
+
msgid "PHP Max Script Execute Time"
|
251 |
+
msgstr "Максимальное время выполнения сценария"
|
252 |
+
|
253 |
+
#: gallery-plugin.php:735
|
254 |
+
msgid "PHP Exif support"
|
255 |
+
msgstr "Поддержка PHP Exif"
|
256 |
+
|
257 |
+
#: gallery-plugin.php:736
|
258 |
+
msgid "PHP IPTC support"
|
259 |
+
msgstr "Поддержка PHP IPTC"
|
260 |
+
|
261 |
+
#: gallery-plugin.php:737
|
262 |
+
msgid "PHP XML support"
|
263 |
+
msgstr "Поддержка PHP XML"
|
264 |
+
|
265 |
+
#: gallery-plugin.php:738
|
266 |
+
msgid "Site URL"
|
267 |
+
msgstr "Адрес сайта"
|
268 |
+
|
269 |
+
#: gallery-plugin.php:739
|
270 |
+
msgid "Home URL"
|
271 |
+
msgstr "Основной адрес сайта"
|
272 |
+
|
273 |
+
#: gallery-plugin.php:740
|
274 |
+
msgid "WordPress Version"
|
275 |
+
msgstr "Версия WordPress"
|
276 |
+
|
277 |
+
#: gallery-plugin.php:741
|
278 |
+
msgid "WordPress DB Version"
|
279 |
+
msgstr "Версия базы данных WordPress"
|
280 |
+
|
281 |
+
#: gallery-plugin.php:742
|
282 |
+
msgid "Multisite"
|
283 |
+
msgstr "Мультиблог"
|
284 |
+
|
285 |
+
#: gallery-plugin.php:743
|
286 |
+
msgid "Active Theme"
|
287 |
+
msgstr "Текущая тема"
|
288 |
+
|
289 |
+
#: gallery-plugin.php:758
|
290 |
+
msgid "Please enter a valid email address."
|
291 |
+
msgstr "Пожалуйста, введите валидный емайл."
|
292 |
+
|
293 |
+
#: gallery-plugin.php:762
|
294 |
+
msgid "Email with system info is sent to "
|
295 |
+
msgstr "E-mail с системной информацией отправлен на"
|
296 |
+
|
297 |
+
#: gallery-plugin.php:766
|
298 |
+
msgid "Thank you for contacting us."
|
299 |
+
msgstr "Спасибо, что связались с нами."
|
300 |
+
|
301 |
+
#: gallery-plugin.php:794
|
302 |
+
msgid "Sorry, email message could not be delivered."
|
303 |
+
msgstr "Извините, ваш email не может быть отправлен."
|
304 |
+
|
305 |
+
#: gallery-plugin.php:802
|
306 |
+
msgid "Pro plugins"
|
307 |
+
msgstr "Pro плагины"
|
308 |
+
|
309 |
+
#: gallery-plugin.php:805
|
310 |
+
#: gallery-plugin.php:831
|
311 |
+
msgid "Activated plugins"
|
312 |
+
msgstr "Активированные плагины"
|
313 |
+
|
314 |
+
#: gallery-plugin.php:807
|
315 |
+
#: gallery-plugin.php:815
|
316 |
+
#: gallery-plugin.php:823
|
317 |
+
#: gallery-plugin.php:833
|
318 |
+
#: gallery-plugin.php:841
|
319 |
+
#: gallery-plugin.php:849
|
320 |
msgid "Read more"
|
321 |
msgstr "Подробнее..."
|
322 |
|
323 |
+
#: gallery-plugin.php:807
|
324 |
+
#: gallery-plugin.php:833
|
325 |
+
#: gallery-plugin.php:1257
|
326 |
+
#: gallery-plugin.php:1272
|
327 |
msgid "Settings"
|
328 |
msgstr "Настройки"
|
329 |
|
330 |
+
#: gallery-plugin.php:813
|
331 |
+
#: gallery-plugin.php:839
|
332 |
msgid "Installed plugins"
|
333 |
msgstr "Установленные плагины"
|
334 |
|
335 |
+
#: gallery-plugin.php:821
|
336 |
+
#: gallery-plugin.php:847
|
337 |
msgid "Recommended plugins"
|
338 |
msgstr "Рекомендованные к установке плагины"
|
339 |
|
340 |
+
#: gallery-plugin.php:823
|
341 |
msgid "Purchase"
|
342 |
msgstr "Купить"
|
343 |
|
344 |
+
#: gallery-plugin.php:828
|
345 |
msgid "Free plugins"
|
346 |
msgstr "Бесплатные плагины"
|
347 |
|
348 |
+
#: gallery-plugin.php:849
|
349 |
msgid "Download"
|
350 |
msgstr "Скачать"
|
351 |
|
352 |
+
#: gallery-plugin.php:849
|
353 |
#, php-format
|
354 |
msgid "Install %s"
|
355 |
msgstr "Установлено %s"
|
356 |
|
357 |
+
#: gallery-plugin.php:849
|
358 |
msgid "Install now from wordpress.org"
|
359 |
msgstr "Установить с wordpress.org"
|
360 |
|
361 |
+
#: gallery-plugin.php:854
|
362 |
msgid "If you have any questions, please contact us via"
|
363 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
|
364 |
|
365 |
+
#: gallery-plugin.php:861
|
366 |
+
msgid "System status"
|
367 |
+
msgstr "Системная информация"
|
368 |
+
|
369 |
+
#: gallery-plugin.php:865
|
370 |
+
msgid "Environment"
|
371 |
+
msgstr "Системная среда"
|
372 |
+
|
373 |
+
#: gallery-plugin.php:876
|
374 |
+
msgid "Active Plugins"
|
375 |
+
msgstr "Активированные плагины"
|
376 |
+
|
377 |
+
#: gallery-plugin.php:887
|
378 |
+
msgid "Inactive Plugins"
|
379 |
+
msgstr "Неактивированные плагины"
|
380 |
+
|
381 |
+
#: gallery-plugin.php:901
|
382 |
+
msgid "Send to support"
|
383 |
+
msgstr "Отправить в тех.поддержку"
|
384 |
+
|
385 |
+
#: gallery-plugin.php:908
|
386 |
+
msgid "Send to custom email »"
|
387 |
+
msgstr "Отправить на емейл »"
|
388 |
+
|
389 |
+
#: gallery-plugin.php:950
|
390 |
msgid "See images »"
|
391 |
msgstr "Смотреть фотографии »"
|
392 |
|
393 |
+
#: gallery-plugin.php:1049
|
394 |
msgid "Settings are saved"
|
395 |
msgstr "Опции сохранены"
|
396 |
|
397 |
+
#: gallery-plugin.php:1063
|
398 |
msgid "Gallery Settings"
|
399 |
msgstr "Настройки Галереи"
|
400 |
|
401 |
+
#: gallery-plugin.php:1066
|
402 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
403 |
msgstr "Если вы хотели бы добавить Галерею на вашу страницу или пост, просто скопируйте и поместите этот шорткод в контент поста или страницы:"
|
404 |
|
405 |
+
#: gallery-plugin.php:1070
|
406 |
msgid "Image size for the album cover"
|
407 |
msgstr "Размер изображения для обложки альбома галереи"
|
408 |
|
409 |
+
#: gallery-plugin.php:1072
|
410 |
+
#: gallery-plugin.php:1080
|
411 |
+
#: gallery-plugin.php:1093
|
412 |
msgid "Image size"
|
413 |
msgstr "Название размера изображения"
|
414 |
|
415 |
+
#: gallery-plugin.php:1073
|
416 |
+
#: gallery-plugin.php:1081
|
417 |
msgid "Width (in px)"
|
418 |
msgstr "Ширина (в px)"
|
419 |
|
420 |
+
#: gallery-plugin.php:1074
|
421 |
+
#: gallery-plugin.php:1082
|
422 |
msgid "Height (in px)"
|
423 |
msgstr "Высота (в px)"
|
424 |
|
425 |
+
#: gallery-plugin.php:1078
|
426 |
msgid "Gallery image size"
|
427 |
msgstr "Размер изображений Галереи"
|
428 |
|
429 |
+
#: gallery-plugin.php:1086
|
430 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
431 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
432 |
|
433 |
+
#: gallery-plugin.php:1091
|
434 |
msgid "Gallery image size in the lightbox"
|
435 |
msgstr "Размер изображений Галереи в лайтбоксе"
|
436 |
|
437 |
+
#: gallery-plugin.php:1094
|
438 |
msgid "Max width (in px)"
|
439 |
msgstr "Макс. ширина (в px)"
|
440 |
|
441 |
+
#: gallery-plugin.php:1095
|
442 |
msgid "Max height (in px)"
|
443 |
msgstr "Макс. высота (в px)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1096
|
446 |
msgid "Display a full size image in the lightbox"
|
447 |
msgstr "Если вы хотите отображать полное изображение в лайтбоксе"
|
448 |
|
449 |
+
#: gallery-plugin.php:1100
|
450 |
msgid "Crop position"
|
451 |
msgstr "Позиция обрезки"
|
452 |
|
453 |
+
#: gallery-plugin.php:1102
|
454 |
msgid "Horizontal"
|
455 |
msgstr "Горизонтальная"
|
456 |
|
457 |
+
#: gallery-plugin.php:1104
|
458 |
msgid "left"
|
459 |
msgstr "лево"
|
460 |
|
461 |
+
#: gallery-plugin.php:1105
|
462 |
+
#: gallery-plugin.php:1112
|
463 |
msgid "center"
|
464 |
msgstr "центр"
|
465 |
|
466 |
+
#: gallery-plugin.php:1106
|
467 |
msgid "right"
|
468 |
msgstr "право"
|
469 |
|
470 |
+
#: gallery-plugin.php:1109
|
471 |
msgid "Vertical"
|
472 |
msgstr "Вертикальная"
|
473 |
|
474 |
+
#: gallery-plugin.php:1111
|
475 |
msgid "top"
|
476 |
msgstr "верх"
|
477 |
|
478 |
+
#: gallery-plugin.php:1113
|
479 |
msgid "bottom"
|
480 |
msgstr "низ"
|
481 |
|
482 |
+
#: gallery-plugin.php:1118
|
483 |
msgid "Lightbox background"
|
484 |
msgstr "Фон лайтбокса"
|
485 |
|
486 |
+
#: gallery-plugin.php:1120
|
487 |
msgid "Default"
|
488 |
msgstr "По-умолчанию"
|
489 |
|
490 |
+
#: gallery-plugin.php:1121
|
491 |
msgid "Background transparency (from 0 to 1)"
|
492 |
msgstr "Прозрачность для фона (от 0 до 1)"
|
493 |
|
494 |
+
#: gallery-plugin.php:1123
|
495 |
msgid "Select a background color"
|
496 |
msgstr "Выберите цвет фона"
|
497 |
|
498 |
+
#: gallery-plugin.php:1125
|
499 |
msgid "Background color"
|
500 |
msgstr "Цвет фона"
|
501 |
|
502 |
+
#: gallery-plugin.php:1132
|
503 |
+
#: gallery-plugin.php:1237
|
504 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
505 |
msgstr "Этот функционал доступен в Pro версии плагина. Для детального ознакомления, перейдите по ссылке"
|
506 |
|
507 |
+
#: gallery-plugin.php:1139
|
508 |
msgid "Images with border"
|
509 |
msgstr "Изображения с рамкой"
|
510 |
|
511 |
+
#: gallery-plugin.php:1142
|
512 |
msgid "Border width in px, just numbers"
|
513 |
msgstr "Ширина рамки в px, только числа"
|
514 |
|
515 |
+
#: gallery-plugin.php:1144
|
516 |
+
#: gallery-plugin.php:1146
|
517 |
msgid "Select a border color"
|
518 |
msgstr "Выберите цвет рамки"
|
519 |
|
520 |
+
#: gallery-plugin.php:1152
|
521 |
msgid "Number of images in the row"
|
522 |
msgstr "Количество изображений в строке"
|
523 |
|
524 |
+
#: gallery-plugin.php:1158
|
525 |
msgid "Start slideshow"
|
526 |
msgstr "Начать слайдшоу"
|
527 |
|
528 |
+
#: gallery-plugin.php:1164
|
529 |
msgid "Slideshow interval"
|
530 |
msgstr "Интервал времени при показе слайдшоу"
|
531 |
|
532 |
+
#: gallery-plugin.php:1172
|
533 |
msgid "Attachment ID"
|
534 |
msgstr "id изображения"
|
535 |
|
536 |
+
#: gallery-plugin.php:1173
|
537 |
msgid "Image Name"
|
538 |
msgstr "названию изображения"
|
539 |
|
540 |
+
#: gallery-plugin.php:1175
|
541 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
542 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
543 |
|
544 |
+
#: gallery-plugin.php:1176
|
545 |
msgid "Random"
|
546 |
msgstr "произвольно"
|
547 |
|
548 |
+
#: gallery-plugin.php:1180
|
549 |
msgid "Sort images"
|
550 |
msgstr "Сортировать изображения"
|
551 |
|
552 |
+
#: gallery-plugin.php:1182
|
553 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
554 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
555 |
|
556 |
+
#: gallery-plugin.php:1183
|
557 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
558 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
559 |
|
560 |
+
#: gallery-plugin.php:1187
|
561 |
msgid "Display text above the image"
|
562 |
msgstr "Отображение текста над изображением"
|
563 |
|
564 |
+
#: gallery-plugin.php:1189
|
565 |
msgid "If you want to display text just in a lightbox"
|
566 |
msgstr "Если вы хотите отображать текст только в лайтбоксе"
|
567 |
|
568 |
+
#: gallery-plugin.php:1193
|
569 |
msgid "Display the Back link"
|
570 |
msgstr "Отображать ссылку Вернуться"
|
571 |
|
572 |
+
#: gallery-plugin.php:1199
|
573 |
msgid "Display the Back link in the shortcode"
|
574 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
575 |
|
576 |
+
#: gallery-plugin.php:1205
|
577 |
msgid "The Back link text"
|
578 |
msgstr "Текст для ссылки Вернуться"
|
579 |
|
580 |
+
#: gallery-plugin.php:1211
|
581 |
msgid "The Back link URL"
|
582 |
msgstr "URL для ссылки Вернуться"
|
583 |
|
584 |
+
#: gallery-plugin.php:1213
|
585 |
msgid "Gallery page (Page with Gallery Template)"
|
586 |
msgstr "Страница галереи (Страница с Gallery Template)"
|
587 |
|
588 |
+
#: gallery-plugin.php:1215
|
589 |
msgid "(Full URL to custom page)"
|
590 |
msgstr "(Полная ссылка на пользовательскую страницу)"
|
591 |
|
592 |
+
#: gallery-plugin.php:1219
|
593 |
msgid "The Read More link text"
|
594 |
msgstr "Текст для ссылки Вернуться"
|
595 |
|
596 |
+
#: gallery-plugin.php:1227
|
597 |
msgid "Display Like buttons in the lightbox"
|
598 |
msgstr "Отображать Like кнопки в лайтбоксе"
|
599 |
|
600 |
+
#: gallery-plugin.php:1229
|
601 |
msgid "FaceBook"
|
602 |
msgstr "FaceBook"
|
603 |
|
604 |
+
#: gallery-plugin.php:1230
|
605 |
msgid "Twitter"
|
606 |
msgstr "Twitter"
|
607 |
|
608 |
+
#: gallery-plugin.php:1231
|
609 |
msgid "Pinterest"
|
610 |
msgstr "Pinterest"
|
611 |
|
612 |
+
#: gallery-plugin.php:1232
|
613 |
msgid "Google +1"
|
614 |
msgstr "Google +1"
|
615 |
|
616 |
+
#: gallery-plugin.php:1245
|
617 |
msgid "Save Changes"
|
618 |
msgstr "Сохранить изменения"
|
619 |
|
620 |
+
#: gallery-plugin.php:1258
|
621 |
msgid "FAQ"
|
622 |
msgstr "FAQ"
|
623 |
|
624 |
+
#: gallery-plugin.php:1259
|
625 |
msgid "Support"
|
626 |
msgstr "Поддержка"
|
627 |
|
628 |
+
#: gallery-plugin.php:1476
|
629 |
#: template/gallery-single-template.php:76
|
630 |
msgid "Sorry, nothing found."
|
631 |
msgstr "Извините, ничего не найдено."
|
632 |
|
633 |
+
#: gallery-plugin.php:1498
|
634 |
#: template/gallery-single-template.php:101
|
635 |
msgid "Download high resolution image"
|
636 |
msgstr "Скачать изображение в высоком разрешении"
|
659 |
#~ msgstr "Изображения сортируются по"
|
660 |
#~ msgid "attachments order"
|
661 |
#~ msgstr "Сортировать изображения"
|
|
|
|
|
662 |
#~ msgid "The size of the cover album for gallery"
|
663 |
#~ msgstr "Размер изображения для обложки альбома галереи"
|
664 |
#~ msgid "Size for gallery image"
|
languages/gallery-sr_RS.mo
CHANGED
Binary file
|
languages/gallery-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Radovan Georgijevic <http://www.georgijevic.info>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
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 "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" Nisu pronađeni u direktorijumu teme. Prekopirajte ih iz direktorijuma `/ wp-content/plugins/gallery-plugin/template /` u direktorijum vaše temekako bi dodatak Galerija ispravno funkcionisao"
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "Galerije"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerija"
|
33 |
|
@@ -99,7 +99,7 @@ msgid "Please make a choice"
|
|
99 |
msgstr ""
|
100 |
|
101 |
#: gallery-plugin.php:228
|
102 |
-
#: gallery-plugin.php:
|
103 |
#, fuzzy
|
104 |
msgid "Sort images by"
|
105 |
msgstr "Izboj slike u redu"
|
@@ -171,339 +171,508 @@ msgid "Publishing"
|
|
171 |
msgstr "Javno"
|
172 |
|
173 |
#: gallery-plugin.php:483
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Date"
|
176 |
msgstr "Datum"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
#, fuzzy
|
180 |
msgid "Pro plugins"
|
181 |
msgstr "Preporučeni dodaci"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "Activated plugins"
|
186 |
msgstr "Aktivni dodaci"
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
#: gallery-plugin.php:
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Read more"
|
195 |
msgstr "Čitaj više..."
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Settings"
|
202 |
msgstr "Podešavanja"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "Installed plugins"
|
207 |
msgstr "Instalirani dodaci"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "Recommended plugins"
|
212 |
msgstr "Preporučeni dodaci"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Purchase"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
#, fuzzy
|
220 |
msgid "Free plugins"
|
221 |
msgstr "Preporučeni dodaci"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Download"
|
225 |
msgstr "Preuzmi"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
#, php-format
|
229 |
msgid "Install %s"
|
230 |
msgstr "Instaliraj %s"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Install now from wordpress.org"
|
234 |
msgstr "Instaliraj sa wordpress.org"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
#, fuzzy
|
238 |
msgid "If you have any questions, please contact us via"
|
239 |
msgstr "Ako imate bilo kakva pitanja, kontaktirajte nas na mejl plugin@bestwebsoft.com ili poopunite kontakt formu na našem sajtu"
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
#, fuzzy
|
243 |
msgid "See images »"
|
244 |
msgstr "Vidi sliku »"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
#, fuzzy
|
248 |
msgid "Settings are saved"
|
249 |
msgstr "Opcije sačuvane"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
#, fuzzy
|
253 |
msgid "Gallery Settings"
|
254 |
msgstr "Opcje Galerije"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
#, fuzzy
|
258 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
259 |
msgstr "Ako želite da dodate Jednu Galeriju na vašu stranicu ili u članak, jednostavno kopirajte i postavite ovaj kratak kod u sadržaj članke ili strane:"
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "Image size for the album cover"
|
264 |
msgstr "Veličina za naslovnu albuma "
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
-
#: gallery-plugin.php:
|
268 |
-
#: gallery-plugin.php:
|
269 |
#, fuzzy
|
270 |
msgid "Image size"
|
271 |
msgstr "Naziv veličine slike"
|
272 |
|
273 |
-
#: gallery-plugin.php:
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "Width (in px)"
|
276 |
msgstr "Širina (u px)"
|
277 |
|
278 |
-
#: gallery-plugin.php:
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "Height (in px)"
|
281 |
msgstr "Visina (u px)"
|
282 |
|
283 |
-
#: gallery-plugin.php:
|
284 |
#, fuzzy
|
285 |
msgid "Gallery image size"
|
286 |
msgstr "Galerije"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
#, fuzzy
|
290 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
291 |
msgstr "WordPress će napraviti kopiju sažetka posta sa naznačenim dimenzijama kada dodate novu sliku."
|
292 |
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "Gallery image size in the lightbox"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: gallery-plugin.php:
|
298 |
#, fuzzy
|
299 |
msgid "Max width (in px)"
|
300 |
msgstr "Širina (u px)"
|
301 |
|
302 |
-
#: gallery-plugin.php:
|
303 |
#, fuzzy
|
304 |
msgid "Max height (in px)"
|
305 |
msgstr "Visina (u px)"
|
306 |
|
307 |
-
#: gallery-plugin.php:
|
308 |
msgid "Display a full size image in the lightbox"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: gallery-plugin.php:
|
312 |
msgid "Crop position"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: gallery-plugin.php:
|
316 |
msgid "Horizontal"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "left"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: gallery-plugin.php:
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "center"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: gallery-plugin.php:
|
329 |
msgid "right"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: gallery-plugin.php:
|
333 |
msgid "Vertical"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: gallery-plugin.php:
|
337 |
msgid "top"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: gallery-plugin.php:
|
341 |
msgid "bottom"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: gallery-plugin.php:
|
345 |
msgid "Lightbox background"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: gallery-plugin.php:
|
349 |
msgid "Default"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: gallery-plugin.php:
|
353 |
msgid "Background transparency (from 0 to 1)"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: gallery-plugin.php:
|
357 |
msgid "Select a background color"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: gallery-plugin.php:
|
361 |
msgid "Background color"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: gallery-plugin.php:
|
365 |
-
#: gallery-plugin.php:
|
366 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: gallery-plugin.php:
|
370 |
msgid "Images with border"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: gallery-plugin.php:
|
374 |
msgid "Border width in px, just numbers"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: gallery-plugin.php:
|
378 |
-
#: gallery-plugin.php:
|
379 |
msgid "Select a border color"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: gallery-plugin.php:
|
383 |
#, fuzzy
|
384 |
msgid "Number of images in the row"
|
385 |
msgstr "Izboj slike u redu"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "Start slideshow"
|
389 |
msgstr "Započni prikaz slajdova"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "Slideshow interval"
|
393 |
msgstr "Interval prikaza slajdova"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
#, fuzzy
|
397 |
msgid "Attachment ID"
|
398 |
msgstr "id priveska"
|
399 |
|
400 |
-
#: gallery-plugin.php:
|
401 |
#, fuzzy
|
402 |
msgid "Image Name"
|
403 |
msgstr "Slika"
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
408 |
msgstr "redosled privezaka (celobrojna polja Insert / Upload Media Gallery)"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
#, fuzzy
|
412 |
msgid "Random"
|
413 |
msgstr "nasumično"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
#, fuzzy
|
417 |
msgid "Sort images"
|
418 |
msgstr "Izboj slike u redu"
|
419 |
|
420 |
-
#: gallery-plugin.php:
|
421 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
422 |
msgstr "ASC (rastući raspored od najnižih do najviših vrednosti - 1, 2, 3, a, b, c)"
|
423 |
|
424 |
-
#: gallery-plugin.php:
|
425 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
426 |
msgstr "DESC (opadajući raspored od naviših do najnižih vrednosti do - 3, 2, 1, a, b, c)"
|
427 |
|
428 |
-
#: gallery-plugin.php:
|
429 |
msgid "Display text above the image"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: gallery-plugin.php:
|
433 |
msgid "If you want to display text just in a lightbox"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: gallery-plugin.php:
|
437 |
#, fuzzy
|
438 |
msgid "Display the Back link"
|
439 |
msgstr "Prikaži Povratnu vezu"
|
440 |
|
441 |
-
#: gallery-plugin.php:
|
442 |
#, fuzzy
|
443 |
msgid "Display the Back link in the shortcode"
|
444 |
msgstr "Prikaži povratnu vezu ka kratak kod"
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "The Back link text"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "The Back link URL"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Gallery page (Page with Gallery Template)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "(Full URL to custom page)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "The Read More link text"
|
465 |
msgstr "Etiketa za Čitaj Više vezu"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Display Like buttons in the lightbox"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "FaceBook"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
#, fuzzy
|
477 |
msgid "Twitter"
|
478 |
msgstr "Naslov"
|
479 |
|
480 |
-
#: gallery-plugin.php:
|
481 |
msgid "Pinterest"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: gallery-plugin.php:
|
485 |
msgid "Google +1"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: gallery-plugin.php:
|
489 |
msgid "Save Changes"
|
490 |
msgstr "Sačuvaj Promene"
|
491 |
|
492 |
-
#: gallery-plugin.php:
|
493 |
msgid "FAQ"
|
494 |
msgstr "FAQ"
|
495 |
|
496 |
-
#: gallery-plugin.php:
|
497 |
msgid "Support"
|
498 |
msgstr "Podrška"
|
499 |
|
500 |
-
#: gallery-plugin.php:
|
501 |
#: template/gallery-single-template.php:76
|
502 |
#, fuzzy
|
503 |
msgid "Sorry, nothing found."
|
504 |
msgstr "Izvinite - ništa nije pronađeno."
|
505 |
|
506 |
-
#: gallery-plugin.php:
|
507 |
#: template/gallery-single-template.php:101
|
508 |
#, fuzzy
|
509 |
msgid "Download high resolution image"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:39+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:39+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Radovan Georgijevic <http://www.georgijevic.info>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "Sledeći fajlovi \"gallery-template.php\" i \"gallery-single-template.php\" Nisu pronađeni u direktorijumu teme. Prekopirajte ih iz direktorijuma `/ wp-content/plugins/gallery-plugin/template /` u direktorijum vaše temekako bi dodatak Galerija ispravno funkcionisao"
|
23 |
|
27 |
msgstr "Galerije"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerija"
|
33 |
|
99 |
msgstr ""
|
100 |
|
101 |
#: gallery-plugin.php:228
|
102 |
+
#: gallery-plugin.php:1170
|
103 |
#, fuzzy
|
104 |
msgid "Sort images by"
|
105 |
msgstr "Izboj slike u redu"
|
171 |
msgstr "Javno"
|
172 |
|
173 |
#: gallery-plugin.php:483
|
174 |
+
#: gallery-plugin.php:1174
|
175 |
msgid "Date"
|
176 |
msgstr "Datum"
|
177 |
|
178 |
+
#: gallery-plugin.php:658
|
179 |
+
msgid "Not set"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: gallery-plugin.php:660
|
183 |
+
#: gallery-plugin.php:664
|
184 |
+
msgid "On"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: gallery-plugin.php:662
|
188 |
+
#: gallery-plugin.php:666
|
189 |
+
msgid "Off"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: gallery-plugin.php:670
|
193 |
+
#: gallery-plugin.php:674
|
194 |
+
#: gallery-plugin.php:678
|
195 |
+
#: gallery-plugin.php:682
|
196 |
+
#: gallery-plugin.php:686
|
197 |
+
#: gallery-plugin.php:712
|
198 |
+
msgid "N/A"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: gallery-plugin.php:684
|
202 |
+
msgid " Mb"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: gallery-plugin.php:688
|
206 |
+
#: gallery-plugin.php:692
|
207 |
+
#: gallery-plugin.php:696
|
208 |
+
#: gallery-plugin.php:707
|
209 |
+
msgid "Yes"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: gallery-plugin.php:690
|
213 |
+
#: gallery-plugin.php:694
|
214 |
+
#: gallery-plugin.php:698
|
215 |
+
#: gallery-plugin.php:709
|
216 |
+
msgid "No"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: gallery-plugin.php:723
|
220 |
+
msgid "Operating System"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: gallery-plugin.php:724
|
224 |
+
msgid "Server"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: gallery-plugin.php:725
|
228 |
+
msgid "Memory usage"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: gallery-plugin.php:726
|
232 |
+
msgid "MYSQL Version"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: gallery-plugin.php:727
|
236 |
+
msgid "SQL Mode"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: gallery-plugin.php:728
|
240 |
+
msgid "PHP Version"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: gallery-plugin.php:729
|
244 |
+
msgid "PHP Safe Mode"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: gallery-plugin.php:730
|
248 |
+
msgid "PHP Allow URL fopen"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: gallery-plugin.php:731
|
252 |
+
msgid "PHP Memory Limit"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: gallery-plugin.php:732
|
256 |
+
#, fuzzy
|
257 |
+
msgid "PHP Max Upload Size"
|
258 |
+
msgstr "Dodaj Fajl"
|
259 |
+
|
260 |
+
#: gallery-plugin.php:733
|
261 |
+
msgid "PHP Max Post Size"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: gallery-plugin.php:734
|
265 |
+
msgid "PHP Max Script Execute Time"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: gallery-plugin.php:735
|
269 |
+
msgid "PHP Exif support"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: gallery-plugin.php:736
|
273 |
+
msgid "PHP IPTC support"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: gallery-plugin.php:737
|
277 |
+
msgid "PHP XML support"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: gallery-plugin.php:738
|
281 |
+
msgid "Site URL"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: gallery-plugin.php:739
|
285 |
+
msgid "Home URL"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: gallery-plugin.php:740
|
289 |
+
msgid "WordPress Version"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: gallery-plugin.php:741
|
293 |
+
msgid "WordPress DB Version"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: gallery-plugin.php:742
|
297 |
+
msgid "Multisite"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: gallery-plugin.php:743
|
301 |
+
msgid "Active Theme"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: gallery-plugin.php:758
|
305 |
+
msgid "Please enter a valid email address."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: gallery-plugin.php:762
|
309 |
+
msgid "Email with system info is sent to "
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: gallery-plugin.php:766
|
313 |
+
msgid "Thank you for contacting us."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: gallery-plugin.php:794
|
317 |
+
msgid "Sorry, email message could not be delivered."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: gallery-plugin.php:802
|
321 |
#, fuzzy
|
322 |
msgid "Pro plugins"
|
323 |
msgstr "Preporučeni dodaci"
|
324 |
|
325 |
+
#: gallery-plugin.php:805
|
326 |
+
#: gallery-plugin.php:831
|
327 |
msgid "Activated plugins"
|
328 |
msgstr "Aktivni dodaci"
|
329 |
|
330 |
+
#: gallery-plugin.php:807
|
331 |
+
#: gallery-plugin.php:815
|
332 |
+
#: gallery-plugin.php:823
|
333 |
+
#: gallery-plugin.php:833
|
334 |
+
#: gallery-plugin.php:841
|
335 |
+
#: gallery-plugin.php:849
|
336 |
msgid "Read more"
|
337 |
msgstr "Čitaj više..."
|
338 |
|
339 |
+
#: gallery-plugin.php:807
|
340 |
+
#: gallery-plugin.php:833
|
341 |
+
#: gallery-plugin.php:1257
|
342 |
+
#: gallery-plugin.php:1272
|
343 |
msgid "Settings"
|
344 |
msgstr "Podešavanja"
|
345 |
|
346 |
+
#: gallery-plugin.php:813
|
347 |
+
#: gallery-plugin.php:839
|
348 |
msgid "Installed plugins"
|
349 |
msgstr "Instalirani dodaci"
|
350 |
|
351 |
+
#: gallery-plugin.php:821
|
352 |
+
#: gallery-plugin.php:847
|
353 |
msgid "Recommended plugins"
|
354 |
msgstr "Preporučeni dodaci"
|
355 |
|
356 |
+
#: gallery-plugin.php:823
|
357 |
msgid "Purchase"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: gallery-plugin.php:828
|
361 |
#, fuzzy
|
362 |
msgid "Free plugins"
|
363 |
msgstr "Preporučeni dodaci"
|
364 |
|
365 |
+
#: gallery-plugin.php:849
|
366 |
msgid "Download"
|
367 |
msgstr "Preuzmi"
|
368 |
|
369 |
+
#: gallery-plugin.php:849
|
370 |
#, php-format
|
371 |
msgid "Install %s"
|
372 |
msgstr "Instaliraj %s"
|
373 |
|
374 |
+
#: gallery-plugin.php:849
|
375 |
msgid "Install now from wordpress.org"
|
376 |
msgstr "Instaliraj sa wordpress.org"
|
377 |
|
378 |
+
#: gallery-plugin.php:854
|
379 |
#, fuzzy
|
380 |
msgid "If you have any questions, please contact us via"
|
381 |
msgstr "Ako imate bilo kakva pitanja, kontaktirajte nas na mejl plugin@bestwebsoft.com ili poopunite kontakt formu na našem sajtu"
|
382 |
|
383 |
+
#: gallery-plugin.php:861
|
384 |
+
msgid "System status"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: gallery-plugin.php:865
|
388 |
+
msgid "Environment"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: gallery-plugin.php:876
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Active Plugins"
|
394 |
+
msgstr "Aktivni dodaci"
|
395 |
+
|
396 |
+
#: gallery-plugin.php:887
|
397 |
+
#, fuzzy
|
398 |
+
msgid "Inactive Plugins"
|
399 |
+
msgstr "Aktivni dodaci"
|
400 |
+
|
401 |
+
#: gallery-plugin.php:901
|
402 |
+
#, fuzzy
|
403 |
+
msgid "Send to support"
|
404 |
+
msgstr "Podrška"
|
405 |
+
|
406 |
+
#: gallery-plugin.php:908
|
407 |
+
msgid "Send to custom email »"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: gallery-plugin.php:950
|
411 |
#, fuzzy
|
412 |
msgid "See images »"
|
413 |
msgstr "Vidi sliku »"
|
414 |
|
415 |
+
#: gallery-plugin.php:1049
|
416 |
#, fuzzy
|
417 |
msgid "Settings are saved"
|
418 |
msgstr "Opcije sačuvane"
|
419 |
|
420 |
+
#: gallery-plugin.php:1063
|
421 |
#, fuzzy
|
422 |
msgid "Gallery Settings"
|
423 |
msgstr "Opcje Galerije"
|
424 |
|
425 |
+
#: gallery-plugin.php:1066
|
426 |
#, fuzzy
|
427 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
428 |
msgstr "Ako želite da dodate Jednu Galeriju na vašu stranicu ili u članak, jednostavno kopirajte i postavite ovaj kratak kod u sadržaj članke ili strane:"
|
429 |
|
430 |
+
#: gallery-plugin.php:1070
|
431 |
#, fuzzy
|
432 |
msgid "Image size for the album cover"
|
433 |
msgstr "Veličina za naslovnu albuma "
|
434 |
|
435 |
+
#: gallery-plugin.php:1072
|
436 |
+
#: gallery-plugin.php:1080
|
437 |
+
#: gallery-plugin.php:1093
|
438 |
#, fuzzy
|
439 |
msgid "Image size"
|
440 |
msgstr "Naziv veličine slike"
|
441 |
|
442 |
+
#: gallery-plugin.php:1073
|
443 |
+
#: gallery-plugin.php:1081
|
444 |
msgid "Width (in px)"
|
445 |
msgstr "Širina (u px)"
|
446 |
|
447 |
+
#: gallery-plugin.php:1074
|
448 |
+
#: gallery-plugin.php:1082
|
449 |
msgid "Height (in px)"
|
450 |
msgstr "Visina (u px)"
|
451 |
|
452 |
+
#: gallery-plugin.php:1078
|
453 |
#, fuzzy
|
454 |
msgid "Gallery image size"
|
455 |
msgstr "Galerije"
|
456 |
|
457 |
+
#: gallery-plugin.php:1086
|
458 |
#, fuzzy
|
459 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
460 |
msgstr "WordPress će napraviti kopiju sažetka posta sa naznačenim dimenzijama kada dodate novu sliku."
|
461 |
|
462 |
+
#: gallery-plugin.php:1091
|
463 |
msgid "Gallery image size in the lightbox"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: gallery-plugin.php:1094
|
467 |
#, fuzzy
|
468 |
msgid "Max width (in px)"
|
469 |
msgstr "Širina (u px)"
|
470 |
|
471 |
+
#: gallery-plugin.php:1095
|
472 |
#, fuzzy
|
473 |
msgid "Max height (in px)"
|
474 |
msgstr "Visina (u px)"
|
475 |
|
476 |
+
#: gallery-plugin.php:1096
|
477 |
msgid "Display a full size image in the lightbox"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: gallery-plugin.php:1100
|
481 |
msgid "Crop position"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: gallery-plugin.php:1102
|
485 |
msgid "Horizontal"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: gallery-plugin.php:1104
|
489 |
msgid "left"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: gallery-plugin.php:1105
|
493 |
+
#: gallery-plugin.php:1112
|
494 |
msgid "center"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: gallery-plugin.php:1106
|
498 |
msgid "right"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: gallery-plugin.php:1109
|
502 |
msgid "Vertical"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: gallery-plugin.php:1111
|
506 |
msgid "top"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: gallery-plugin.php:1113
|
510 |
msgid "bottom"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: gallery-plugin.php:1118
|
514 |
msgid "Lightbox background"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: gallery-plugin.php:1120
|
518 |
msgid "Default"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: gallery-plugin.php:1121
|
522 |
msgid "Background transparency (from 0 to 1)"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: gallery-plugin.php:1123
|
526 |
msgid "Select a background color"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: gallery-plugin.php:1125
|
530 |
msgid "Background color"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: gallery-plugin.php:1132
|
534 |
+
#: gallery-plugin.php:1237
|
535 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: gallery-plugin.php:1139
|
539 |
msgid "Images with border"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: gallery-plugin.php:1142
|
543 |
msgid "Border width in px, just numbers"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: gallery-plugin.php:1144
|
547 |
+
#: gallery-plugin.php:1146
|
548 |
msgid "Select a border color"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: gallery-plugin.php:1152
|
552 |
#, fuzzy
|
553 |
msgid "Number of images in the row"
|
554 |
msgstr "Izboj slike u redu"
|
555 |
|
556 |
+
#: gallery-plugin.php:1158
|
557 |
msgid "Start slideshow"
|
558 |
msgstr "Započni prikaz slajdova"
|
559 |
|
560 |
+
#: gallery-plugin.php:1164
|
561 |
msgid "Slideshow interval"
|
562 |
msgstr "Interval prikaza slajdova"
|
563 |
|
564 |
+
#: gallery-plugin.php:1172
|
565 |
#, fuzzy
|
566 |
msgid "Attachment ID"
|
567 |
msgstr "id priveska"
|
568 |
|
569 |
+
#: gallery-plugin.php:1173
|
570 |
#, fuzzy
|
571 |
msgid "Image Name"
|
572 |
msgstr "Slika"
|
573 |
|
574 |
+
#: gallery-plugin.php:1175
|
575 |
#, fuzzy
|
576 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
577 |
msgstr "redosled privezaka (celobrojna polja Insert / Upload Media Gallery)"
|
578 |
|
579 |
+
#: gallery-plugin.php:1176
|
580 |
#, fuzzy
|
581 |
msgid "Random"
|
582 |
msgstr "nasumično"
|
583 |
|
584 |
+
#: gallery-plugin.php:1180
|
585 |
#, fuzzy
|
586 |
msgid "Sort images"
|
587 |
msgstr "Izboj slike u redu"
|
588 |
|
589 |
+
#: gallery-plugin.php:1182
|
590 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
591 |
msgstr "ASC (rastući raspored od najnižih do najviših vrednosti - 1, 2, 3, a, b, c)"
|
592 |
|
593 |
+
#: gallery-plugin.php:1183
|
594 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
595 |
msgstr "DESC (opadajući raspored od naviših do najnižih vrednosti do - 3, 2, 1, a, b, c)"
|
596 |
|
597 |
+
#: gallery-plugin.php:1187
|
598 |
msgid "Display text above the image"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: gallery-plugin.php:1189
|
602 |
msgid "If you want to display text just in a lightbox"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: gallery-plugin.php:1193
|
606 |
#, fuzzy
|
607 |
msgid "Display the Back link"
|
608 |
msgstr "Prikaži Povratnu vezu"
|
609 |
|
610 |
+
#: gallery-plugin.php:1199
|
611 |
#, fuzzy
|
612 |
msgid "Display the Back link in the shortcode"
|
613 |
msgstr "Prikaži povratnu vezu ka kratak kod"
|
614 |
|
615 |
+
#: gallery-plugin.php:1205
|
616 |
msgid "The Back link text"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1211
|
620 |
msgid "The Back link URL"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1213
|
624 |
msgid "Gallery page (Page with Gallery Template)"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1215
|
628 |
msgid "(Full URL to custom page)"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1219
|
632 |
#, fuzzy
|
633 |
msgid "The Read More link text"
|
634 |
msgstr "Etiketa za Čitaj Više vezu"
|
635 |
|
636 |
+
#: gallery-plugin.php:1227
|
637 |
msgid "Display Like buttons in the lightbox"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1229
|
641 |
msgid "FaceBook"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1230
|
645 |
#, fuzzy
|
646 |
msgid "Twitter"
|
647 |
msgstr "Naslov"
|
648 |
|
649 |
+
#: gallery-plugin.php:1231
|
650 |
msgid "Pinterest"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: gallery-plugin.php:1232
|
654 |
msgid "Google +1"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: gallery-plugin.php:1245
|
658 |
msgid "Save Changes"
|
659 |
msgstr "Sačuvaj Promene"
|
660 |
|
661 |
+
#: gallery-plugin.php:1258
|
662 |
msgid "FAQ"
|
663 |
msgstr "FAQ"
|
664 |
|
665 |
+
#: gallery-plugin.php:1259
|
666 |
msgid "Support"
|
667 |
msgstr "Podrška"
|
668 |
|
669 |
+
#: gallery-plugin.php:1476
|
670 |
#: template/gallery-single-template.php:76
|
671 |
#, fuzzy
|
672 |
msgid "Sorry, nothing found."
|
673 |
msgstr "Izvinite - ništa nije pronađeno."
|
674 |
|
675 |
+
#: gallery-plugin.php:1498
|
676 |
#: template/gallery-single-template.php:101
|
677 |
#, fuzzy
|
678 |
msgid "Download high resolution image"
|
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: 2013-07-
|
6 |
-
"PO-Revision-Date: 2013-07-
|
7 |
"Last-Translator: \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:103
|
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:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
@@ -96,7 +96,7 @@ msgid "Please make a choice"
|
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
-
#: gallery-plugin.php:
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Кількість зображень у рядку"
|
@@ -165,332 +165,501 @@ msgid "Publishing"
|
|
165 |
msgstr "Громадськості"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "Date"
|
170 |
msgstr "Дата "
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
#, fuzzy
|
174 |
msgid "Pro plugins"
|
175 |
msgstr "Плагіни Рекомендовані"
|
176 |
|
177 |
-
#: gallery-plugin.php:
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Activated plugins"
|
180 |
msgstr "Активоване плагіни"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
-
#: gallery-plugin.php:
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Read more"
|
189 |
msgstr "Читати далі"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
-
#: gallery-plugin.php:
|
193 |
-
#: gallery-plugin.php:
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Settings"
|
196 |
msgstr "Параметри"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Installed plugins"
|
201 |
msgstr "Встановлених модулів"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "Recommended plugins"
|
206 |
msgstr "Плагіни Рекомендовані"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Purchase"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
#, fuzzy
|
214 |
msgid "Free plugins"
|
215 |
msgstr "Плагіни Рекомендовані"
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Download"
|
219 |
msgstr "Завантажити"
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
#, php-format
|
223 |
msgid "Install %s"
|
224 |
msgstr "Установка %s"
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Install now from wordpress.org"
|
228 |
msgstr "Установити зараз від wordpress.org"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "If you have any questions, please contact us via"
|
233 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
#, fuzzy
|
237 |
msgid "See images »"
|
238 |
msgstr "Дивитися фото »"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
#, fuzzy
|
242 |
msgid "Settings are saved"
|
243 |
msgstr "Параметри зберігаються."
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
#, fuzzy
|
247 |
msgid "Gallery Settings"
|
248 |
msgstr "Параметри галереї"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
#, fuzzy
|
256 |
msgid "Image size for the album cover"
|
257 |
msgstr "Размер для "
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
-
#: gallery-plugin.php:
|
261 |
-
#: gallery-plugin.php:
|
262 |
#, fuzzy
|
263 |
msgid "Image size"
|
264 |
msgstr "Ім'я розмір зображення"
|
265 |
|
266 |
-
#: gallery-plugin.php:
|
267 |
-
#: gallery-plugin.php:
|
268 |
msgid "Width (in px)"
|
269 |
msgstr "Ширина (в px)"
|
270 |
|
271 |
-
#: gallery-plugin.php:
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Height (in px)"
|
274 |
msgstr "Висота (в px)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
#, fuzzy
|
278 |
msgid "Gallery image size"
|
279 |
msgstr "Галереi"
|
280 |
|
281 |
-
#: gallery-plugin.php:
|
282 |
#, fuzzy
|
283 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
284 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
285 |
|
286 |
-
#: gallery-plugin.php:
|
287 |
msgid "Gallery image size in the lightbox"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: gallery-plugin.php:
|
291 |
#, fuzzy
|
292 |
msgid "Max width (in px)"
|
293 |
msgstr "Ширина (в px)"
|
294 |
|
295 |
-
#: gallery-plugin.php:
|
296 |
#, fuzzy
|
297 |
msgid "Max height (in px)"
|
298 |
msgstr "Висота (в px)"
|
299 |
|
300 |
-
#: gallery-plugin.php:
|
301 |
msgid "Display a full size image in the lightbox"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "Crop position"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "Horizontal"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: gallery-plugin.php:
|
313 |
msgid "left"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: gallery-plugin.php:
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "center"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "right"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Vertical"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "top"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "bottom"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
msgid "Lightbox background"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: gallery-plugin.php:
|
342 |
msgid "Default"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: gallery-plugin.php:
|
346 |
msgid "Background transparency (from 0 to 1)"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: gallery-plugin.php:
|
350 |
msgid "Select a background color"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: gallery-plugin.php:
|
354 |
msgid "Background color"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: gallery-plugin.php:
|
358 |
-
#: gallery-plugin.php:
|
359 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: gallery-plugin.php:
|
363 |
msgid "Images with border"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: gallery-plugin.php:
|
367 |
msgid "Border width in px, just numbers"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: gallery-plugin.php:
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Select a border color"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
#, fuzzy
|
377 |
msgid "Number of images in the row"
|
378 |
msgstr "Кількість зображень у рядку"
|
379 |
|
380 |
-
#: gallery-plugin.php:
|
381 |
msgid "Start slideshow"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: gallery-plugin.php:
|
385 |
msgid "Slideshow interval"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: gallery-plugin.php:
|
389 |
msgid "Attachment ID"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: gallery-plugin.php:
|
393 |
#, fuzzy
|
394 |
msgid "Image Name"
|
395 |
msgstr "Ім'я розмір зображення"
|
396 |
|
397 |
-
#: gallery-plugin.php:
|
398 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: gallery-plugin.php:
|
402 |
msgid "Random"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: gallery-plugin.php:
|
406 |
#, fuzzy
|
407 |
msgid "Sort images"
|
408 |
msgstr "Кількість зображень у рядку"
|
409 |
|
410 |
-
#: gallery-plugin.php:
|
411 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: gallery-plugin.php:
|
415 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: gallery-plugin.php:
|
419 |
msgid "Display text above the image"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: gallery-plugin.php:
|
423 |
msgid "If you want to display text just in a lightbox"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: gallery-plugin.php:
|
427 |
msgid "Display the Back link"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: gallery-plugin.php:
|
431 |
msgid "Display the Back link in the shortcode"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: gallery-plugin.php:
|
435 |
msgid "The Back link text"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: gallery-plugin.php:
|
439 |
msgid "The Back link URL"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: gallery-plugin.php:
|
443 |
msgid "Gallery page (Page with Gallery Template)"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: gallery-plugin.php:
|
447 |
msgid "(Full URL to custom page)"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: gallery-plugin.php:
|
451 |
msgid "The Read More link text"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: gallery-plugin.php:
|
455 |
msgid "Display Like buttons in the lightbox"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: gallery-plugin.php:
|
459 |
msgid "FaceBook"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: gallery-plugin.php:
|
463 |
#, fuzzy
|
464 |
msgid "Twitter"
|
465 |
msgstr "Назва"
|
466 |
|
467 |
-
#: gallery-plugin.php:
|
468 |
msgid "Pinterest"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: gallery-plugin.php:
|
472 |
msgid "Google +1"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: gallery-plugin.php:
|
476 |
msgid "Save Changes"
|
477 |
msgstr "Зберегти зміни"
|
478 |
|
479 |
-
#: gallery-plugin.php:
|
480 |
msgid "FAQ"
|
481 |
msgstr "FAQ "
|
482 |
|
483 |
-
#: gallery-plugin.php:
|
484 |
msgid "Support"
|
485 |
msgstr "Підтримка"
|
486 |
|
487 |
-
#: gallery-plugin.php:
|
488 |
#: template/gallery-single-template.php:76
|
489 |
#, fuzzy
|
490 |
msgid "Sorry, nothing found."
|
491 |
msgstr "Вибачте - нічого не знайдено."
|
492 |
|
493 |
-
#: gallery-plugin.php:
|
494 |
#: template/gallery-single-template.php:101
|
495 |
msgid "Download high resolution image"
|
496 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:39+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:39+0300\n"
|
7 |
"Last-Translator: \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:103
|
20 |
+
#: gallery-plugin.php:1056
|
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:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
96 |
msgstr ""
|
97 |
|
98 |
#: gallery-plugin.php:228
|
99 |
+
#: gallery-plugin.php:1170
|
100 |
#, fuzzy
|
101 |
msgid "Sort images by"
|
102 |
msgstr "Кількість зображень у рядку"
|
165 |
msgstr "Громадськості"
|
166 |
|
167 |
#: gallery-plugin.php:483
|
168 |
+
#: gallery-plugin.php:1174
|
169 |
msgid "Date"
|
170 |
msgstr "Дата "
|
171 |
|
172 |
+
#: gallery-plugin.php:658
|
173 |
+
msgid "Not set"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: gallery-plugin.php:660
|
177 |
+
#: gallery-plugin.php:664
|
178 |
+
msgid "On"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: gallery-plugin.php:662
|
182 |
+
#: gallery-plugin.php:666
|
183 |
+
msgid "Off"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: gallery-plugin.php:670
|
187 |
+
#: gallery-plugin.php:674
|
188 |
+
#: gallery-plugin.php:678
|
189 |
+
#: gallery-plugin.php:682
|
190 |
+
#: gallery-plugin.php:686
|
191 |
+
#: gallery-plugin.php:712
|
192 |
+
msgid "N/A"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: gallery-plugin.php:684
|
196 |
+
msgid " Mb"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: gallery-plugin.php:688
|
200 |
+
#: gallery-plugin.php:692
|
201 |
+
#: gallery-plugin.php:696
|
202 |
+
#: gallery-plugin.php:707
|
203 |
+
msgid "Yes"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: gallery-plugin.php:690
|
207 |
+
#: gallery-plugin.php:694
|
208 |
+
#: gallery-plugin.php:698
|
209 |
+
#: gallery-plugin.php:709
|
210 |
+
msgid "No"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:723
|
214 |
+
msgid "Operating System"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:724
|
218 |
+
msgid "Server"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:725
|
222 |
+
msgid "Memory usage"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:726
|
226 |
+
msgid "MYSQL Version"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:727
|
230 |
+
msgid "SQL Mode"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:728
|
234 |
+
msgid "PHP Version"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:729
|
238 |
+
msgid "PHP Safe Mode"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:730
|
242 |
+
msgid "PHP Allow URL fopen"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: gallery-plugin.php:731
|
246 |
+
msgid "PHP Memory Limit"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: gallery-plugin.php:732
|
250 |
+
#, fuzzy
|
251 |
+
msgid "PHP Max Upload Size"
|
252 |
+
msgstr "Завантажити файл"
|
253 |
+
|
254 |
+
#: gallery-plugin.php:733
|
255 |
+
msgid "PHP Max Post Size"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: gallery-plugin.php:734
|
259 |
+
msgid "PHP Max Script Execute Time"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: gallery-plugin.php:735
|
263 |
+
msgid "PHP Exif support"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: gallery-plugin.php:736
|
267 |
+
msgid "PHP IPTC support"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: gallery-plugin.php:737
|
271 |
+
msgid "PHP XML support"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: gallery-plugin.php:738
|
275 |
+
msgid "Site URL"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: gallery-plugin.php:739
|
279 |
+
msgid "Home URL"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: gallery-plugin.php:740
|
283 |
+
msgid "WordPress Version"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: gallery-plugin.php:741
|
287 |
+
msgid "WordPress DB Version"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: gallery-plugin.php:742
|
291 |
+
msgid "Multisite"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: gallery-plugin.php:743
|
295 |
+
msgid "Active Theme"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: gallery-plugin.php:758
|
299 |
+
msgid "Please enter a valid email address."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: gallery-plugin.php:762
|
303 |
+
msgid "Email with system info is sent to "
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: gallery-plugin.php:766
|
307 |
+
msgid "Thank you for contacting us."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: gallery-plugin.php:794
|
311 |
+
msgid "Sorry, email message could not be delivered."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: gallery-plugin.php:802
|
315 |
#, fuzzy
|
316 |
msgid "Pro plugins"
|
317 |
msgstr "Плагіни Рекомендовані"
|
318 |
|
319 |
+
#: gallery-plugin.php:805
|
320 |
+
#: gallery-plugin.php:831
|
321 |
msgid "Activated plugins"
|
322 |
msgstr "Активоване плагіни"
|
323 |
|
324 |
+
#: gallery-plugin.php:807
|
325 |
+
#: gallery-plugin.php:815
|
326 |
+
#: gallery-plugin.php:823
|
327 |
+
#: gallery-plugin.php:833
|
328 |
+
#: gallery-plugin.php:841
|
329 |
+
#: gallery-plugin.php:849
|
330 |
msgid "Read more"
|
331 |
msgstr "Читати далі"
|
332 |
|
333 |
+
#: gallery-plugin.php:807
|
334 |
+
#: gallery-plugin.php:833
|
335 |
+
#: gallery-plugin.php:1257
|
336 |
+
#: gallery-plugin.php:1272
|
337 |
msgid "Settings"
|
338 |
msgstr "Параметри"
|
339 |
|
340 |
+
#: gallery-plugin.php:813
|
341 |
+
#: gallery-plugin.php:839
|
342 |
msgid "Installed plugins"
|
343 |
msgstr "Встановлених модулів"
|
344 |
|
345 |
+
#: gallery-plugin.php:821
|
346 |
+
#: gallery-plugin.php:847
|
347 |
msgid "Recommended plugins"
|
348 |
msgstr "Плагіни Рекомендовані"
|
349 |
|
350 |
+
#: gallery-plugin.php:823
|
351 |
msgid "Purchase"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: gallery-plugin.php:828
|
355 |
#, fuzzy
|
356 |
msgid "Free plugins"
|
357 |
msgstr "Плагіни Рекомендовані"
|
358 |
|
359 |
+
#: gallery-plugin.php:849
|
360 |
msgid "Download"
|
361 |
msgstr "Завантажити"
|
362 |
|
363 |
+
#: gallery-plugin.php:849
|
364 |
#, php-format
|
365 |
msgid "Install %s"
|
366 |
msgstr "Установка %s"
|
367 |
|
368 |
+
#: gallery-plugin.php:849
|
369 |
msgid "Install now from wordpress.org"
|
370 |
msgstr "Установити зараз від wordpress.org"
|
371 |
|
372 |
+
#: gallery-plugin.php:854
|
373 |
#, fuzzy
|
374 |
msgid "If you have any questions, please contact us via"
|
375 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
376 |
|
377 |
+
#: gallery-plugin.php:861
|
378 |
+
msgid "System status"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: gallery-plugin.php:865
|
382 |
+
msgid "Environment"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: gallery-plugin.php:876
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Active Plugins"
|
388 |
+
msgstr "Активоване плагіни"
|
389 |
+
|
390 |
+
#: gallery-plugin.php:887
|
391 |
+
#, fuzzy
|
392 |
+
msgid "Inactive Plugins"
|
393 |
+
msgstr "Активоване плагіни"
|
394 |
+
|
395 |
+
#: gallery-plugin.php:901
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Send to support"
|
398 |
+
msgstr "Підтримка"
|
399 |
+
|
400 |
+
#: gallery-plugin.php:908
|
401 |
+
msgid "Send to custom email »"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: gallery-plugin.php:950
|
405 |
#, fuzzy
|
406 |
msgid "See images »"
|
407 |
msgstr "Дивитися фото »"
|
408 |
|
409 |
+
#: gallery-plugin.php:1049
|
410 |
#, fuzzy
|
411 |
msgid "Settings are saved"
|
412 |
msgstr "Параметри зберігаються."
|
413 |
|
414 |
+
#: gallery-plugin.php:1063
|
415 |
#, fuzzy
|
416 |
msgid "Gallery Settings"
|
417 |
msgstr "Параметри галереї"
|
418 |
|
419 |
+
#: gallery-plugin.php:1066
|
420 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: gallery-plugin.php:1070
|
424 |
#, fuzzy
|
425 |
msgid "Image size for the album cover"
|
426 |
msgstr "Размер для "
|
427 |
|
428 |
+
#: gallery-plugin.php:1072
|
429 |
+
#: gallery-plugin.php:1080
|
430 |
+
#: gallery-plugin.php:1093
|
431 |
#, fuzzy
|
432 |
msgid "Image size"
|
433 |
msgstr "Ім'я розмір зображення"
|
434 |
|
435 |
+
#: gallery-plugin.php:1073
|
436 |
+
#: gallery-plugin.php:1081
|
437 |
msgid "Width (in px)"
|
438 |
msgstr "Ширина (в px)"
|
439 |
|
440 |
+
#: gallery-plugin.php:1074
|
441 |
+
#: gallery-plugin.php:1082
|
442 |
msgid "Height (in px)"
|
443 |
msgstr "Висота (в px)"
|
444 |
|
445 |
+
#: gallery-plugin.php:1078
|
446 |
#, fuzzy
|
447 |
msgid "Gallery image size"
|
448 |
msgstr "Галереi"
|
449 |
|
450 |
+
#: gallery-plugin.php:1086
|
451 |
#, fuzzy
|
452 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
453 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
454 |
|
455 |
+
#: gallery-plugin.php:1091
|
456 |
msgid "Gallery image size in the lightbox"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: gallery-plugin.php:1094
|
460 |
#, fuzzy
|
461 |
msgid "Max width (in px)"
|
462 |
msgstr "Ширина (в px)"
|
463 |
|
464 |
+
#: gallery-plugin.php:1095
|
465 |
#, fuzzy
|
466 |
msgid "Max height (in px)"
|
467 |
msgstr "Висота (в px)"
|
468 |
|
469 |
+
#: gallery-plugin.php:1096
|
470 |
msgid "Display a full size image in the lightbox"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: gallery-plugin.php:1100
|
474 |
msgid "Crop position"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: gallery-plugin.php:1102
|
478 |
msgid "Horizontal"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: gallery-plugin.php:1104
|
482 |
msgid "left"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: gallery-plugin.php:1105
|
486 |
+
#: gallery-plugin.php:1112
|
487 |
msgid "center"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: gallery-plugin.php:1106
|
491 |
msgid "right"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: gallery-plugin.php:1109
|
495 |
msgid "Vertical"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: gallery-plugin.php:1111
|
499 |
msgid "top"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: gallery-plugin.php:1113
|
503 |
msgid "bottom"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: gallery-plugin.php:1118
|
507 |
msgid "Lightbox background"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: gallery-plugin.php:1120
|
511 |
msgid "Default"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: gallery-plugin.php:1121
|
515 |
msgid "Background transparency (from 0 to 1)"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: gallery-plugin.php:1123
|
519 |
msgid "Select a background color"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: gallery-plugin.php:1125
|
523 |
msgid "Background color"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: gallery-plugin.php:1132
|
527 |
+
#: gallery-plugin.php:1237
|
528 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: gallery-plugin.php:1139
|
532 |
msgid "Images with border"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: gallery-plugin.php:1142
|
536 |
msgid "Border width in px, just numbers"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: gallery-plugin.php:1144
|
540 |
+
#: gallery-plugin.php:1146
|
541 |
msgid "Select a border color"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: gallery-plugin.php:1152
|
545 |
#, fuzzy
|
546 |
msgid "Number of images in the row"
|
547 |
msgstr "Кількість зображень у рядку"
|
548 |
|
549 |
+
#: gallery-plugin.php:1158
|
550 |
msgid "Start slideshow"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: gallery-plugin.php:1164
|
554 |
msgid "Slideshow interval"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: gallery-plugin.php:1172
|
558 |
msgid "Attachment ID"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: gallery-plugin.php:1173
|
562 |
#, fuzzy
|
563 |
msgid "Image Name"
|
564 |
msgstr "Ім'я розмір зображення"
|
565 |
|
566 |
+
#: gallery-plugin.php:1175
|
567 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: gallery-plugin.php:1176
|
571 |
msgid "Random"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: gallery-plugin.php:1180
|
575 |
#, fuzzy
|
576 |
msgid "Sort images"
|
577 |
msgstr "Кількість зображень у рядку"
|
578 |
|
579 |
+
#: gallery-plugin.php:1182
|
580 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: gallery-plugin.php:1183
|
584 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: gallery-plugin.php:1187
|
588 |
msgid "Display text above the image"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: gallery-plugin.php:1189
|
592 |
msgid "If you want to display text just in a lightbox"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: gallery-plugin.php:1193
|
596 |
msgid "Display the Back link"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: gallery-plugin.php:1199
|
600 |
msgid "Display the Back link in the shortcode"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: gallery-plugin.php:1205
|
604 |
msgid "The Back link text"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: gallery-plugin.php:1211
|
608 |
msgid "The Back link URL"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: gallery-plugin.php:1213
|
612 |
msgid "Gallery page (Page with Gallery Template)"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: gallery-plugin.php:1215
|
616 |
msgid "(Full URL to custom page)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: gallery-plugin.php:1219
|
620 |
msgid "The Read More link text"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: gallery-plugin.php:1227
|
624 |
msgid "Display Like buttons in the lightbox"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: gallery-plugin.php:1229
|
628 |
msgid "FaceBook"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: gallery-plugin.php:1230
|
632 |
#, fuzzy
|
633 |
msgid "Twitter"
|
634 |
msgstr "Назва"
|
635 |
|
636 |
+
#: gallery-plugin.php:1231
|
637 |
msgid "Pinterest"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: gallery-plugin.php:1232
|
641 |
msgid "Google +1"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: gallery-plugin.php:1245
|
645 |
msgid "Save Changes"
|
646 |
msgstr "Зберегти зміни"
|
647 |
|
648 |
+
#: gallery-plugin.php:1258
|
649 |
msgid "FAQ"
|
650 |
msgstr "FAQ "
|
651 |
|
652 |
+
#: gallery-plugin.php:1259
|
653 |
msgid "Support"
|
654 |
msgstr "Підтримка"
|
655 |
|
656 |
+
#: gallery-plugin.php:1476
|
657 |
#: template/gallery-single-template.php:76
|
658 |
#, fuzzy
|
659 |
msgid "Sorry, nothing found."
|
660 |
msgstr "Вибачте - нічого не знайдено."
|
661 |
|
662 |
+
#: gallery-plugin.php:1498
|
663 |
#: template/gallery-single-template.php:101
|
664 |
msgid "Download high resolution image"
|
665 |
msgstr ""
|
languages/gallery-zh_CN.mo
CHANGED
Binary file
|
languages/gallery-zh_CN.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-07-11
|
6 |
-
"PO-Revision-Date: 2013-07-11
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@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:103
|
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 "在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-single-template.php\"。为了图集插件的正常运行,请从目录 `/wp-content/plugins/gallery-plugin/template/` 中复制他们到您的主题目录中"
|
23 |
|
@@ -27,7 +27,7 @@ msgid "Galleries"
|
|
27 |
msgstr "图库"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "图集"
|
33 |
|
@@ -92,7 +92,7 @@ msgid "Please make a choice"
|
|
92 |
msgstr "请选择"
|
93 |
|
94 |
#: gallery-plugin.php:228
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Sort images by"
|
97 |
msgstr "图像排序按"
|
98 |
|
@@ -157,315 +157,485 @@ msgid "Publishing"
|
|
157 |
msgstr "出版"
|
158 |
|
159 |
#: gallery-plugin.php:483
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "Date"
|
162 |
msgstr "日期"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: gallery-plugin.php:
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: gallery-plugin.php:
|
174 |
#: gallery-plugin.php:666
|
|
|
|
|
|
|
|
|
175 |
#: gallery-plugin.php:674
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
#: gallery-plugin.php:684
|
|
|
|
|
|
|
|
|
177 |
#: gallery-plugin.php:692
|
178 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
msgid "Read more"
|
180 |
msgstr "阅读更多"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
-
#: gallery-plugin.php:
|
184 |
-
#: gallery-plugin.php:
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Settings"
|
187 |
msgstr "设置"
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Installed plugins"
|
192 |
msgstr "安装插件"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Recommended plugins"
|
197 |
msgstr "推荐的插件"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Purchase"
|
201 |
msgstr "购买"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "Free plugins"
|
205 |
msgstr "免费插件"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "Download"
|
209 |
msgstr "下载"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
#, php-format
|
213 |
msgid "Install %s"
|
214 |
msgstr "安装 %s"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Install now from wordpress.org"
|
218 |
msgstr "现在从 wordpress.org 安装"
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "If you have any questions, please contact us via"
|
222 |
msgstr "如果您有任何问题,请使用以下方式联系我们"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "See images »"
|
226 |
msgstr "查看图像 »"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Settings are saved"
|
230 |
msgstr "设置已保存。"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Gallery Settings"
|
234 |
msgstr "图集设置"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
238 |
msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Image size for the album cover"
|
242 |
msgstr "专辑封面图像的尺寸"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
-
#: gallery-plugin.php:
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Image size"
|
248 |
msgstr "图像尺寸"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "Width (in px)"
|
253 |
msgstr "宽度(像素)"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Height (in px)"
|
258 |
msgstr "高度(像素)"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
msgid "Gallery image size"
|
262 |
msgstr "图集中图像的尺寸"
|
263 |
|
264 |
-
#: gallery-plugin.php:
|
265 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
266 |
msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
|
267 |
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "Gallery image size in the lightbox"
|
270 |
msgstr "灯箱中的图像尺寸"
|
271 |
|
272 |
-
#: gallery-plugin.php:
|
273 |
msgid "Max width (in px)"
|
274 |
msgstr "最大宽度(像素)"
|
275 |
|
276 |
-
#: gallery-plugin.php:
|
277 |
msgid "Max height (in px)"
|
278 |
msgstr "最大高度(像素)"
|
279 |
|
280 |
-
#: gallery-plugin.php:
|
281 |
msgid "Display a full size image in the lightbox"
|
282 |
msgstr "在灯箱中显示全尺寸图像"
|
283 |
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "Crop position"
|
286 |
msgstr "裁剪位置"
|
287 |
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Horizontal"
|
290 |
msgstr "水平"
|
291 |
|
292 |
-
#: gallery-plugin.php:
|
293 |
msgid "left"
|
294 |
msgstr "左侧"
|
295 |
|
296 |
-
#: gallery-plugin.php:
|
297 |
-
#: gallery-plugin.php:
|
298 |
msgid "center"
|
299 |
msgstr "中心"
|
300 |
|
301 |
-
#: gallery-plugin.php:
|
302 |
msgid "right"
|
303 |
msgstr "右侧"
|
304 |
|
305 |
-
#: gallery-plugin.php:
|
306 |
msgid "Vertical"
|
307 |
msgstr "垂直"
|
308 |
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "top"
|
311 |
msgstr "顶部"
|
312 |
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "bottom"
|
315 |
msgstr "底部"
|
316 |
|
317 |
-
#: gallery-plugin.php:
|
318 |
msgid "Lightbox background"
|
319 |
msgstr "灯箱背景"
|
320 |
|
321 |
-
#: gallery-plugin.php:
|
322 |
msgid "Default"
|
323 |
msgstr "默认"
|
324 |
|
325 |
-
#: gallery-plugin.php:
|
326 |
msgid "Background transparency (from 0 to 1)"
|
327 |
msgstr "背景透明度(值为 0 到 1)"
|
328 |
|
329 |
-
#: gallery-plugin.php:
|
330 |
msgid "Select a background color"
|
331 |
msgstr "选择背景色"
|
332 |
|
333 |
-
#: gallery-plugin.php:
|
334 |
msgid "Background color"
|
335 |
msgstr "背景色"
|
336 |
|
337 |
-
#: gallery-plugin.php:
|
338 |
-
#: gallery-plugin.php:
|
339 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
340 |
msgstr "此功能在插件的高级版本中可用。如需查看详细信息,请点击以下链接"
|
341 |
|
342 |
-
#: gallery-plugin.php:
|
343 |
msgid "Images with border"
|
344 |
msgstr "图像边缘"
|
345 |
|
346 |
-
#: gallery-plugin.php:
|
347 |
msgid "Border width in px, just numbers"
|
348 |
msgstr "边缘宽度,以像素为单位,只能使用数字"
|
349 |
|
350 |
-
#: gallery-plugin.php:
|
351 |
-
#: gallery-plugin.php:
|
352 |
msgid "Select a border color"
|
353 |
msgstr "选择边缘颜色"
|
354 |
|
355 |
-
#: gallery-plugin.php:
|
356 |
msgid "Number of images in the row"
|
357 |
msgstr "一行中图像的数量"
|
358 |
|
359 |
-
#: gallery-plugin.php:
|
360 |
msgid "Start slideshow"
|
361 |
msgstr "播放幻灯片"
|
362 |
|
363 |
-
#: gallery-plugin.php:
|
364 |
msgid "Slideshow interval"
|
365 |
msgstr "幻灯片播放间隔"
|
366 |
|
367 |
-
#: gallery-plugin.php:
|
368 |
msgid "Attachment ID"
|
369 |
msgstr "附件ID"
|
370 |
|
371 |
-
#: gallery-plugin.php:
|
372 |
msgid "Image Name"
|
373 |
msgstr "图像名称"
|
374 |
|
375 |
-
#: gallery-plugin.php:
|
376 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
377 |
msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
378 |
|
379 |
-
#: gallery-plugin.php:
|
380 |
msgid "Random"
|
381 |
msgstr "随机"
|
382 |
|
383 |
-
#: gallery-plugin.php:
|
384 |
msgid "Sort images"
|
385 |
msgstr "图像排序"
|
386 |
|
387 |
-
#: gallery-plugin.php:
|
388 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
389 |
msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
|
390 |
|
391 |
-
#: gallery-plugin.php:
|
392 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
393 |
msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
|
394 |
|
395 |
-
#: gallery-plugin.php:
|
396 |
msgid "Display text above the image"
|
397 |
msgstr "在图像上方显示文本"
|
398 |
|
399 |
-
#: gallery-plugin.php:
|
400 |
msgid "If you want to display text just in a lightbox"
|
401 |
msgstr "如果您仅想在收藏夹中显示文本"
|
402 |
|
403 |
-
#: gallery-plugin.php:
|
404 |
msgid "Display the Back link"
|
405 |
msgstr "显示返回链接"
|
406 |
|
407 |
-
#: gallery-plugin.php:
|
408 |
msgid "Display the Back link in the shortcode"
|
409 |
msgstr "以简码方式显示返回链接"
|
410 |
|
411 |
-
#: gallery-plugin.php:
|
412 |
msgid "The Back link text"
|
413 |
msgstr "返回链接文本"
|
414 |
|
415 |
-
#: gallery-plugin.php:
|
416 |
msgid "The Back link URL"
|
417 |
msgstr "返回链接URL"
|
418 |
|
419 |
-
#: gallery-plugin.php:
|
420 |
msgid "Gallery page (Page with Gallery Template)"
|
421 |
msgstr "图集页面(具有图集模板的页面)"
|
422 |
|
423 |
-
#: gallery-plugin.php:
|
424 |
msgid "(Full URL to custom page)"
|
425 |
msgstr "(到自定义页面的完整地址)"
|
426 |
|
427 |
-
#: gallery-plugin.php:
|
428 |
msgid "The Read More link text"
|
429 |
msgstr "阅读更多链接的文本"
|
430 |
|
431 |
-
#: gallery-plugin.php:
|
432 |
msgid "Display Like buttons in the lightbox"
|
433 |
msgstr "在灯箱中显示[喜欢]按钮"
|
434 |
|
435 |
-
#: gallery-plugin.php:
|
436 |
msgid "FaceBook"
|
437 |
msgstr "Facebook"
|
438 |
|
439 |
-
#: gallery-plugin.php:
|
440 |
msgid "Twitter"
|
441 |
msgstr "Twitter"
|
442 |
|
443 |
-
#: gallery-plugin.php:
|
444 |
msgid "Pinterest"
|
445 |
msgstr "Printerest"
|
446 |
|
447 |
-
#: gallery-plugin.php:
|
448 |
msgid "Google +1"
|
449 |
msgstr "Google +1"
|
450 |
|
451 |
-
#: gallery-plugin.php:
|
452 |
msgid "Save Changes"
|
453 |
msgstr "保存修改"
|
454 |
|
455 |
-
#: gallery-plugin.php:
|
456 |
msgid "FAQ"
|
457 |
msgstr "常问问题"
|
458 |
|
459 |
-
#: gallery-plugin.php:
|
460 |
msgid "Support"
|
461 |
msgstr "支持"
|
462 |
|
463 |
-
#: gallery-plugin.php:
|
464 |
#: template/gallery-single-template.php:76
|
465 |
msgid "Sorry, nothing found."
|
466 |
msgstr "对不起 - 没有找到。"
|
467 |
|
468 |
-
#: gallery-plugin.php:
|
469 |
#: template/gallery-single-template.php:101
|
470 |
msgid "Download high resolution image"
|
471 |
msgstr "下载高分辨率图像"
|
@@ -484,8 +654,6 @@ msgstr "图像"
|
|
484 |
#~ msgstr "附件按"
|
485 |
#~ msgid "attachments order"
|
486 |
#~ msgstr "附件排序"
|
487 |
-
#~ msgid "Link URL"
|
488 |
-
#~ msgstr "链接网址"
|
489 |
#~ msgid "The size of the cover album for gallery"
|
490 |
#~ msgstr "封面专辑的图像尺寸"
|
491 |
#~ msgid "Size for gallery image"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 11:39+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 11:39+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Xiaobo Chen <mibcxb@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: gallery-plugin.php:103
|
20 |
+
#: gallery-plugin.php:1056
|
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 "在您的主题目录中没有找到文件 \"gallery-template.php\" 和 \"gallery-single-template.php\"。为了图集插件的正常运行,请从目录 `/wp-content/plugins/gallery-plugin/template/` 中复制他们到您的主题目录中"
|
23 |
|
27 |
msgstr "图库"
|
28 |
|
29 |
#: gallery-plugin.php:128
|
30 |
+
#: gallery-plugin.php:923
|
31 |
msgid "Gallery"
|
32 |
msgstr "图集"
|
33 |
|
92 |
msgstr "请选择"
|
93 |
|
94 |
#: gallery-plugin.php:228
|
95 |
+
#: gallery-plugin.php:1170
|
96 |
msgid "Sort images by"
|
97 |
msgstr "图像排序按"
|
98 |
|
157 |
msgstr "出版"
|
158 |
|
159 |
#: gallery-plugin.php:483
|
160 |
+
#: gallery-plugin.php:1174
|
161 |
msgid "Date"
|
162 |
msgstr "日期"
|
163 |
|
164 |
+
#: gallery-plugin.php:658
|
165 |
+
msgid "Not set"
|
166 |
+
msgstr ""
|
167 |
|
168 |
+
#: gallery-plugin.php:660
|
169 |
+
#: gallery-plugin.php:664
|
170 |
+
msgid "On"
|
171 |
+
msgstr ""
|
172 |
|
173 |
+
#: gallery-plugin.php:662
|
174 |
#: gallery-plugin.php:666
|
175 |
+
msgid "Off"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: gallery-plugin.php:670
|
179 |
#: gallery-plugin.php:674
|
180 |
+
#: gallery-plugin.php:678
|
181 |
+
#: gallery-plugin.php:682
|
182 |
+
#: gallery-plugin.php:686
|
183 |
+
#: gallery-plugin.php:712
|
184 |
+
msgid "N/A"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
#: gallery-plugin.php:684
|
188 |
+
msgid " Mb"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: gallery-plugin.php:688
|
192 |
#: gallery-plugin.php:692
|
193 |
+
#: gallery-plugin.php:696
|
194 |
+
#: gallery-plugin.php:707
|
195 |
+
msgid "Yes"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: gallery-plugin.php:690
|
199 |
+
#: gallery-plugin.php:694
|
200 |
+
#: gallery-plugin.php:698
|
201 |
+
#: gallery-plugin.php:709
|
202 |
+
msgid "No"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: gallery-plugin.php:723
|
206 |
+
msgid "Operating System"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: gallery-plugin.php:724
|
210 |
+
msgid "Server"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:725
|
214 |
+
msgid "Memory usage"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:726
|
218 |
+
msgid "MYSQL Version"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:727
|
222 |
+
msgid "SQL Mode"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:728
|
226 |
+
msgid "PHP Version"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:729
|
230 |
+
msgid "PHP Safe Mode"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:730
|
234 |
+
msgid "PHP Allow URL fopen"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:731
|
238 |
+
msgid "PHP Memory Limit"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:732
|
242 |
+
#, fuzzy
|
243 |
+
msgid "PHP Max Upload Size"
|
244 |
+
msgstr "上传文件"
|
245 |
+
|
246 |
+
#: gallery-plugin.php:733
|
247 |
+
msgid "PHP Max Post Size"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: gallery-plugin.php:734
|
251 |
+
msgid "PHP Max Script Execute Time"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: gallery-plugin.php:735
|
255 |
+
msgid "PHP Exif support"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: gallery-plugin.php:736
|
259 |
+
msgid "PHP IPTC support"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: gallery-plugin.php:737
|
263 |
+
msgid "PHP XML support"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: gallery-plugin.php:738
|
267 |
+
#, fuzzy
|
268 |
+
msgid "Site URL"
|
269 |
+
msgstr "链接网址"
|
270 |
+
|
271 |
+
#: gallery-plugin.php:739
|
272 |
+
msgid "Home URL"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: gallery-plugin.php:740
|
276 |
+
msgid "WordPress Version"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: gallery-plugin.php:741
|
280 |
+
msgid "WordPress DB Version"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: gallery-plugin.php:742
|
284 |
+
msgid "Multisite"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: gallery-plugin.php:743
|
288 |
+
msgid "Active Theme"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: gallery-plugin.php:758
|
292 |
+
msgid "Please enter a valid email address."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: gallery-plugin.php:762
|
296 |
+
msgid "Email with system info is sent to "
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: gallery-plugin.php:766
|
300 |
+
msgid "Thank you for contacting us."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: gallery-plugin.php:794
|
304 |
+
msgid "Sorry, email message could not be delivered."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: gallery-plugin.php:802
|
308 |
+
msgid "Pro plugins"
|
309 |
+
msgstr "高级插件"
|
310 |
+
|
311 |
+
#: gallery-plugin.php:805
|
312 |
+
#: gallery-plugin.php:831
|
313 |
+
msgid "Activated plugins"
|
314 |
+
msgstr "已激活的插件"
|
315 |
+
|
316 |
+
#: gallery-plugin.php:807
|
317 |
+
#: gallery-plugin.php:815
|
318 |
+
#: gallery-plugin.php:823
|
319 |
+
#: gallery-plugin.php:833
|
320 |
+
#: gallery-plugin.php:841
|
321 |
+
#: gallery-plugin.php:849
|
322 |
msgid "Read more"
|
323 |
msgstr "阅读更多"
|
324 |
|
325 |
+
#: gallery-plugin.php:807
|
326 |
+
#: gallery-plugin.php:833
|
327 |
+
#: gallery-plugin.php:1257
|
328 |
+
#: gallery-plugin.php:1272
|
329 |
msgid "Settings"
|
330 |
msgstr "设置"
|
331 |
|
332 |
+
#: gallery-plugin.php:813
|
333 |
+
#: gallery-plugin.php:839
|
334 |
msgid "Installed plugins"
|
335 |
msgstr "安装插件"
|
336 |
|
337 |
+
#: gallery-plugin.php:821
|
338 |
+
#: gallery-plugin.php:847
|
339 |
msgid "Recommended plugins"
|
340 |
msgstr "推荐的插件"
|
341 |
|
342 |
+
#: gallery-plugin.php:823
|
343 |
msgid "Purchase"
|
344 |
msgstr "购买"
|
345 |
|
346 |
+
#: gallery-plugin.php:828
|
347 |
msgid "Free plugins"
|
348 |
msgstr "免费插件"
|
349 |
|
350 |
+
#: gallery-plugin.php:849
|
351 |
msgid "Download"
|
352 |
msgstr "下载"
|
353 |
|
354 |
+
#: gallery-plugin.php:849
|
355 |
#, php-format
|
356 |
msgid "Install %s"
|
357 |
msgstr "安装 %s"
|
358 |
|
359 |
+
#: gallery-plugin.php:849
|
360 |
msgid "Install now from wordpress.org"
|
361 |
msgstr "现在从 wordpress.org 安装"
|
362 |
|
363 |
+
#: gallery-plugin.php:854
|
364 |
msgid "If you have any questions, please contact us via"
|
365 |
msgstr "如果您有任何问题,请使用以下方式联系我们"
|
366 |
|
367 |
+
#: gallery-plugin.php:861
|
368 |
+
msgid "System status"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: gallery-plugin.php:865
|
372 |
+
msgid "Environment"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: gallery-plugin.php:876
|
376 |
+
#, fuzzy
|
377 |
+
msgid "Active Plugins"
|
378 |
+
msgstr "已激活的插件"
|
379 |
+
|
380 |
+
#: gallery-plugin.php:887
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Inactive Plugins"
|
383 |
+
msgstr "已激活的插件"
|
384 |
+
|
385 |
+
#: gallery-plugin.php:901
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Send to support"
|
388 |
+
msgstr "支持"
|
389 |
+
|
390 |
+
#: gallery-plugin.php:908
|
391 |
+
msgid "Send to custom email »"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: gallery-plugin.php:950
|
395 |
msgid "See images »"
|
396 |
msgstr "查看图像 »"
|
397 |
|
398 |
+
#: gallery-plugin.php:1049
|
399 |
msgid "Settings are saved"
|
400 |
msgstr "设置已保存。"
|
401 |
|
402 |
+
#: gallery-plugin.php:1063
|
403 |
msgid "Gallery Settings"
|
404 |
msgstr "图集设置"
|
405 |
|
406 |
+
#: gallery-plugin.php:1066
|
407 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and paste this shortcode into your post or page:"
|
408 |
msgstr "如果您想添加一个图集到页面或公告中,仅需要将图集简码放到页面或公告的内容中即可:"
|
409 |
|
410 |
+
#: gallery-plugin.php:1070
|
411 |
msgid "Image size for the album cover"
|
412 |
msgstr "专辑封面图像的尺寸"
|
413 |
|
414 |
+
#: gallery-plugin.php:1072
|
415 |
+
#: gallery-plugin.php:1080
|
416 |
+
#: gallery-plugin.php:1093
|
417 |
msgid "Image size"
|
418 |
msgstr "图像尺寸"
|
419 |
|
420 |
+
#: gallery-plugin.php:1073
|
421 |
+
#: gallery-plugin.php:1081
|
422 |
msgid "Width (in px)"
|
423 |
msgstr "宽度(像素)"
|
424 |
|
425 |
+
#: gallery-plugin.php:1074
|
426 |
+
#: gallery-plugin.php:1082
|
427 |
msgid "Height (in px)"
|
428 |
msgstr "高度(像素)"
|
429 |
|
430 |
+
#: gallery-plugin.php:1078
|
431 |
msgid "Gallery image size"
|
432 |
msgstr "图集中图像的尺寸"
|
433 |
|
434 |
+
#: gallery-plugin.php:1086
|
435 |
msgid "WordPress will create a new thumbnail with the specified dimensions when you upload a new photo."
|
436 |
msgstr "当您上传一幅新的照片时,WordPress会创建一个特定尺寸的缩略图副本。"
|
437 |
|
438 |
+
#: gallery-plugin.php:1091
|
439 |
msgid "Gallery image size in the lightbox"
|
440 |
msgstr "灯箱中的图像尺寸"
|
441 |
|
442 |
+
#: gallery-plugin.php:1094
|
443 |
msgid "Max width (in px)"
|
444 |
msgstr "最大宽度(像素)"
|
445 |
|
446 |
+
#: gallery-plugin.php:1095
|
447 |
msgid "Max height (in px)"
|
448 |
msgstr "最大高度(像素)"
|
449 |
|
450 |
+
#: gallery-plugin.php:1096
|
451 |
msgid "Display a full size image in the lightbox"
|
452 |
msgstr "在灯箱中显示全尺寸图像"
|
453 |
|
454 |
+
#: gallery-plugin.php:1100
|
455 |
msgid "Crop position"
|
456 |
msgstr "裁剪位置"
|
457 |
|
458 |
+
#: gallery-plugin.php:1102
|
459 |
msgid "Horizontal"
|
460 |
msgstr "水平"
|
461 |
|
462 |
+
#: gallery-plugin.php:1104
|
463 |
msgid "left"
|
464 |
msgstr "左侧"
|
465 |
|
466 |
+
#: gallery-plugin.php:1105
|
467 |
+
#: gallery-plugin.php:1112
|
468 |
msgid "center"
|
469 |
msgstr "中心"
|
470 |
|
471 |
+
#: gallery-plugin.php:1106
|
472 |
msgid "right"
|
473 |
msgstr "右侧"
|
474 |
|
475 |
+
#: gallery-plugin.php:1109
|
476 |
msgid "Vertical"
|
477 |
msgstr "垂直"
|
478 |
|
479 |
+
#: gallery-plugin.php:1111
|
480 |
msgid "top"
|
481 |
msgstr "顶部"
|
482 |
|
483 |
+
#: gallery-plugin.php:1113
|
484 |
msgid "bottom"
|
485 |
msgstr "底部"
|
486 |
|
487 |
+
#: gallery-plugin.php:1118
|
488 |
msgid "Lightbox background"
|
489 |
msgstr "灯箱背景"
|
490 |
|
491 |
+
#: gallery-plugin.php:1120
|
492 |
msgid "Default"
|
493 |
msgstr "默认"
|
494 |
|
495 |
+
#: gallery-plugin.php:1121
|
496 |
msgid "Background transparency (from 0 to 1)"
|
497 |
msgstr "背景透明度(值为 0 到 1)"
|
498 |
|
499 |
+
#: gallery-plugin.php:1123
|
500 |
msgid "Select a background color"
|
501 |
msgstr "选择背景色"
|
502 |
|
503 |
+
#: gallery-plugin.php:1125
|
504 |
msgid "Background color"
|
505 |
msgstr "背景色"
|
506 |
|
507 |
+
#: gallery-plugin.php:1132
|
508 |
+
#: gallery-plugin.php:1237
|
509 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
510 |
msgstr "此功能在插件的高级版本中可用。如需查看详细信息,请点击以下链接"
|
511 |
|
512 |
+
#: gallery-plugin.php:1139
|
513 |
msgid "Images with border"
|
514 |
msgstr "图像边缘"
|
515 |
|
516 |
+
#: gallery-plugin.php:1142
|
517 |
msgid "Border width in px, just numbers"
|
518 |
msgstr "边缘宽度,以像素为单位,只能使用数字"
|
519 |
|
520 |
+
#: gallery-plugin.php:1144
|
521 |
+
#: gallery-plugin.php:1146
|
522 |
msgid "Select a border color"
|
523 |
msgstr "选择边缘颜色"
|
524 |
|
525 |
+
#: gallery-plugin.php:1152
|
526 |
msgid "Number of images in the row"
|
527 |
msgstr "一行中图像的数量"
|
528 |
|
529 |
+
#: gallery-plugin.php:1158
|
530 |
msgid "Start slideshow"
|
531 |
msgstr "播放幻灯片"
|
532 |
|
533 |
+
#: gallery-plugin.php:1164
|
534 |
msgid "Slideshow interval"
|
535 |
msgstr "幻灯片播放间隔"
|
536 |
|
537 |
+
#: gallery-plugin.php:1172
|
538 |
msgid "Attachment ID"
|
539 |
msgstr "附件ID"
|
540 |
|
541 |
+
#: gallery-plugin.php:1173
|
542 |
msgid "Image Name"
|
543 |
msgstr "图像名称"
|
544 |
|
545 |
+
#: gallery-plugin.php:1175
|
546 |
msgid "Sorting order (the input field for sorting order in the Insert / Upload Media Gallery dialog)"
|
547 |
msgstr "分类排序(插入/上传媒体图集对话框中的输入字段)"
|
548 |
|
549 |
+
#: gallery-plugin.php:1176
|
550 |
msgid "Random"
|
551 |
msgstr "随机"
|
552 |
|
553 |
+
#: gallery-plugin.php:1180
|
554 |
msgid "Sort images"
|
555 |
msgstr "图像排序"
|
556 |
|
557 |
+
#: gallery-plugin.php:1182
|
558 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
559 |
msgstr "升序(由低到高 - 1, 2, 3; a, b, c)"
|
560 |
|
561 |
+
#: gallery-plugin.php:1183
|
562 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
563 |
msgstr "降序(由高到低 - 3, 2, 1; c, b, a)"
|
564 |
|
565 |
+
#: gallery-plugin.php:1187
|
566 |
msgid "Display text above the image"
|
567 |
msgstr "在图像上方显示文本"
|
568 |
|
569 |
+
#: gallery-plugin.php:1189
|
570 |
msgid "If you want to display text just in a lightbox"
|
571 |
msgstr "如果您仅想在收藏夹中显示文本"
|
572 |
|
573 |
+
#: gallery-plugin.php:1193
|
574 |
msgid "Display the Back link"
|
575 |
msgstr "显示返回链接"
|
576 |
|
577 |
+
#: gallery-plugin.php:1199
|
578 |
msgid "Display the Back link in the shortcode"
|
579 |
msgstr "以简码方式显示返回链接"
|
580 |
|
581 |
+
#: gallery-plugin.php:1205
|
582 |
msgid "The Back link text"
|
583 |
msgstr "返回链接文本"
|
584 |
|
585 |
+
#: gallery-plugin.php:1211
|
586 |
msgid "The Back link URL"
|
587 |
msgstr "返回链接URL"
|
588 |
|
589 |
+
#: gallery-plugin.php:1213
|
590 |
msgid "Gallery page (Page with Gallery Template)"
|
591 |
msgstr "图集页面(具有图集模板的页面)"
|
592 |
|
593 |
+
#: gallery-plugin.php:1215
|
594 |
msgid "(Full URL to custom page)"
|
595 |
msgstr "(到自定义页面的完整地址)"
|
596 |
|
597 |
+
#: gallery-plugin.php:1219
|
598 |
msgid "The Read More link text"
|
599 |
msgstr "阅读更多链接的文本"
|
600 |
|
601 |
+
#: gallery-plugin.php:1227
|
602 |
msgid "Display Like buttons in the lightbox"
|
603 |
msgstr "在灯箱中显示[喜欢]按钮"
|
604 |
|
605 |
+
#: gallery-plugin.php:1229
|
606 |
msgid "FaceBook"
|
607 |
msgstr "Facebook"
|
608 |
|
609 |
+
#: gallery-plugin.php:1230
|
610 |
msgid "Twitter"
|
611 |
msgstr "Twitter"
|
612 |
|
613 |
+
#: gallery-plugin.php:1231
|
614 |
msgid "Pinterest"
|
615 |
msgstr "Printerest"
|
616 |
|
617 |
+
#: gallery-plugin.php:1232
|
618 |
msgid "Google +1"
|
619 |
msgstr "Google +1"
|
620 |
|
621 |
+
#: gallery-plugin.php:1245
|
622 |
msgid "Save Changes"
|
623 |
msgstr "保存修改"
|
624 |
|
625 |
+
#: gallery-plugin.php:1258
|
626 |
msgid "FAQ"
|
627 |
msgstr "常问问题"
|
628 |
|
629 |
+
#: gallery-plugin.php:1259
|
630 |
msgid "Support"
|
631 |
msgstr "支持"
|
632 |
|
633 |
+
#: gallery-plugin.php:1476
|
634 |
#: template/gallery-single-template.php:76
|
635 |
msgid "Sorry, nothing found."
|
636 |
msgstr "对不起 - 没有找到。"
|
637 |
|
638 |
+
#: gallery-plugin.php:1498
|
639 |
#: template/gallery-single-template.php:101
|
640 |
msgid "Download high resolution image"
|
641 |
msgstr "下载高分辨率图像"
|
654 |
#~ msgstr "附件按"
|
655 |
#~ msgid "attachments order"
|
656 |
#~ msgstr "附件排序"
|
|
|
|
|
657 |
#~ msgid "The size of the cover album for gallery"
|
658 |
#~ msgstr "封面专辑的图像尺寸"
|
659 |
#~ msgid "Size for gallery image"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.5.2
|
7 |
-
Stable tag: 3.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -144,6 +144,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
147 |
= V3.9.2 - 11.07.2013 =
|
148 |
* Update : The Chinese language file is updated.
|
149 |
* Update : We updated all functionality for wordpress 3.5.2.
|
@@ -300,6 +303,9 @@ and add (for the themes Twenty Eleven or Twenty Ten):
|
|
300 |
|
301 |
== Upgrade Notice ==
|
302 |
|
|
|
|
|
|
|
303 |
= V3.9.2 =
|
304 |
The Chinese language file is updated. We updated all functionality for wordpress 3.5.2.
|
305 |
|
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.5.2
|
7 |
+
Stable tag: 3.9.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= V3.9.3 - 18.07.2013 =
|
148 |
+
* NEW : Added an ability to view and send system information by mail.
|
149 |
+
|
150 |
= V3.9.2 - 11.07.2013 =
|
151 |
* Update : The Chinese language file is updated.
|
152 |
* Update : We updated all functionality for wordpress 3.5.2.
|
303 |
|
304 |
== Upgrade Notice ==
|
305 |
|
306 |
+
= V3.9.3 =
|
307 |
+
Added an ability to view and send system information by mail.
|
308 |
+
|
309 |
= V3.9.2 =
|
310 |
The Chinese language file is updated. We updated all functionality for wordpress 3.5.2.
|
311 |
|