Version Description
- 24.07.2012 =
- Bugfix : Cross Site Request Forgery bug was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.4 |
Comparing to | |
See all releases |
Code changes from version 3.3 to 3.4
- gallery-plugin.php +35 -24
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +49 -49
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +49 -49
- languages/gallery-es.mo +0 -0
- languages/gallery-es.po +49 -49
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +49 -49
- languages/gallery-he_IL.mo +0 -0
- languages/gallery-he_IL.po +111 -110
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +49 -49
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +49 -49
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +49 -49
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +49 -49
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +49 -49
- languages/gallery-pt_BR.mo +0 -0
- languages/gallery-pt_BR.po +142 -141
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +49 -49
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +49 -49
- readme.txt +7 -1
gallery-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: This plugin allows you to implement gallery page into web site.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -221,7 +221,8 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
221 |
endforeach; ?>
|
222 |
</ul><div style="clear:both;"></div>
|
223 |
<div id="delete_images"></div>
|
224 |
-
<?php
|
|
|
225 |
}
|
226 |
|
227 |
// Create shortcode meta box for portfolio post type
|
@@ -234,17 +235,6 @@ if ( ! function_exists( 'gllr_post_shortcode_box' ) ) {
|
|
234 |
<?php }
|
235 |
}
|
236 |
|
237 |
-
// Use nonce for verification ...
|
238 |
-
if( ! function_exists ( 'echo_gllr_nonce' ) ) {
|
239 |
-
function echo_gllr_nonce () {
|
240 |
-
echo sprintf(
|
241 |
-
'<input type="hidden" name="%1$s" id="%1$s" value="%2$s" />',
|
242 |
-
'gllr_nonce_name',
|
243 |
-
wp_create_nonce( plugin_basename(__FILE__) )
|
244 |
-
);
|
245 |
-
}
|
246 |
-
}
|
247 |
-
|
248 |
if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
249 |
function gllr_save_postdata( $post_id, $post ) {
|
250 |
global $post, $wpdb;
|
@@ -332,26 +322,44 @@ if ( ! function_exists ( 'gllr_plugin_init' ) ) {
|
|
332 |
}
|
333 |
|
334 |
if( ! function_exists( 'gllr_custom_permalinks' ) ) {
|
335 |
-
function gllr_custom_permalinks() {
|
336 |
-
global $wp_rewrite;
|
337 |
global $wpdb;
|
338 |
$parent = $wpdb->get_var("SELECT $wpdb->posts.post_name FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id");
|
|
|
339 |
if( ! empty( $parent ) ) {
|
340 |
-
$
|
|
|
|
|
|
|
|
|
341 |
$wp_rewrite->add_rule( ''.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
|
342 |
$wp_rewrite->add_rule( ''.$parent.'/page/([^/]+)/?$', 'index.php?pagename='.$parent.'&paged=$matches[1]', 'top' );
|
343 |
-
$wp_rewrite->add_rule( ''.$parent.'/page/([^/]+)?$', 'index.php?pagename='.$parent.'&paged=$matches[1]', 'top' )
|
344 |
}
|
345 |
else {
|
346 |
-
$
|
|
|
|
|
|
|
|
|
347 |
$wp_rewrite->add_rule( 'gallery/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
|
348 |
$wp_rewrite->add_rule( 'gallery/page/([^/]+)/?$', 'index.php?pagename=gallery&paged=$matches[1]', 'top' );
|
349 |
-
$wp_rewrite->add_rule( 'gallery/page/([^/]+)?$', 'index.php?pagename=gallery&paged=$matches[1]', 'top' )
|
350 |
}
|
|
|
|
|
|
|
351 |
|
|
|
|
|
|
|
|
|
352 |
|
353 |
-
|
354 |
-
|
|
|
|
|
|
|
355 |
}
|
356 |
|
357 |
if ( ! function_exists( 'gllr_template_redirect' ) ) {
|
@@ -610,7 +618,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
610 |
$error = "";
|
611 |
|
612 |
// Save data for settings page
|
613 |
-
if( isset( $_REQUEST['gllr_form_submit'] ) ) {
|
614 |
$gllr_request_options = array();
|
615 |
$gllr_request_options["gllr_custom_size_name"] = $gllr_options["gllr_custom_size_name"];
|
616 |
|
@@ -684,7 +692,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
684 |
</td>
|
685 |
</tr>
|
686 |
<tr valign="top">
|
687 |
-
<td colspan="2"><span style="color: #888888;font-size: 10px;"><?php _e( 'WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo.', 'gallery' ); ?></span></
|
688 |
</tr>
|
689 |
<tr valign="top">
|
690 |
<th scope="row"><?php _e('Count images in row', 'gallery' ); ?> </th>
|
@@ -744,6 +752,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
744 |
<p class="submit">
|
745 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
746 |
</p>
|
|
|
747 |
</form>
|
748 |
</div>
|
749 |
<?php }
|
@@ -1079,7 +1088,9 @@ add_action( 'admin_menu', 'add_gllr_admin_menu' );
|
|
1079 |
add_action( 'init', 'gllr_plugin_init' );
|
1080 |
|
1081 |
add_action( 'init', 'post_type_images' ); // register post type
|
1082 |
-
|
|
|
|
|
1083 |
|
1084 |
add_action( 'admin_init', 'gllr_admin_error' );
|
1085 |
|
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.4
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
221 |
endforeach; ?>
|
222 |
</ul><div style="clear:both;"></div>
|
223 |
<div id="delete_images"></div>
|
224 |
+
<?php
|
225 |
+
}
|
226 |
}
|
227 |
|
228 |
// Create shortcode meta box for portfolio post type
|
235 |
<?php }
|
236 |
}
|
237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
239 |
function gllr_save_postdata( $post_id, $post ) {
|
240 |
global $post, $wpdb;
|
322 |
}
|
323 |
|
324 |
if( ! function_exists( 'gllr_custom_permalinks' ) ) {
|
325 |
+
function gllr_custom_permalinks( $rules ) {
|
|
|
326 |
global $wpdb;
|
327 |
$parent = $wpdb->get_var("SELECT $wpdb->posts.post_name FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id");
|
328 |
+
$newrules = array();
|
329 |
if( ! empty( $parent ) ) {
|
330 |
+
$newrules['(.+)/'.$parent.'/([^/]+)/?$']= 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1';
|
331 |
+
$newrules[''.$parent.'/([^/]+)/?$']= 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1';
|
332 |
+
$newrules[''.$parent.'/page/([^/]+)/?$']= 'index.php?pagename='.$parent.'&paged=$matches[1]';
|
333 |
+
$newrules[''.$parent.'/page/([^/]+)?$']= 'index.php?pagename='.$parent.'&paged=$matches[1]';
|
334 |
+
/*$wp_rewrite->add_rule( '(.+)/'.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1', 'top' );
|
335 |
$wp_rewrite->add_rule( ''.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
|
336 |
$wp_rewrite->add_rule( ''.$parent.'/page/([^/]+)/?$', 'index.php?pagename='.$parent.'&paged=$matches[1]', 'top' );
|
337 |
+
$wp_rewrite->add_rule( ''.$parent.'/page/([^/]+)?$', 'index.php?pagename='.$parent.'&paged=$matches[1]', 'top' );*/
|
338 |
}
|
339 |
else {
|
340 |
+
$newrules['(.+)/gallery/([^/]+)/?$']= 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1';
|
341 |
+
$newrules['gallery/([^/]+)/?$']= 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1';
|
342 |
+
$newrules['gallery/page/([^/]+)/?$']= 'index.php?pagename=gallery&paged=$matches[1]';
|
343 |
+
$newrules['gallery/page/([^/]+)?$']= 'index.php?pagename=gallery&paged=$matches[1]';
|
344 |
+
/*$wp_rewrite->add_rule( '(.+)/gallery/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1', 'top' );
|
345 |
$wp_rewrite->add_rule( 'gallery/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
|
346 |
$wp_rewrite->add_rule( 'gallery/page/([^/]+)/?$', 'index.php?pagename=gallery&paged=$matches[1]', 'top' );
|
347 |
+
$wp_rewrite->add_rule( 'gallery/page/([^/]+)?$', 'index.php?pagename=gallery&paged=$matches[1]', 'top' );*/
|
348 |
}
|
349 |
+
return $newrules + $rules;
|
350 |
+
}
|
351 |
+
}
|
352 |
|
353 |
+
// flush_rules() if our rules are not yet included
|
354 |
+
if ( ! function_exists( 'gllr_flush_rules' ) ) {
|
355 |
+
function gllr_flush_rules(){
|
356 |
+
$rules = get_option( 'rewrite_rules' );
|
357 |
|
358 |
+
if ( ! isset( $rules['(.+)/gallery/([^/]+)/?$'] ) ) {
|
359 |
+
global $wp_rewrite;
|
360 |
+
$wp_rewrite->flush_rules();
|
361 |
+
}
|
362 |
+
}
|
363 |
}
|
364 |
|
365 |
if ( ! function_exists( 'gllr_template_redirect' ) ) {
|
618 |
$error = "";
|
619 |
|
620 |
// Save data for settings page
|
621 |
+
if( isset( $_REQUEST['gllr_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'gllr_nonce_name' ) ) {
|
622 |
$gllr_request_options = array();
|
623 |
$gllr_request_options["gllr_custom_size_name"] = $gllr_options["gllr_custom_size_name"];
|
624 |
|
692 |
</td>
|
693 |
</tr>
|
694 |
<tr valign="top">
|
695 |
+
<td colspan="2"><span style="color: #888888;font-size: 10px;"><?php _e( 'WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo.', 'gallery' ); ?></span></td>
|
696 |
</tr>
|
697 |
<tr valign="top">
|
698 |
<th scope="row"><?php _e('Count images in row', 'gallery' ); ?> </th>
|
752 |
<p class="submit">
|
753 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
754 |
</p>
|
755 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'gllr_nonce_name' ); ?>
|
756 |
</form>
|
757 |
</div>
|
758 |
<?php }
|
1088 |
add_action( 'init', 'gllr_plugin_init' );
|
1089 |
|
1090 |
add_action( 'init', 'post_type_images' ); // register post type
|
1091 |
+
|
1092 |
+
add_filter( 'rewrite_rules_array', 'gllr_custom_permalinks' ); // add custom permalink for gallery
|
1093 |
+
add_action( 'wp_loaded', 'gllr_flush_rules' );
|
1094 |
|
1095 |
add_action( 'admin_init', 'gllr_admin_error' );
|
1096 |
|
languages/gallery-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -80,183 +80,183 @@ msgstr "Vyberte náhled pro nahrání:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Název"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Autor"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotky"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Veřejné"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivní pluginy"
|
110 |
|
111 |
-
#: gallery-plugin.php:526
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
|
|
114 |
msgid "Read more"
|
115 |
msgstr "Další informace"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Nastavení"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Nainstalované pluginy"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Doporučené pluginy"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Stáhnout"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Instaluj %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Instaluj ihned z wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Nastavení uložena."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Nastavení galerie"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Rozměry náhledu alba v galerii"
|
163 |
|
164 |
-
#: gallery-plugin.php:673
|
165 |
#: gallery-plugin.php:681
|
|
|
166 |
msgid "Image size name"
|
167 |
msgstr "Název rozměru"
|
168 |
|
169 |
-
#: gallery-plugin.php:674
|
170 |
#: gallery-plugin.php:682
|
|
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Šířka (v px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:675
|
175 |
#: gallery-plugin.php:683
|
|
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Výška (v px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Rozměry náhledu obrázku v albu"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Uložit změny"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Podpora"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Omlouvám se - nic nenalezeno."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
82 |
|
83 |
+
#: gallery-plugin.php:233
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: gallery-plugin.php:381
|
88 |
msgid "Title"
|
89 |
msgstr "Název"
|
90 |
|
91 |
+
#: gallery-plugin.php:382
|
92 |
msgid "Author"
|
93 |
msgstr "Autor"
|
94 |
|
95 |
+
#: gallery-plugin.php:383
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotky"
|
98 |
|
99 |
+
#: gallery-plugin.php:384
|
100 |
msgid "Public"
|
101 |
msgstr "Veřejné"
|
102 |
|
103 |
+
#: gallery-plugin.php:385
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
+
#: gallery-plugin.php:532
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivní pluginy"
|
110 |
|
|
|
111 |
#: gallery-plugin.php:534
|
112 |
#: gallery-plugin.php:542
|
113 |
+
#: gallery-plugin.php:550
|
114 |
msgid "Read more"
|
115 |
msgstr "Další informace"
|
116 |
|
117 |
+
#: gallery-plugin.php:534
|
118 |
+
#: gallery-plugin.php:765
|
119 |
+
#: gallery-plugin.php:780
|
120 |
msgid "Settings"
|
121 |
msgstr "Nastavení"
|
122 |
|
123 |
+
#: gallery-plugin.php:540
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Nainstalované pluginy"
|
126 |
|
127 |
+
#: gallery-plugin.php:548
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Doporučené pluginy"
|
130 |
|
131 |
+
#: gallery-plugin.php:550
|
132 |
msgid "Download"
|
133 |
msgstr "Stáhnout"
|
134 |
|
135 |
+
#: gallery-plugin.php:550
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Instaluj %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:550
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Instaluj ihned z wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:552
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
|
147 |
|
148 |
+
#: gallery-plugin.php:658
|
149 |
msgid "Options saved."
|
150 |
msgstr "Nastavení uložena."
|
151 |
|
152 |
+
#: gallery-plugin.php:672
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Nastavení galerie"
|
155 |
|
156 |
+
#: gallery-plugin.php:675
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: gallery-plugin.php:679
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Rozměry náhledu alba v galerii"
|
163 |
|
|
|
164 |
#: gallery-plugin.php:681
|
165 |
+
#: gallery-plugin.php:689
|
166 |
msgid "Image size name"
|
167 |
msgstr "Název rozměru"
|
168 |
|
|
|
169 |
#: gallery-plugin.php:682
|
170 |
+
#: gallery-plugin.php:690
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Šířka (v px)"
|
173 |
|
|
|
174 |
#: gallery-plugin.php:683
|
175 |
+
#: gallery-plugin.php:691
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Výška (v px)"
|
178 |
|
179 |
+
#: gallery-plugin.php:687
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Rozměry náhledu obrázku v albu"
|
182 |
|
183 |
+
#: gallery-plugin.php:695
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
186 |
|
187 |
+
#: gallery-plugin.php:698
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
190 |
|
191 |
+
#: gallery-plugin.php:704
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:710
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:716
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:719
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:720
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
+
#: gallery-plugin.php:721
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:722
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:726
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:728
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:729
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:733
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:739
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:745
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:753
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Uložit změny"
|
250 |
|
251 |
+
#: gallery-plugin.php:766
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:767
|
256 |
msgid "Support"
|
257 |
msgstr "Podpora"
|
258 |
|
259 |
+
#: gallery-plugin.php:878
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Omlouvám se - nic nenalezeno."
|
languages/gallery-de_DE.mo
CHANGED
Binary file
|
languages/gallery-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
@@ -80,183 +80,183 @@ msgstr "Screenshot zum hochladen auswählen:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Titel"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Author"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotos"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Öffentlich"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivierte Plugins"
|
110 |
|
111 |
-
#: gallery-plugin.php:526
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
|
|
114 |
msgid "Read more"
|
115 |
msgstr "Mehr erfahren"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Einstellungen"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Installierte Plugins"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Benötigte Plugins"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installiere %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Direkt von wordpress.org installieren"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Einstellungen gespeichert."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Galerie Einstellungen"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
163 |
|
164 |
-
#: gallery-plugin.php:673
|
165 |
#: gallery-plugin.php:681
|
|
|
166 |
msgid "Image size name"
|
167 |
msgstr "Name der Bilder"
|
168 |
|
169 |
-
#: gallery-plugin.php:674
|
170 |
#: gallery-plugin.php:682
|
|
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Breite (in px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:675
|
175 |
#: gallery-plugin.php:683
|
|
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Höhe (in px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Die Größe der Bilder in der Galerie"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Anzahl Bilder in der Reihe"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Einstellungen speichern"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Support"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Leider nichts gefunden."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
82 |
|
83 |
+
#: gallery-plugin.php:233
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: gallery-plugin.php:381
|
88 |
msgid "Title"
|
89 |
msgstr "Titel"
|
90 |
|
91 |
+
#: gallery-plugin.php:382
|
92 |
msgid "Author"
|
93 |
msgstr "Author"
|
94 |
|
95 |
+
#: gallery-plugin.php:383
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotos"
|
98 |
|
99 |
+
#: gallery-plugin.php:384
|
100 |
msgid "Public"
|
101 |
msgstr "Öffentlich"
|
102 |
|
103 |
+
#: gallery-plugin.php:385
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
+
#: gallery-plugin.php:532
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Aktivierte Plugins"
|
110 |
|
|
|
111 |
#: gallery-plugin.php:534
|
112 |
#: gallery-plugin.php:542
|
113 |
+
#: gallery-plugin.php:550
|
114 |
msgid "Read more"
|
115 |
msgstr "Mehr erfahren"
|
116 |
|
117 |
+
#: gallery-plugin.php:534
|
118 |
+
#: gallery-plugin.php:765
|
119 |
+
#: gallery-plugin.php:780
|
120 |
msgid "Settings"
|
121 |
msgstr "Einstellungen"
|
122 |
|
123 |
+
#: gallery-plugin.php:540
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Installierte Plugins"
|
126 |
|
127 |
+
#: gallery-plugin.php:548
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Benötigte Plugins"
|
130 |
|
131 |
+
#: gallery-plugin.php:550
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
+
#: gallery-plugin.php:550
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installiere %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:550
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Direkt von wordpress.org installieren"
|
143 |
|
144 |
+
#: gallery-plugin.php:552
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
147 |
|
148 |
+
#: gallery-plugin.php:658
|
149 |
msgid "Options saved."
|
150 |
msgstr "Einstellungen gespeichert."
|
151 |
|
152 |
+
#: gallery-plugin.php:672
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Galerie Einstellungen"
|
155 |
|
156 |
+
#: gallery-plugin.php:675
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: gallery-plugin.php:679
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
163 |
|
|
|
164 |
#: gallery-plugin.php:681
|
165 |
+
#: gallery-plugin.php:689
|
166 |
msgid "Image size name"
|
167 |
msgstr "Name der Bilder"
|
168 |
|
|
|
169 |
#: gallery-plugin.php:682
|
170 |
+
#: gallery-plugin.php:690
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Breite (in px)"
|
173 |
|
|
|
174 |
#: gallery-plugin.php:683
|
175 |
+
#: gallery-plugin.php:691
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Höhe (in px)"
|
178 |
|
179 |
+
#: gallery-plugin.php:687
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Die Größe der Bilder in der Galerie"
|
182 |
|
183 |
+
#: gallery-plugin.php:695
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
|
187 |
+
#: gallery-plugin.php:698
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Anzahl Bilder in der Reihe"
|
190 |
|
191 |
+
#: gallery-plugin.php:704
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:710
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:716
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:719
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:720
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
+
#: gallery-plugin.php:721
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:722
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:726
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:728
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:729
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:733
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:739
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:745
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:753
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Einstellungen speichern"
|
250 |
|
251 |
+
#: gallery-plugin.php:766
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:767
|
256 |
msgid "Support"
|
257 |
msgstr "Support"
|
258 |
|
259 |
+
#: gallery-plugin.php:878
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Leider nichts gefunden."
|
languages/gallery-es.mo
CHANGED
Binary file
|
languages/gallery-es.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
@@ -82,183 +82,183 @@ msgstr "Escoger una imagen para subir:"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Plugins Activados"
|
112 |
|
113 |
-
#: gallery-plugin.php:526
|
114 |
#: gallery-plugin.php:534
|
115 |
#: gallery-plugin.php:542
|
|
|
116 |
msgid "Read more"
|
117 |
msgstr "Leer más"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
165 |
|
166 |
-
#: gallery-plugin.php:673
|
167 |
#: gallery-plugin.php:681
|
|
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nombre del tamaño de la imagen"
|
170 |
|
171 |
-
#: gallery-plugin.php:674
|
172 |
#: gallery-plugin.php:682
|
|
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Ancho (en px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:675
|
177 |
#: gallery-plugin.php:683
|
|
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Alto (en px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
msgid "date"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "random"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "Attachments order"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "Display Return link"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Display Return link in shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid "Label for Return link"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar Cambios"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ "
|
256 |
|
257 |
-
#: gallery-plugin.php:
|
258 |
msgid "Support"
|
259 |
msgstr "Soporte"
|
260 |
|
261 |
-
#: gallery-plugin.php:
|
262 |
#: template/gallery-single-template.php:60
|
263 |
msgid "Sorry - nothing to found."
|
264 |
msgstr "Lo sentimos - nada que encontrar."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
24 |
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
84 |
|
85 |
+
#: gallery-plugin.php:233
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:381
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
+
#: gallery-plugin.php:382
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:383
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
+
#: gallery-plugin.php:384
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
+
#: gallery-plugin.php:385
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
+
#: gallery-plugin.php:532
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Plugins Activados"
|
112 |
|
|
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
115 |
+
#: gallery-plugin.php:550
|
116 |
msgid "Read more"
|
117 |
msgstr "Leer más"
|
118 |
|
119 |
+
#: gallery-plugin.php:534
|
120 |
+
#: gallery-plugin.php:765
|
121 |
+
#: gallery-plugin.php:780
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
+
#: gallery-plugin.php:540
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
+
#: gallery-plugin.php:548
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
+
#: gallery-plugin.php:550
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
+
#: gallery-plugin.php:550
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:550
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:552
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
|
149 |
|
150 |
+
#: gallery-plugin.php:658
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
+
#: gallery-plugin.php:672
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
+
#: gallery-plugin.php:675
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: gallery-plugin.php:679
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
165 |
|
|
|
166 |
#: gallery-plugin.php:681
|
167 |
+
#: gallery-plugin.php:689
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nombre del tamaño de la imagen"
|
170 |
|
|
|
171 |
#: gallery-plugin.php:682
|
172 |
+
#: gallery-plugin.php:690
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Ancho (en px)"
|
175 |
|
|
|
176 |
#: gallery-plugin.php:683
|
177 |
+
#: gallery-plugin.php:691
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Alto (en px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:687
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
+
#: gallery-plugin.php:695
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
188 |
|
189 |
+
#: gallery-plugin.php:698
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
+
#: gallery-plugin.php:704
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
+
#: gallery-plugin.php:710
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
+
#: gallery-plugin.php:716
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:719
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:720
|
214 |
msgid "date"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: gallery-plugin.php:721
|
218 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: gallery-plugin.php:722
|
222 |
msgid "random"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: gallery-plugin.php:726
|
226 |
msgid "Attachments order"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:728
|
230 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:729
|
234 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: gallery-plugin.php:733
|
238 |
msgid "Display Return link"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: gallery-plugin.php:739
|
242 |
msgid "Display Return link in shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:745
|
246 |
msgid "Label for Return link"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: gallery-plugin.php:753
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar Cambios"
|
252 |
|
253 |
+
#: gallery-plugin.php:766
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ "
|
256 |
|
257 |
+
#: gallery-plugin.php:767
|
258 |
msgid "Support"
|
259 |
msgstr "Soporte"
|
260 |
|
261 |
+
#: gallery-plugin.php:878
|
262 |
#: template/gallery-single-template.php:60
|
263 |
msgid "Sorry - nothing to found."
|
264 |
msgstr "Lo sentimos - nada que encontrar."
|
languages/gallery-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: gallery-plugin.php:55
|
22 |
-
#: gallery-plugin.php:
|
23 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
24 |
msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
25 |
|
@@ -29,7 +29,7 @@ msgid "Galleries"
|
|
29 |
msgstr "Galeries"
|
30 |
|
31 |
#: gallery-plugin.php:80
|
32 |
-
#: gallery-plugin.php:
|
33 |
msgid "Gallery"
|
34 |
msgstr "Galerie"
|
35 |
|
@@ -81,183 +81,183 @@ msgstr "Choisir l'image à envoyer :"
|
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
83 |
|
84 |
-
#: gallery-plugin.php:
|
85 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
86 |
msgstr "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code court dans le contenu"
|
87 |
|
88 |
-
#: gallery-plugin.php:
|
89 |
msgid "Title"
|
90 |
msgstr "Titre"
|
91 |
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Author"
|
94 |
msgstr "Auteur"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Photo's"
|
98 |
msgstr "Photo's"
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Public"
|
102 |
msgstr "Public"
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Date"
|
106 |
msgstr "Date"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
msgid "Activated plugins"
|
110 |
msgstr "Extensions activées"
|
111 |
|
112 |
-
#: gallery-plugin.php:526
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
|
|
115 |
msgid "Read more"
|
116 |
msgstr "Lire plus..."
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Settings"
|
122 |
msgstr "Paramètres"
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Extensions installées"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Extensions recommandées"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Télécharger"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Installation %s"
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid "Install now from wordpress.org"
|
143 |
msgstr "Installation à partir de wordpress.org"
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
147 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
msgid "Options saved."
|
151 |
msgstr "Options sauvegardées."
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Options de galerie"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
159 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "The size of the cover album for gallery"
|
163 |
msgstr "Taille de la vignette de l'album"
|
164 |
|
165 |
-
#: gallery-plugin.php:673
|
166 |
#: gallery-plugin.php:681
|
|
|
167 |
msgid "Image size name"
|
168 |
msgstr "Nom de la vignette"
|
169 |
|
170 |
-
#: gallery-plugin.php:674
|
171 |
#: gallery-plugin.php:682
|
|
|
172 |
msgid "Width (in px)"
|
173 |
msgstr "Largeur (en pixels)"
|
174 |
|
175 |
-
#: gallery-plugin.php:675
|
176 |
#: gallery-plugin.php:683
|
|
|
177 |
msgid "Height (in px)"
|
178 |
msgstr "Hauteur (en pixels)"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Size for gallery image"
|
182 |
msgstr "Taille de la vignette de la galerie"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Count images in row"
|
190 |
msgstr "Nombre d'images par ligne"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Start slideshow"
|
194 |
msgstr "Démarer le diaporama"
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Slideshow interval"
|
198 |
msgstr "Interval de transition pour le diaporama"
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Attachments order by"
|
202 |
msgstr "Fichiers trier par"
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "attachment id"
|
206 |
msgstr "id du fichier"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachment title"
|
210 |
msgstr "titre du fichier"
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "date"
|
214 |
msgstr "date"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
218 |
msgstr "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "random"
|
222 |
msgstr "aléatoire"
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "Attachments order"
|
226 |
msgstr "Ordre des fichiers"
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
230 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
234 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Display Return link"
|
238 |
msgstr "Afficher le lien de retour"
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Display Return link in shortcode"
|
242 |
msgstr "Afficher le lien de retour dans le code court"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "Label for Return link"
|
246 |
msgstr "Texte du lien de retour"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Sauvegarder"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ"
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Support"
|
258 |
msgstr "Soutien"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Désolé, rien de trouvé"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: gallery-plugin.php:55
|
22 |
+
#: gallery-plugin.php:665
|
23 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
24 |
msgstr "Les fichiers suivants \"gallery-template.php\" et \"gallery-single-template.php\" n'ont pas été trouvés dans le répertoire de votre thème. Merci de les copier depuis le répertoire `/wp-content/plugins/gallery-plugin/template/` dans le répertoire de votre thème pour le bon fonctionnement de l'extension Gallery"
|
25 |
|
29 |
msgstr "Galeries"
|
30 |
|
31 |
#: gallery-plugin.php:80
|
32 |
+
#: gallery-plugin.php:563
|
33 |
msgid "Gallery"
|
34 |
msgstr "Galerie"
|
35 |
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
83 |
|
84 |
+
#: gallery-plugin.php:233
|
85 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
86 |
msgstr "Vous pouvez ajouter la galerie dans la page ou l'article en insérant le code court dans le contenu"
|
87 |
|
88 |
+
#: gallery-plugin.php:381
|
89 |
msgid "Title"
|
90 |
msgstr "Titre"
|
91 |
|
92 |
+
#: gallery-plugin.php:382
|
93 |
msgid "Author"
|
94 |
msgstr "Auteur"
|
95 |
|
96 |
+
#: gallery-plugin.php:383
|
97 |
msgid "Photo's"
|
98 |
msgstr "Photo's"
|
99 |
|
100 |
+
#: gallery-plugin.php:384
|
101 |
msgid "Public"
|
102 |
msgstr "Public"
|
103 |
|
104 |
+
#: gallery-plugin.php:385
|
105 |
msgid "Date"
|
106 |
msgstr "Date"
|
107 |
|
108 |
+
#: gallery-plugin.php:532
|
109 |
msgid "Activated plugins"
|
110 |
msgstr "Extensions activées"
|
111 |
|
|
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
114 |
+
#: gallery-plugin.php:550
|
115 |
msgid "Read more"
|
116 |
msgstr "Lire plus..."
|
117 |
|
118 |
+
#: gallery-plugin.php:534
|
119 |
+
#: gallery-plugin.php:765
|
120 |
+
#: gallery-plugin.php:780
|
121 |
msgid "Settings"
|
122 |
msgstr "Paramètres"
|
123 |
|
124 |
+
#: gallery-plugin.php:540
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Extensions installées"
|
127 |
|
128 |
+
#: gallery-plugin.php:548
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Extensions recommandées"
|
131 |
|
132 |
+
#: gallery-plugin.php:550
|
133 |
msgid "Download"
|
134 |
msgstr "Télécharger"
|
135 |
|
136 |
+
#: gallery-plugin.php:550
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Installation %s"
|
140 |
|
141 |
+
#: gallery-plugin.php:550
|
142 |
msgid "Install now from wordpress.org"
|
143 |
msgstr "Installation à partir de wordpress.org"
|
144 |
|
145 |
+
#: gallery-plugin.php:552
|
146 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
147 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
148 |
|
149 |
+
#: gallery-plugin.php:658
|
150 |
msgid "Options saved."
|
151 |
msgstr "Options sauvegardées."
|
152 |
|
153 |
+
#: gallery-plugin.php:672
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Options de galerie"
|
156 |
|
157 |
+
#: gallery-plugin.php:675
|
158 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
159 |
msgstr "Si vous voulez ajouter la galerie dans une page ou un article, copier le code court suivant dans le contenu de votre page ou de votre article:"
|
160 |
|
161 |
+
#: gallery-plugin.php:679
|
162 |
msgid "The size of the cover album for gallery"
|
163 |
msgstr "Taille de la vignette de l'album"
|
164 |
|
|
|
165 |
#: gallery-plugin.php:681
|
166 |
+
#: gallery-plugin.php:689
|
167 |
msgid "Image size name"
|
168 |
msgstr "Nom de la vignette"
|
169 |
|
|
|
170 |
#: gallery-plugin.php:682
|
171 |
+
#: gallery-plugin.php:690
|
172 |
msgid "Width (in px)"
|
173 |
msgstr "Largeur (en pixels)"
|
174 |
|
|
|
175 |
#: gallery-plugin.php:683
|
176 |
+
#: gallery-plugin.php:691
|
177 |
msgid "Height (in px)"
|
178 |
msgstr "Hauteur (en pixels)"
|
179 |
|
180 |
+
#: gallery-plugin.php:687
|
181 |
msgid "Size for gallery image"
|
182 |
msgstr "Taille de la vignette de la galerie"
|
183 |
|
184 |
+
#: gallery-plugin.php:695
|
185 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
186 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
187 |
|
188 |
+
#: gallery-plugin.php:698
|
189 |
msgid "Count images in row"
|
190 |
msgstr "Nombre d'images par ligne"
|
191 |
|
192 |
+
#: gallery-plugin.php:704
|
193 |
msgid "Start slideshow"
|
194 |
msgstr "Démarer le diaporama"
|
195 |
|
196 |
+
#: gallery-plugin.php:710
|
197 |
msgid "Slideshow interval"
|
198 |
msgstr "Interval de transition pour le diaporama"
|
199 |
|
200 |
+
#: gallery-plugin.php:716
|
201 |
msgid "Attachments order by"
|
202 |
msgstr "Fichiers trier par"
|
203 |
|
204 |
+
#: gallery-plugin.php:718
|
205 |
msgid "attachment id"
|
206 |
msgstr "id du fichier"
|
207 |
|
208 |
+
#: gallery-plugin.php:719
|
209 |
msgid "attachment title"
|
210 |
msgstr "titre du fichier"
|
211 |
|
212 |
+
#: gallery-plugin.php:720
|
213 |
msgid "date"
|
214 |
msgstr "date"
|
215 |
|
216 |
+
#: gallery-plugin.php:721
|
217 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
218 |
msgstr "ordre des fichiers (le nombre dans la fenêtre d'insertion / téléchargement de la galerie)"
|
219 |
|
220 |
+
#: gallery-plugin.php:722
|
221 |
msgid "random"
|
222 |
msgstr "aléatoire"
|
223 |
|
224 |
+
#: gallery-plugin.php:726
|
225 |
msgid "Attachments order"
|
226 |
msgstr "Ordre des fichiers"
|
227 |
|
228 |
+
#: gallery-plugin.php:728
|
229 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
230 |
msgstr "ASC (ordre ascendant de la plus petite à la plus grande valeur - 1, 2, 3; a, b, c)"
|
231 |
|
232 |
+
#: gallery-plugin.php:729
|
233 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
234 |
msgstr "DESC (ordre descendant de la plus grade à la plus petite - 3, 2, 1; c, b, a)"
|
235 |
|
236 |
+
#: gallery-plugin.php:733
|
237 |
msgid "Display Return link"
|
238 |
msgstr "Afficher le lien de retour"
|
239 |
|
240 |
+
#: gallery-plugin.php:739
|
241 |
msgid "Display Return link in shortcode"
|
242 |
msgstr "Afficher le lien de retour dans le code court"
|
243 |
|
244 |
+
#: gallery-plugin.php:745
|
245 |
msgid "Label for Return link"
|
246 |
msgstr "Texte du lien de retour"
|
247 |
|
248 |
+
#: gallery-plugin.php:753
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Sauvegarder"
|
251 |
|
252 |
+
#: gallery-plugin.php:766
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ"
|
255 |
|
256 |
+
#: gallery-plugin.php:767
|
257 |
msgid "Support"
|
258 |
msgstr "Soutien"
|
259 |
|
260 |
+
#: gallery-plugin.php:878
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Désolé, rien de trouvé"
|
languages/gallery-he_IL.mo
CHANGED
Binary file
|
languages/gallery-he_IL.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -18,314 +19,314 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
|
22 |
#: gallery-plugin.php:55
|
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 |
|
27 |
-
|
28 |
#: gallery-plugin.php:79
|
29 |
#: gallery-plugin.php:89
|
30 |
msgid "Galleries"
|
31 |
msgstr "גלריות"
|
32 |
|
33 |
-
|
34 |
#: gallery-plugin.php:80
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Gallery"
|
37 |
msgstr "גלריה"
|
38 |
|
39 |
-
|
40 |
#: gallery-plugin.php:81
|
41 |
msgid "Add New"
|
42 |
msgstr "הוסף"
|
43 |
|
44 |
-
|
45 |
#: gallery-plugin.php:82
|
46 |
msgid "Add New Gallery"
|
47 |
msgstr "הוסף גלריה חדשה"
|
48 |
|
49 |
-
|
50 |
#: gallery-plugin.php:83
|
51 |
msgid "Edit Gallery"
|
52 |
msgstr "ערוך גלריה"
|
53 |
|
54 |
-
|
55 |
#: gallery-plugin.php:84
|
56 |
msgid "New Gallery"
|
57 |
msgstr "גלריה חדשה"
|
58 |
|
59 |
-
|
60 |
#: gallery-plugin.php:85
|
61 |
msgid "View Gallery"
|
62 |
msgstr "הצג גלריה"
|
63 |
|
64 |
-
|
65 |
#: gallery-plugin.php:86
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "חיפוש בגלריות"
|
68 |
|
69 |
-
|
70 |
#: gallery-plugin.php:87
|
71 |
msgid "No Galleries found"
|
72 |
msgstr "לא נמצאו גלריות"
|
73 |
|
74 |
-
|
75 |
#: gallery-plugin.php:144
|
76 |
msgid "Upload File"
|
77 |
msgstr "העלה קובץ"
|
78 |
|
79 |
-
|
80 |
#: gallery-plugin.php:145
|
81 |
msgid "Gallery Shortcode"
|
82 |
msgstr "קיצור קוד גלריה"
|
83 |
|
84 |
-
|
85 |
#: gallery-plugin.php:159
|
86 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
87 |
msgstr "אין הרשאת כתיבה אל הספריה הזמנית של הגלריה (gallery-plugin/upload/files) שרת שלך. אנא השתמש בהעלאת התמונות של וורדפרס כדי להעלות תמונות (מדיה > ספריה)"
|
88 |
|
89 |
-
|
90 |
#: gallery-plugin.php:163
|
91 |
msgid "Choose an image to upload:"
|
92 |
msgstr "בחר תמונה להעלאה:"
|
93 |
|
94 |
-
|
95 |
#: gallery-plugin.php:168
|
96 |
msgid "Please enable JavaScript to use the file uploader."
|
97 |
msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
|
98 |
|
99 |
-
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
102 |
msgstr "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד בתוכן"
|
103 |
|
104 |
-
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Title"
|
107 |
msgstr "כותרת"
|
108 |
|
109 |
-
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Author"
|
112 |
msgstr "מחבר"
|
113 |
|
114 |
-
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Photo's"
|
117 |
msgstr "של התמונה"
|
118 |
|
119 |
-
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Public"
|
122 |
msgstr "ציבורי"
|
123 |
|
124 |
-
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Date"
|
127 |
msgstr "תאריך"
|
128 |
|
129 |
-
|
130 |
-
#: gallery-plugin.php:
|
131 |
msgid "Activated plugins"
|
132 |
msgstr "תוספים פעילים"
|
133 |
|
134 |
-
|
135 |
-
#: gallery-plugin.php:526
|
136 |
#: gallery-plugin.php:534
|
137 |
#: gallery-plugin.php:542
|
|
|
138 |
msgid "Read more"
|
139 |
msgstr "קרא עוד"
|
140 |
|
141 |
-
|
142 |
-
#: gallery-plugin.php:
|
143 |
-
#: gallery-plugin.php:
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Settings"
|
146 |
msgstr "הגדרות"
|
147 |
|
148 |
-
|
149 |
-
#: gallery-plugin.php:
|
150 |
msgid "Installed plugins"
|
151 |
msgstr "תוספים מותקנים"
|
152 |
|
153 |
-
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Recommended plugins"
|
156 |
msgstr "תוספים מומלצים"
|
157 |
|
158 |
-
|
159 |
-
#: gallery-plugin.php:
|
160 |
msgid "Download"
|
161 |
msgstr "הורד"
|
162 |
|
163 |
-
|
164 |
-
#: gallery-plugin.php:
|
165 |
#, php-format
|
166 |
msgid "Install %s"
|
167 |
msgstr "התקן %s"
|
168 |
|
169 |
-
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Install now from wordpress.org"
|
172 |
msgstr "הורד כעת מ wordpress.org"
|
173 |
|
174 |
-
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
177 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
178 |
|
179 |
-
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Options saved."
|
182 |
msgstr "האפשרויות נשמרו."
|
183 |
|
184 |
-
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "Gallery Options"
|
187 |
msgstr "אפשרויות גלריה"
|
188 |
|
189 |
-
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
192 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
193 |
|
194 |
-
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "The size of the cover album for gallery"
|
197 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
198 |
|
199 |
-
|
200 |
-
#: gallery-plugin.php:673
|
201 |
#: gallery-plugin.php:681
|
|
|
202 |
msgid "Image size name"
|
203 |
msgstr "שם גודל תמונה"
|
204 |
|
205 |
-
|
206 |
-
#: gallery-plugin.php:674
|
207 |
#: gallery-plugin.php:682
|
|
|
208 |
msgid "Width (in px)"
|
209 |
msgstr "רוחב (בפיקסלים)"
|
210 |
|
211 |
-
|
212 |
-
#: gallery-plugin.php:675
|
213 |
#: gallery-plugin.php:683
|
|
|
214 |
msgid "Height (in px)"
|
215 |
msgstr "גובה (בפיקסלים)"
|
216 |
|
217 |
-
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Size for gallery image"
|
220 |
msgstr "גודל תמונת גלריה"
|
221 |
|
222 |
-
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
225 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
226 |
|
227 |
-
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Count images in row"
|
230 |
msgstr "מספר תמונות בשורה"
|
231 |
|
232 |
-
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "Start slideshow"
|
235 |
msgstr "התחל מצגת"
|
236 |
|
237 |
-
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Slideshow interval"
|
240 |
msgstr "מרווח מצגת"
|
241 |
|
242 |
-
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Attachments order by"
|
245 |
msgstr "סדר הקבצים המצורפים"
|
246 |
|
247 |
-
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "attachment id"
|
250 |
msgstr "מזהה קובץ מצורף"
|
251 |
|
252 |
-
|
253 |
-
#: gallery-plugin.php:
|
254 |
msgid "attachment title"
|
255 |
msgstr "כותרת קובץ מצורף"
|
256 |
|
257 |
-
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "date"
|
260 |
msgstr "תאריך"
|
261 |
|
262 |
-
|
263 |
-
#: gallery-plugin.php:
|
264 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
265 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
266 |
|
267 |
-
|
268 |
-
#: gallery-plugin.php:
|
269 |
msgid "random"
|
270 |
msgstr "אקראי"
|
271 |
|
272 |
-
|
273 |
-
#: gallery-plugin.php:
|
274 |
msgid "Attachments order"
|
275 |
msgstr "סדר קבצים מצורפים"
|
276 |
|
277 |
-
|
278 |
-
#: gallery-plugin.php:
|
279 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
280 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
281 |
|
282 |
-
|
283 |
-
#: gallery-plugin.php:
|
284 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
285 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
286 |
|
287 |
-
|
288 |
-
#: gallery-plugin.php:
|
289 |
msgid "Display Return link"
|
290 |
msgstr "הצג קישור חזרה"
|
291 |
|
292 |
-
|
293 |
-
#: gallery-plugin.php:
|
294 |
msgid "Display Return link in shortcode"
|
295 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
296 |
|
297 |
-
|
298 |
-
#: gallery-plugin.php:
|
299 |
msgid "Label for Return link"
|
300 |
msgstr "תוית לקישור חזרה"
|
301 |
|
302 |
-
|
303 |
-
#: gallery-plugin.php:
|
304 |
msgid "Save Changes"
|
305 |
msgstr "שמור שינויים"
|
306 |
|
307 |
-
|
308 |
-
#: gallery-plugin.php:
|
309 |
msgid "FAQ"
|
310 |
msgstr "שאלות ותשובות"
|
311 |
|
312 |
-
|
313 |
-
#: gallery-plugin.php:
|
314 |
msgid "Support"
|
315 |
msgstr "תמיכה"
|
316 |
|
317 |
-
|
318 |
-
#: gallery-plugin.php:
|
319 |
#: template/gallery-single-template.php:60
|
320 |
msgid "Sorry - nothing to found."
|
321 |
msgstr "מצטערים, אין מה למצוא."
|
322 |
|
323 |
-
|
324 |
#: template/gallery-single-template.php:82
|
325 |
msgid "Image "
|
326 |
msgstr "תמונה "
|
327 |
|
328 |
-
|
329 |
#: template/gallery-template.php:69
|
330 |
msgid "See photo »"
|
331 |
msgstr "ראו תמונה »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
+
#: gallery-plugin.php:665
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "הקבצים הבאים \"gallery-template.php\" ו \"gallery-single-template.php\" לא נמצאו במחיצת התבנית שלך. בבקשה העתק אותם מתיקיית `/wp-content/plugins/gallery-plugin/template/` אל מחיצת התבנית שלך לתפקוד תקין של הגלריה"
|
27 |
|
28 |
+
# @ gallery
|
29 |
#: gallery-plugin.php:79
|
30 |
#: gallery-plugin.php:89
|
31 |
msgid "Galleries"
|
32 |
msgstr "גלריות"
|
33 |
|
34 |
+
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
+
#: gallery-plugin.php:563
|
37 |
msgid "Gallery"
|
38 |
msgstr "גלריה"
|
39 |
|
40 |
+
# @ gallery
|
41 |
#: gallery-plugin.php:81
|
42 |
msgid "Add New"
|
43 |
msgstr "הוסף"
|
44 |
|
45 |
+
# @ gallery
|
46 |
#: gallery-plugin.php:82
|
47 |
msgid "Add New Gallery"
|
48 |
msgstr "הוסף גלריה חדשה"
|
49 |
|
50 |
+
# @ gallery
|
51 |
#: gallery-plugin.php:83
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "ערוך גלריה"
|
54 |
|
55 |
+
# @ gallery
|
56 |
#: gallery-plugin.php:84
|
57 |
msgid "New Gallery"
|
58 |
msgstr "גלריה חדשה"
|
59 |
|
60 |
+
# @ gallery
|
61 |
#: gallery-plugin.php:85
|
62 |
msgid "View Gallery"
|
63 |
msgstr "הצג גלריה"
|
64 |
|
65 |
+
# @ gallery
|
66 |
#: gallery-plugin.php:86
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "חיפוש בגלריות"
|
69 |
|
70 |
+
# @ gallery
|
71 |
#: gallery-plugin.php:87
|
72 |
msgid "No Galleries found"
|
73 |
msgstr "לא נמצאו גלריות"
|
74 |
|
75 |
+
# @ gallery
|
76 |
#: gallery-plugin.php:144
|
77 |
msgid "Upload File"
|
78 |
msgstr "העלה קובץ"
|
79 |
|
80 |
+
# @ gallery
|
81 |
#: gallery-plugin.php:145
|
82 |
msgid "Gallery Shortcode"
|
83 |
msgstr "קיצור קוד גלריה"
|
84 |
|
85 |
+
# @ gallery
|
86 |
#: gallery-plugin.php:159
|
87 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
88 |
msgstr "אין הרשאת כתיבה אל הספריה הזמנית של הגלריה (gallery-plugin/upload/files) שרת שלך. אנא השתמש בהעלאת התמונות של וורדפרס כדי להעלות תמונות (מדיה > ספריה)"
|
89 |
|
90 |
+
# @ gallery
|
91 |
#: gallery-plugin.php:163
|
92 |
msgid "Choose an image to upload:"
|
93 |
msgstr "בחר תמונה להעלאה:"
|
94 |
|
95 |
+
# @ gallery
|
96 |
#: gallery-plugin.php:168
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "בבקשה אפשר לג'אווה-סקריפט להתשמש בטוען התמונות."
|
99 |
|
100 |
+
# @ gallery
|
101 |
+
#: gallery-plugin.php:233
|
102 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
103 |
msgstr "אתה יכול להעלות את הגלריה הבודדת בבגוף הדף או הפוסט על ידי הוספת קיצור הקוד בתוכן"
|
104 |
|
105 |
+
# @ gallery
|
106 |
+
#: gallery-plugin.php:381
|
107 |
msgid "Title"
|
108 |
msgstr "כותרת"
|
109 |
|
110 |
+
# @ gallery
|
111 |
+
#: gallery-plugin.php:382
|
112 |
msgid "Author"
|
113 |
msgstr "מחבר"
|
114 |
|
115 |
+
# @ gallery
|
116 |
+
#: gallery-plugin.php:383
|
117 |
msgid "Photo's"
|
118 |
msgstr "של התמונה"
|
119 |
|
120 |
+
# @ gallery
|
121 |
+
#: gallery-plugin.php:384
|
122 |
msgid "Public"
|
123 |
msgstr "ציבורי"
|
124 |
|
125 |
+
# @ gallery
|
126 |
+
#: gallery-plugin.php:385
|
127 |
msgid "Date"
|
128 |
msgstr "תאריך"
|
129 |
|
130 |
+
# @ gallery
|
131 |
+
#: gallery-plugin.php:532
|
132 |
msgid "Activated plugins"
|
133 |
msgstr "תוספים פעילים"
|
134 |
|
135 |
+
# @ gallery
|
|
|
136 |
#: gallery-plugin.php:534
|
137 |
#: gallery-plugin.php:542
|
138 |
+
#: gallery-plugin.php:550
|
139 |
msgid "Read more"
|
140 |
msgstr "קרא עוד"
|
141 |
|
142 |
+
# @ gallery
|
143 |
+
#: gallery-plugin.php:534
|
144 |
+
#: gallery-plugin.php:765
|
145 |
+
#: gallery-plugin.php:780
|
146 |
msgid "Settings"
|
147 |
msgstr "הגדרות"
|
148 |
|
149 |
+
# @ gallery
|
150 |
+
#: gallery-plugin.php:540
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "תוספים מותקנים"
|
153 |
|
154 |
+
# @ gallery
|
155 |
+
#: gallery-plugin.php:548
|
156 |
msgid "Recommended plugins"
|
157 |
msgstr "תוספים מומלצים"
|
158 |
|
159 |
+
# @ gallery
|
160 |
+
#: gallery-plugin.php:550
|
161 |
msgid "Download"
|
162 |
msgstr "הורד"
|
163 |
|
164 |
+
# @ default
|
165 |
+
#: gallery-plugin.php:550
|
166 |
#, php-format
|
167 |
msgid "Install %s"
|
168 |
msgstr "התקן %s"
|
169 |
|
170 |
+
# @ gallery
|
171 |
+
#: gallery-plugin.php:550
|
172 |
msgid "Install now from wordpress.org"
|
173 |
msgstr "הורד כעת מ wordpress.org"
|
174 |
|
175 |
+
# @ gallery
|
176 |
+
#: gallery-plugin.php:552
|
177 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
178 |
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
179 |
|
180 |
+
# @ gallery
|
181 |
+
#: gallery-plugin.php:658
|
182 |
msgid "Options saved."
|
183 |
msgstr "האפשרויות נשמרו."
|
184 |
|
185 |
+
# @ gallery
|
186 |
+
#: gallery-plugin.php:672
|
187 |
msgid "Gallery Options"
|
188 |
msgstr "אפשרויות גלריה"
|
189 |
|
190 |
+
# @ gallery
|
191 |
+
#: gallery-plugin.php:675
|
192 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
193 |
msgstr "אם אתה רוצה להוסיף גלריה בודדת לדף או לפוסט שלך, פשוט העתק והדבק את קיצור הקוד הזה בתוך תוכן הפוסט או הדף שלך:"
|
194 |
|
195 |
+
# @ gallery
|
196 |
+
#: gallery-plugin.php:679
|
197 |
msgid "The size of the cover album for gallery"
|
198 |
msgstr "גודל הכריכה של האלבום של הגלריה"
|
199 |
|
200 |
+
# @ gallery
|
|
|
201 |
#: gallery-plugin.php:681
|
202 |
+
#: gallery-plugin.php:689
|
203 |
msgid "Image size name"
|
204 |
msgstr "שם גודל תמונה"
|
205 |
|
206 |
+
# @ gallery
|
|
|
207 |
#: gallery-plugin.php:682
|
208 |
+
#: gallery-plugin.php:690
|
209 |
msgid "Width (in px)"
|
210 |
msgstr "רוחב (בפיקסלים)"
|
211 |
|
212 |
+
# @ gallery
|
|
|
213 |
#: gallery-plugin.php:683
|
214 |
+
#: gallery-plugin.php:691
|
215 |
msgid "Height (in px)"
|
216 |
msgstr "גובה (בפיקסלים)"
|
217 |
|
218 |
+
# @ gallery
|
219 |
+
#: gallery-plugin.php:687
|
220 |
msgid "Size for gallery image"
|
221 |
msgstr "גודל תמונת גלריה"
|
222 |
|
223 |
+
# @ gallery
|
224 |
+
#: gallery-plugin.php:695
|
225 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
226 |
msgstr "וורדפרס ייצור העתק של תמונה ממוזערת של הפוסט עם המידות שצוינו כאשר אתה מעלה תמונה חדשה."
|
227 |
|
228 |
+
# @ gallery
|
229 |
+
#: gallery-plugin.php:698
|
230 |
msgid "Count images in row"
|
231 |
msgstr "מספר תמונות בשורה"
|
232 |
|
233 |
+
# @ gallery
|
234 |
+
#: gallery-plugin.php:704
|
235 |
msgid "Start slideshow"
|
236 |
msgstr "התחל מצגת"
|
237 |
|
238 |
+
# @ gallery
|
239 |
+
#: gallery-plugin.php:710
|
240 |
msgid "Slideshow interval"
|
241 |
msgstr "מרווח מצגת"
|
242 |
|
243 |
+
# @ gallery
|
244 |
+
#: gallery-plugin.php:716
|
245 |
msgid "Attachments order by"
|
246 |
msgstr "סדר הקבצים המצורפים"
|
247 |
|
248 |
+
# @ gallery
|
249 |
+
#: gallery-plugin.php:718
|
250 |
msgid "attachment id"
|
251 |
msgstr "מזהה קובץ מצורף"
|
252 |
|
253 |
+
# @ gallery
|
254 |
+
#: gallery-plugin.php:719
|
255 |
msgid "attachment title"
|
256 |
msgstr "כותרת קובץ מצורף"
|
257 |
|
258 |
+
# @ gallery
|
259 |
+
#: gallery-plugin.php:720
|
260 |
msgid "date"
|
261 |
msgstr "תאריך"
|
262 |
|
263 |
+
# @ gallery
|
264 |
+
#: gallery-plugin.php:721
|
265 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
266 |
msgstr "סדר קבצים מצורפים (המספר השלם של השדות בהוספה \\ דיאלוג העלאת גלריית מדיה)"
|
267 |
|
268 |
+
# @ gallery
|
269 |
+
#: gallery-plugin.php:722
|
270 |
msgid "random"
|
271 |
msgstr "אקראי"
|
272 |
|
273 |
+
# @ gallery
|
274 |
+
#: gallery-plugin.php:726
|
275 |
msgid "Attachments order"
|
276 |
msgstr "סדר קבצים מצורפים"
|
277 |
|
278 |
+
# @ gallery
|
279 |
+
#: gallery-plugin.php:728
|
280 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
281 |
msgstr "סדר עולה (מן הערך הנמוך ביותר לערך הגבוה ביותר)"
|
282 |
|
283 |
+
# @ gallery
|
284 |
+
#: gallery-plugin.php:729
|
285 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
286 |
msgstr "סדר יורד (מן הערך הגבוה ביותר לערך הנמוך ביותר)"
|
287 |
|
288 |
+
# @ gallery
|
289 |
+
#: gallery-plugin.php:733
|
290 |
msgid "Display Return link"
|
291 |
msgstr "הצג קישור חזרה"
|
292 |
|
293 |
+
# @ gallery
|
294 |
+
#: gallery-plugin.php:739
|
295 |
msgid "Display Return link in shortcode"
|
296 |
msgstr "הצג קישור חזרה בקיצור הקוד"
|
297 |
|
298 |
+
# @ gallery
|
299 |
+
#: gallery-plugin.php:745
|
300 |
msgid "Label for Return link"
|
301 |
msgstr "תוית לקישור חזרה"
|
302 |
|
303 |
+
# @ default
|
304 |
+
#: gallery-plugin.php:753
|
305 |
msgid "Save Changes"
|
306 |
msgstr "שמור שינויים"
|
307 |
|
308 |
+
# @ gallery
|
309 |
+
#: gallery-plugin.php:766
|
310 |
msgid "FAQ"
|
311 |
msgstr "שאלות ותשובות"
|
312 |
|
313 |
+
# @ gallery
|
314 |
+
#: gallery-plugin.php:767
|
315 |
msgid "Support"
|
316 |
msgstr "תמיכה"
|
317 |
|
318 |
+
# @ gallery
|
319 |
+
#: gallery-plugin.php:878
|
320 |
#: template/gallery-single-template.php:60
|
321 |
msgid "Sorry - nothing to found."
|
322 |
msgstr "מצטערים, אין מה למצוא."
|
323 |
|
324 |
+
# @ gallery
|
325 |
#: template/gallery-single-template.php:82
|
326 |
msgid "Image "
|
327 |
msgstr "תמונה "
|
328 |
|
329 |
+
# @ gallery
|
330 |
#: template/gallery-template.php:69
|
331 |
msgid "See photo »"
|
332 |
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: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
@@ -82,184 +82,184 @@ msgstr "Nézőkép kiválasztása a feltöltéshez"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivált bővítmények"
|
112 |
|
113 |
-
#: gallery-plugin.php:526
|
114 |
#: gallery-plugin.php:534
|
115 |
#: gallery-plugin.php:542
|
|
|
116 |
msgid "Read more"
|
117 |
msgstr "Bővebben"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Az Album borítójának mérete a Galériában"
|
165 |
|
166 |
-
#: gallery-plugin.php:673
|
167 |
#: gallery-plugin.php:681
|
|
|
168 |
msgid "Image size name"
|
169 |
msgstr "Kép méret neve"
|
170 |
|
171 |
-
#: gallery-plugin.php:674
|
172 |
#: gallery-plugin.php:682
|
|
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szélesség (px-ben)"
|
175 |
|
176 |
-
#: gallery-plugin.php:675
|
177 |
#: gallery-plugin.php:683
|
|
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Magasság (px-ben)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Dátum"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Változások mentése"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "Gy.I.K."
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Támogatás"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
84 |
|
85 |
+
#: gallery-plugin.php:233
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:381
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
+
#: gallery-plugin.php:382
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
+
#: gallery-plugin.php:383
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
+
#: gallery-plugin.php:384
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
+
#: gallery-plugin.php:385
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
+
#: gallery-plugin.php:532
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivált bővítmények"
|
112 |
|
|
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
115 |
+
#: gallery-plugin.php:550
|
116 |
msgid "Read more"
|
117 |
msgstr "Bővebben"
|
118 |
|
119 |
+
#: gallery-plugin.php:534
|
120 |
+
#: gallery-plugin.php:765
|
121 |
+
#: gallery-plugin.php:780
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
+
#: gallery-plugin.php:540
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
+
#: gallery-plugin.php:548
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
+
#: gallery-plugin.php:550
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
+
#: gallery-plugin.php:550
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:550
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
+
#: gallery-plugin.php:552
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
149 |
|
150 |
+
#: gallery-plugin.php:658
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
+
#: gallery-plugin.php:672
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
+
#: gallery-plugin.php:675
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: gallery-plugin.php:679
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Az Album borítójának mérete a Galériában"
|
165 |
|
|
|
166 |
#: gallery-plugin.php:681
|
167 |
+
#: gallery-plugin.php:689
|
168 |
msgid "Image size name"
|
169 |
msgstr "Kép méret neve"
|
170 |
|
|
|
171 |
#: gallery-plugin.php:682
|
172 |
+
#: gallery-plugin.php:690
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szélesség (px-ben)"
|
175 |
|
|
|
176 |
#: gallery-plugin.php:683
|
177 |
+
#: gallery-plugin.php:691
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Magasság (px-ben)"
|
180 |
|
181 |
+
#: gallery-plugin.php:687
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
+
#: gallery-plugin.php:695
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
188 |
|
189 |
+
#: gallery-plugin.php:698
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
+
#: gallery-plugin.php:704
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:710
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:716
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:719
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:720
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Dátum"
|
217 |
|
218 |
+
#: gallery-plugin.php:721
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:726
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:728
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:729
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:733
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:739
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:745
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:753
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Változások mentése"
|
253 |
|
254 |
+
#: gallery-plugin.php:766
|
255 |
msgid "FAQ"
|
256 |
msgstr "Gy.I.K."
|
257 |
|
258 |
+
#: gallery-plugin.php:767
|
259 |
msgid "Support"
|
260 |
msgstr "Támogatás"
|
261 |
|
262 |
+
#: gallery-plugin.php:878
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
languages/gallery-it_IT.mo
CHANGED
Binary file
|
languages/gallery-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
@@ -80,183 +80,183 @@ msgstr "Sceli una immagine da caricare:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Per favore abilita JavaScript per usare il file uploader."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Puoi aggiungere una singola Galleria in una pagina o un post inserendo questo codice nel contenuto"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Titolo"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Autore"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Foto"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Pubblico"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Data"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Attivare plugin"
|
110 |
|
111 |
-
#: gallery-plugin.php:526
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
|
|
114 |
msgid "Read more"
|
115 |
msgstr "Leggi altro"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Impostazioni"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Plugin installati"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Plugin consigliati"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installа %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Installa ora da wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Opzioni salvate."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Opzioni gallerie"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
163 |
|
164 |
-
#: gallery-plugin.php:673
|
165 |
#: gallery-plugin.php:681
|
|
|
166 |
msgid "Image size name"
|
167 |
msgstr "Image size name"
|
168 |
|
169 |
-
#: gallery-plugin.php:674
|
170 |
#: gallery-plugin.php:682
|
|
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Larghezza in px"
|
173 |
|
174 |
-
#: gallery-plugin.php:675
|
175 |
#: gallery-plugin.php:683
|
|
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Altezza in px"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Grandezza per le immagini della galleria"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Conta immagini"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Avvia presentazione"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Intervallo presentazione"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Ordine di visualizzazione per"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "attachment id"
|
205 |
msgstr "Id di visualizzazione"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr "Titolo immagine"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Data"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr "Casuale"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Ordine di visualizzazione"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Mostra lin di ritorno"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Mostra il link di ritorno col codice"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Etichetta per il link di ritorno"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Salva cambiamenti"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Supporto"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Spiacente - non è stato trovato nulla."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara, alfonso <ferruggiarastefano@gmail.com, alfio@amgraphics.it>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "I seguenti files \"gallery-template.php\" e\"gallery-single-template.php\" non sono stai trovato nella directory del tema. Copiali dlla directory `/wp-content/plugins/gallery-plugin/template/`in quella del tema per far lavorare correttamente il plugin dell Galleria."
|
24 |
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Per favore abilita JavaScript per usare il file uploader."
|
82 |
|
83 |
+
#: gallery-plugin.php:233
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Puoi aggiungere una singola Galleria in una pagina o un post inserendo questo codice nel contenuto"
|
86 |
|
87 |
+
#: gallery-plugin.php:381
|
88 |
msgid "Title"
|
89 |
msgstr "Titolo"
|
90 |
|
91 |
+
#: gallery-plugin.php:382
|
92 |
msgid "Author"
|
93 |
msgstr "Autore"
|
94 |
|
95 |
+
#: gallery-plugin.php:383
|
96 |
msgid "Photo's"
|
97 |
msgstr "Foto"
|
98 |
|
99 |
+
#: gallery-plugin.php:384
|
100 |
msgid "Public"
|
101 |
msgstr "Pubblico"
|
102 |
|
103 |
+
#: gallery-plugin.php:385
|
104 |
msgid "Date"
|
105 |
msgstr "Data"
|
106 |
|
107 |
+
#: gallery-plugin.php:532
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Attivare plugin"
|
110 |
|
|
|
111 |
#: gallery-plugin.php:534
|
112 |
#: gallery-plugin.php:542
|
113 |
+
#: gallery-plugin.php:550
|
114 |
msgid "Read more"
|
115 |
msgstr "Leggi altro"
|
116 |
|
117 |
+
#: gallery-plugin.php:534
|
118 |
+
#: gallery-plugin.php:765
|
119 |
+
#: gallery-plugin.php:780
|
120 |
msgid "Settings"
|
121 |
msgstr "Impostazioni"
|
122 |
|
123 |
+
#: gallery-plugin.php:540
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Plugin installati"
|
126 |
|
127 |
+
#: gallery-plugin.php:548
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Plugin consigliati"
|
130 |
|
131 |
+
#: gallery-plugin.php:550
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
+
#: gallery-plugin.php:550
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installа %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:550
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Installa ora da wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:552
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
147 |
|
148 |
+
#: gallery-plugin.php:658
|
149 |
msgid "Options saved."
|
150 |
msgstr "Opzioni salvate."
|
151 |
|
152 |
+
#: gallery-plugin.php:672
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Opzioni gallerie"
|
155 |
|
156 |
+
#: gallery-plugin.php:675
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Se vuoi aggiungere una singola Galleria in una pagina o un post, copia questo codice e inseriscilo nel contenuto della pagina o del post"
|
159 |
|
160 |
+
#: gallery-plugin.php:679
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
163 |
|
|
|
164 |
#: gallery-plugin.php:681
|
165 |
+
#: gallery-plugin.php:689
|
166 |
msgid "Image size name"
|
167 |
msgstr "Image size name"
|
168 |
|
|
|
169 |
#: gallery-plugin.php:682
|
170 |
+
#: gallery-plugin.php:690
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Larghezza in px"
|
173 |
|
|
|
174 |
#: gallery-plugin.php:683
|
175 |
+
#: gallery-plugin.php:691
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Altezza in px"
|
178 |
|
179 |
+
#: gallery-plugin.php:687
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Grandezza per le immagini della galleria"
|
182 |
|
183 |
+
#: gallery-plugin.php:695
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
186 |
|
187 |
+
#: gallery-plugin.php:698
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Conta immagini"
|
190 |
|
191 |
+
#: gallery-plugin.php:704
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Avvia presentazione"
|
194 |
|
195 |
+
#: gallery-plugin.php:710
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Intervallo presentazione"
|
198 |
|
199 |
+
#: gallery-plugin.php:716
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Ordine di visualizzazione per"
|
202 |
|
203 |
+
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr "Id di visualizzazione"
|
206 |
|
207 |
+
#: gallery-plugin.php:719
|
208 |
msgid "attachment title"
|
209 |
msgstr "Titolo immagine"
|
210 |
|
211 |
+
#: gallery-plugin.php:720
|
212 |
msgid "date"
|
213 |
msgstr "Data"
|
214 |
|
215 |
+
#: gallery-plugin.php:721
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "Ordine di visualizzazione (dal numero attribuito nel box di dialogo di caricamento)"
|
218 |
|
219 |
+
#: gallery-plugin.php:722
|
220 |
msgid "random"
|
221 |
msgstr "Casuale"
|
222 |
|
223 |
+
#: gallery-plugin.php:726
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Ordine di visualizzazione"
|
226 |
|
227 |
+
#: gallery-plugin.php:728
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC(ordine ascendente dal più basso al più alto - 1, 2, 3; a, b, c,)"
|
230 |
|
231 |
+
#: gallery-plugin.php:729
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC(ordine discendente dal più alto al più basso - 3, 2, 1; c, b, a,)"
|
234 |
|
235 |
+
#: gallery-plugin.php:733
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Mostra lin di ritorno"
|
238 |
|
239 |
+
#: gallery-plugin.php:739
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Mostra il link di ritorno col codice"
|
242 |
|
243 |
+
#: gallery-plugin.php:745
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Etichetta per il link di ritorno"
|
246 |
|
247 |
+
#: gallery-plugin.php:753
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Salva cambiamenti"
|
250 |
|
251 |
+
#: gallery-plugin.php:766
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:767
|
256 |
msgid "Support"
|
257 |
msgstr "Supporto"
|
258 |
|
259 |
+
#: gallery-plugin.php:878
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Spiacente - non è stato trovato nulla."
|
languages/gallery-ka_GE.mo
CHANGED
Binary file
|
languages/gallery-ka_GE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
@@ -82,184 +82,184 @@ msgstr "აირჩიეთ სურათი ასატვირთად:
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "გააქტიურებული დანამატები:"
|
112 |
|
113 |
-
#: gallery-plugin.php:526
|
114 |
#: gallery-plugin.php:534
|
115 |
#: gallery-plugin.php:542
|
|
|
116 |
msgid "Read more"
|
117 |
msgstr "სრულად ნახვა"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
165 |
|
166 |
-
#: gallery-plugin.php:673
|
167 |
#: gallery-plugin.php:681
|
|
|
168 |
msgid "Image size name"
|
169 |
msgstr "ზომის სახელი"
|
170 |
|
171 |
-
#: gallery-plugin.php:674
|
172 |
#: gallery-plugin.php:682
|
|
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "სიგანე(პიქსელებში)"
|
175 |
|
176 |
-
#: gallery-plugin.php:675
|
177 |
#: gallery-plugin.php:683
|
|
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "სიმაღლე(პიქსელებში)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "თარიღი"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Save Changes"
|
252 |
msgstr "ცვლილებების შენახვა"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
+
#: gallery-plugin.php:233
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:381
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
+
#: gallery-plugin.php:382
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
+
#: gallery-plugin.php:383
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
+
#: gallery-plugin.php:384
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
+
#: gallery-plugin.php:385
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
+
#: gallery-plugin.php:532
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "გააქტიურებული დანამატები:"
|
112 |
|
|
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
115 |
+
#: gallery-plugin.php:550
|
116 |
msgid "Read more"
|
117 |
msgstr "სრულად ნახვა"
|
118 |
|
119 |
+
#: gallery-plugin.php:534
|
120 |
+
#: gallery-plugin.php:765
|
121 |
+
#: gallery-plugin.php:780
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
+
#: gallery-plugin.php:540
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
+
#: gallery-plugin.php:548
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
+
#: gallery-plugin.php:550
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
+
#: gallery-plugin.php:550
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:550
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
+
#: gallery-plugin.php:552
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
149 |
|
150 |
+
#: gallery-plugin.php:658
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
+
#: gallery-plugin.php:672
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
+
#: gallery-plugin.php:675
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: gallery-plugin.php:679
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
165 |
|
|
|
166 |
#: gallery-plugin.php:681
|
167 |
+
#: gallery-plugin.php:689
|
168 |
msgid "Image size name"
|
169 |
msgstr "ზომის სახელი"
|
170 |
|
|
|
171 |
#: gallery-plugin.php:682
|
172 |
+
#: gallery-plugin.php:690
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "სიგანე(პიქსელებში)"
|
175 |
|
|
|
176 |
#: gallery-plugin.php:683
|
177 |
+
#: gallery-plugin.php:691
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "სიმაღლე(პიქსელებში)"
|
180 |
|
181 |
+
#: gallery-plugin.php:687
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
+
#: gallery-plugin.php:695
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
188 |
|
189 |
+
#: gallery-plugin.php:698
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
+
#: gallery-plugin.php:704
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:710
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:716
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:719
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:720
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "თარიღი"
|
217 |
|
218 |
+
#: gallery-plugin.php:721
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:726
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:728
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:729
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:733
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:739
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:745
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:753
|
251 |
msgid "Save Changes"
|
252 |
msgstr "ცვლილებების შენახვა"
|
253 |
|
254 |
+
#: gallery-plugin.php:766
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:767
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:878
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
languages/gallery-nl_NL.mo
CHANGED
Binary file
|
languages/gallery-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
@@ -82,184 +82,184 @@ msgstr "Foto's uploaden: "
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Geactiveerde plugins"
|
112 |
|
113 |
-
#: gallery-plugin.php:526
|
114 |
#: gallery-plugin.php:534
|
115 |
#: gallery-plugin.php:542
|
|
|
116 |
msgid "Read more"
|
117 |
msgstr "Lees verder"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "De afmetingen voor de cover van het album"
|
165 |
|
166 |
-
#: gallery-plugin.php:673
|
167 |
#: gallery-plugin.php:681
|
|
|
168 |
msgid "Image size name"
|
169 |
msgstr "Afbeelding grootte"
|
170 |
|
171 |
-
#: gallery-plugin.php:674
|
172 |
#: gallery-plugin.php:682
|
|
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breedte (in px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:675
|
177 |
#: gallery-plugin.php:683
|
|
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hoogte (in px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Bewaar veranderingen"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Helaas - niets gevonden"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
84 |
|
85 |
+
#: gallery-plugin.php:233
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:381
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
+
#: gallery-plugin.php:382
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
+
#: gallery-plugin.php:383
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
+
#: gallery-plugin.php:384
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
+
#: gallery-plugin.php:385
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
+
#: gallery-plugin.php:532
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Geactiveerde plugins"
|
112 |
|
|
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
115 |
+
#: gallery-plugin.php:550
|
116 |
msgid "Read more"
|
117 |
msgstr "Lees verder"
|
118 |
|
119 |
+
#: gallery-plugin.php:534
|
120 |
+
#: gallery-plugin.php:765
|
121 |
+
#: gallery-plugin.php:780
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
+
#: gallery-plugin.php:540
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
+
#: gallery-plugin.php:548
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
+
#: gallery-plugin.php:550
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:550
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:550
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:552
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
149 |
|
150 |
+
#: gallery-plugin.php:658
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
+
#: gallery-plugin.php:672
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
+
#: gallery-plugin.php:675
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: gallery-plugin.php:679
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "De afmetingen voor de cover van het album"
|
165 |
|
|
|
166 |
#: gallery-plugin.php:681
|
167 |
+
#: gallery-plugin.php:689
|
168 |
msgid "Image size name"
|
169 |
msgstr "Afbeelding grootte"
|
170 |
|
|
|
171 |
#: gallery-plugin.php:682
|
172 |
+
#: gallery-plugin.php:690
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breedte (in px)"
|
175 |
|
|
|
176 |
#: gallery-plugin.php:683
|
177 |
+
#: gallery-plugin.php:691
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hoogte (in px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:687
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
+
#: gallery-plugin.php:695
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
188 |
|
189 |
+
#: gallery-plugin.php:698
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
+
#: gallery-plugin.php:704
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:710
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:716
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:719
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:720
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
+
#: gallery-plugin.php:721
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:726
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:728
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:729
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:733
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:739
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:745
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:753
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Bewaar veranderingen"
|
253 |
|
254 |
+
#: gallery-plugin.php:766
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:767
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:878
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Helaas - niets gevonden"
|
languages/gallery-pl_PL.mo
CHANGED
Binary file
|
languages/gallery-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
@@ -82,184 +82,184 @@ msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktywny plugin"
|
112 |
|
113 |
-
#: gallery-plugin.php:526
|
114 |
#: gallery-plugin.php:534
|
115 |
#: gallery-plugin.php:542
|
|
|
116 |
msgid "Read more"
|
117 |
msgstr "Czytaj dalej"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozmiar okładki albumu"
|
165 |
|
166 |
-
#: gallery-plugin.php:673
|
167 |
#: gallery-plugin.php:681
|
|
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nazwa rozmiaru obrazka"
|
170 |
|
171 |
-
#: gallery-plugin.php:674
|
172 |
#: gallery-plugin.php:682
|
|
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szerokość (w px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:675
|
177 |
#: gallery-plugin.php:683
|
|
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Wysokość (w px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Zapisz zmiany"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Wsparcie"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Przykro nam - nic nie znaleziono."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
84 |
|
85 |
+
#: gallery-plugin.php:233
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: gallery-plugin.php:381
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
+
#: gallery-plugin.php:382
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:383
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
+
#: gallery-plugin.php:384
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
+
#: gallery-plugin.php:385
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
+
#: gallery-plugin.php:532
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktywny plugin"
|
112 |
|
|
|
113 |
#: gallery-plugin.php:534
|
114 |
#: gallery-plugin.php:542
|
115 |
+
#: gallery-plugin.php:550
|
116 |
msgid "Read more"
|
117 |
msgstr "Czytaj dalej"
|
118 |
|
119 |
+
#: gallery-plugin.php:534
|
120 |
+
#: gallery-plugin.php:765
|
121 |
+
#: gallery-plugin.php:780
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
+
#: gallery-plugin.php:540
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
+
#: gallery-plugin.php:548
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
+
#: gallery-plugin.php:550
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
+
#: gallery-plugin.php:550
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:550
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:552
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
149 |
|
150 |
+
#: gallery-plugin.php:658
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
+
#: gallery-plugin.php:672
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
+
#: gallery-plugin.php:675
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: gallery-plugin.php:679
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozmiar okładki albumu"
|
165 |
|
|
|
166 |
#: gallery-plugin.php:681
|
167 |
+
#: gallery-plugin.php:689
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nazwa rozmiaru obrazka"
|
170 |
|
|
|
171 |
#: gallery-plugin.php:682
|
172 |
+
#: gallery-plugin.php:690
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szerokość (w px)"
|
175 |
|
|
|
176 |
#: gallery-plugin.php:683
|
177 |
+
#: gallery-plugin.php:691
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Wysokość (w px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:687
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
+
#: gallery-plugin.php:695
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
188 |
|
189 |
+
#: gallery-plugin.php:698
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
+
#: gallery-plugin.php:704
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:710
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:716
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:718
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:719
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:720
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
+
#: gallery-plugin.php:721
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:722
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:726
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:728
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:729
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:733
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:739
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:745
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:753
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Zapisz zmiany"
|
253 |
|
254 |
+
#: gallery-plugin.php:766
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:767
|
259 |
msgid "Support"
|
260 |
msgstr "Wsparcie"
|
261 |
|
262 |
+
#: gallery-plugin.php:878
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Przykro nam - nic nie znaleziono."
|
languages/gallery-pt_BR.mo
CHANGED
Binary file
|
languages/gallery-pt_BR.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -18,315 +19,315 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
|
22 |
#: gallery-plugin.php:55
|
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 |
|
27 |
-
|
28 |
#: gallery-plugin.php:79
|
29 |
#: gallery-plugin.php:89
|
30 |
msgid "Galleries"
|
31 |
msgstr "Galerias"
|
32 |
|
33 |
-
|
34 |
#: gallery-plugin.php:80
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Gallery"
|
37 |
msgstr "Galeria"
|
38 |
|
39 |
-
|
40 |
#: gallery-plugin.php:81
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar Nova"
|
43 |
|
44 |
-
|
45 |
#: gallery-plugin.php:82
|
46 |
msgid "Add New Gallery"
|
47 |
msgstr "Adicionar Nova Galeria"
|
48 |
|
49 |
-
|
50 |
#: gallery-plugin.php:83
|
51 |
msgid "Edit Gallery"
|
52 |
msgstr "Editar Galeria"
|
53 |
|
54 |
-
|
55 |
#: gallery-plugin.php:84
|
56 |
msgid "New Gallery"
|
57 |
msgstr "Nova Galeria"
|
58 |
|
59 |
-
|
60 |
#: gallery-plugin.php:85
|
61 |
msgid "View Gallery"
|
62 |
msgstr "Ver Galeria"
|
63 |
|
64 |
-
|
65 |
#: gallery-plugin.php:86
|
66 |
msgid "Search Galleries"
|
67 |
msgstr "Pesquisar Galerias"
|
68 |
|
69 |
-
|
70 |
#: gallery-plugin.php:87
|
71 |
msgid "No Galleries found"
|
72 |
msgstr "Nenhuma Galeria Encontrada"
|
73 |
|
74 |
-
|
75 |
#: gallery-plugin.php:144
|
76 |
msgid "Upload File"
|
77 |
msgstr "Enviar Arquivo"
|
78 |
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
80 |
#: gallery-plugin.php:159
|
81 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
82 |
msgstr "O diretório temporário da Galeria (gallery-plugin/upload/files) não pode ser gravado pelo seu servidor web. Por favor, use o diretório padrão de imagens do WP (media library)"
|
83 |
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
85 |
#: gallery-plugin.php:168
|
86 |
msgid "Please enable JavaScript to use the file uploader."
|
87 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
88 |
|
89 |
-
|
90 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
91 |
msgid "Title"
|
92 |
msgstr "Título"
|
93 |
|
94 |
-
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Author"
|
97 |
msgstr "Autor"
|
98 |
|
99 |
-
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Photo's"
|
102 |
msgstr "Fotos"
|
103 |
|
104 |
-
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Public"
|
107 |
msgstr "Público"
|
108 |
|
109 |
-
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Date"
|
112 |
msgstr "Data"
|
113 |
|
114 |
-
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Activated plugins"
|
117 |
msgstr "Plugins ativados"
|
118 |
|
119 |
-
|
120 |
-
#: gallery-plugin.php:526
|
121 |
#: gallery-plugin.php:534
|
122 |
#: gallery-plugin.php:542
|
|
|
123 |
msgid "Read more"
|
124 |
msgstr "Leia mais"
|
125 |
|
126 |
-
|
127 |
-
#: gallery-plugin.php:
|
128 |
-
#: gallery-plugin.php:
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Settings"
|
131 |
msgstr "Configurações"
|
132 |
|
133 |
-
|
134 |
-
#: gallery-plugin.php:
|
135 |
msgid "Installed plugins"
|
136 |
msgstr "Plugins instalados"
|
137 |
|
138 |
-
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Recommended plugins"
|
141 |
msgstr "Plugins recomendados"
|
142 |
|
143 |
-
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Download"
|
146 |
msgstr "Download"
|
147 |
|
148 |
-
|
149 |
-
#: gallery-plugin.php:
|
150 |
#, php-format
|
151 |
msgid "Install %s"
|
152 |
msgstr "Instalar %s"
|
153 |
|
154 |
-
|
155 |
-
#: gallery-plugin.php:
|
156 |
msgid "Install now from wordpress.org"
|
157 |
msgstr "Instale agora via wordpres.org"
|
158 |
|
159 |
-
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
162 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
163 |
|
164 |
-
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Options saved."
|
167 |
msgstr "Opções salvas."
|
168 |
|
169 |
-
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Gallery Options"
|
172 |
msgstr "Opções da Galeria"
|
173 |
|
174 |
-
|
175 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
176 |
msgid "The size of the cover album for gallery"
|
177 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
178 |
|
179 |
-
|
180 |
-
#: gallery-plugin.php:673
|
181 |
#: gallery-plugin.php:681
|
|
|
182 |
msgid "Image size name"
|
183 |
msgstr "Nome do tamanho"
|
184 |
|
185 |
-
|
186 |
-
#: gallery-plugin.php:674
|
187 |
#: gallery-plugin.php:682
|
|
|
188 |
msgid "Width (in px)"
|
189 |
msgstr "Largura (em px)"
|
190 |
|
191 |
-
|
192 |
-
#: gallery-plugin.php:675
|
193 |
#: gallery-plugin.php:683
|
|
|
194 |
msgid "Height (in px)"
|
195 |
msgstr "Altura (em px)"
|
196 |
|
197 |
-
|
198 |
-
#: gallery-plugin.php:
|
199 |
msgid "Size for gallery image"
|
200 |
msgstr "Tamanho da imagem da galeria"
|
201 |
|
202 |
-
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
205 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
206 |
|
207 |
-
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "Count images in row"
|
210 |
msgstr "Quantidade de imagens por linha"
|
211 |
|
212 |
-
|
213 |
-
#: gallery-plugin.php:
|
214 |
msgid "Start slideshow"
|
215 |
msgstr "Iniciar Apresentação de Slides"
|
216 |
|
217 |
-
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "Slideshow interval"
|
220 |
msgstr "Intervalo de tempo entre cada Slide"
|
221 |
|
222 |
-
|
223 |
-
#: gallery-plugin.php:
|
224 |
-
msgid "Save Changes"
|
225 |
-
msgstr "Salvar Alterações"
|
226 |
-
|
227 |
-
#@ gallery
|
228 |
-
#: gallery-plugin.php:757
|
229 |
-
msgid "FAQ"
|
230 |
-
msgstr "FAQ"
|
231 |
-
|
232 |
-
#@ gallery
|
233 |
-
#: gallery-plugin.php:758
|
234 |
-
msgid "Support"
|
235 |
-
msgstr "Suporte"
|
236 |
-
|
237 |
-
#@ gallery
|
238 |
-
#: gallery-plugin.php:869
|
239 |
-
#: template/gallery-single-template.php:60
|
240 |
-
msgid "Sorry - nothing to found."
|
241 |
-
msgstr "Desculpe - nada foi encontrado."
|
242 |
-
|
243 |
-
#@ gallery
|
244 |
-
#: template/gallery-template.php:69
|
245 |
-
msgid "See photo »"
|
246 |
-
msgstr "Ver foto »"
|
247 |
-
|
248 |
-
#@ gallery
|
249 |
-
#: gallery-plugin.php:145
|
250 |
-
msgid "Gallery Shortcode"
|
251 |
-
msgstr "Shortcode da Galeria"
|
252 |
-
|
253 |
-
#@ gallery
|
254 |
-
#: gallery-plugin.php:163
|
255 |
-
msgid "Choose an image to upload:"
|
256 |
-
msgstr "Escolha uma imagem para enviar:"
|
257 |
-
|
258 |
-
#@ gallery
|
259 |
-
#: gallery-plugin.php:232
|
260 |
-
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
261 |
-
msgstr "Você pode adicionar a Galeria Única na página ou post inserindo este shortcode no conteúdo"
|
262 |
-
|
263 |
-
#@ gallery
|
264 |
-
#: gallery-plugin.php:667
|
265 |
-
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
266 |
-
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:"
|
267 |
-
|
268 |
-
#@ gallery
|
269 |
-
#: gallery-plugin.php:708
|
270 |
msgid "Attachments order by"
|
271 |
msgstr "Ordem dos anexos por"
|
272 |
|
273 |
-
|
274 |
-
#: gallery-plugin.php:
|
275 |
msgid "attachment id"
|
276 |
msgstr "id do anexo"
|
277 |
|
278 |
-
|
279 |
-
#: gallery-plugin.php:
|
280 |
msgid "attachment title"
|
281 |
msgstr "título do anexo"
|
282 |
|
283 |
-
|
284 |
-
#: gallery-plugin.php:
|
285 |
msgid "date"
|
286 |
msgstr "data"
|
287 |
|
288 |
-
|
289 |
-
#: gallery-plugin.php:
|
290 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
291 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
292 |
|
293 |
-
|
294 |
-
#: gallery-plugin.php:
|
295 |
msgid "random"
|
296 |
msgstr "aleatório"
|
297 |
|
298 |
-
|
299 |
-
#: gallery-plugin.php:
|
300 |
msgid "Attachments order"
|
301 |
msgstr "ordem dos Anexos"
|
302 |
|
303 |
-
|
304 |
-
#: gallery-plugin.php:
|
305 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
306 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
307 |
|
308 |
-
|
309 |
-
#: gallery-plugin.php:
|
310 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
311 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
312 |
|
313 |
-
|
314 |
-
#: gallery-plugin.php:
|
315 |
msgid "Display Return link"
|
316 |
msgstr "Mostrar link de Retorno"
|
317 |
|
318 |
-
|
319 |
-
#: gallery-plugin.php:
|
320 |
msgid "Display Return link in shortcode"
|
321 |
msgstr "Mostrar link de Retorno no shortcode"
|
322 |
|
323 |
-
|
324 |
-
#: gallery-plugin.php:
|
325 |
msgid "Label for Return link"
|
326 |
msgstr "Etiqueta para o link de Retorno"
|
327 |
|
328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
#: template/gallery-single-template.php:82
|
330 |
msgid "Image "
|
331 |
msgstr "Imagem "
|
332 |
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Gallery Plugin v3.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:41+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: DJIO | www.djio.com.br <wordpress@djio.com.br>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
# @ gallery
|
23 |
#: gallery-plugin.php:55
|
24 |
+
#: gallery-plugin.php:665
|
25 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
26 |
msgstr "Os seguintes arquivos \"gallery-template.php\" e \"gallery-single-template.php\" não foram encontrados no diretório do seu tema. Por favor, copie-os a partir do diretório `/wp-content/plugins/gallery-plugin/template/` para o diretório do seu tema para que o plugin Galeria funcione corretamente"
|
27 |
|
28 |
+
# @ gallery
|
29 |
#: gallery-plugin.php:79
|
30 |
#: gallery-plugin.php:89
|
31 |
msgid "Galleries"
|
32 |
msgstr "Galerias"
|
33 |
|
34 |
+
# @ gallery
|
35 |
#: gallery-plugin.php:80
|
36 |
+
#: gallery-plugin.php:563
|
37 |
msgid "Gallery"
|
38 |
msgstr "Galeria"
|
39 |
|
40 |
+
# @ gallery
|
41 |
#: gallery-plugin.php:81
|
42 |
msgid "Add New"
|
43 |
msgstr "Adicionar Nova"
|
44 |
|
45 |
+
# @ gallery
|
46 |
#: gallery-plugin.php:82
|
47 |
msgid "Add New Gallery"
|
48 |
msgstr "Adicionar Nova Galeria"
|
49 |
|
50 |
+
# @ gallery
|
51 |
#: gallery-plugin.php:83
|
52 |
msgid "Edit Gallery"
|
53 |
msgstr "Editar Galeria"
|
54 |
|
55 |
+
# @ gallery
|
56 |
#: gallery-plugin.php:84
|
57 |
msgid "New Gallery"
|
58 |
msgstr "Nova Galeria"
|
59 |
|
60 |
+
# @ gallery
|
61 |
#: gallery-plugin.php:85
|
62 |
msgid "View Gallery"
|
63 |
msgstr "Ver Galeria"
|
64 |
|
65 |
+
# @ gallery
|
66 |
#: gallery-plugin.php:86
|
67 |
msgid "Search Galleries"
|
68 |
msgstr "Pesquisar Galerias"
|
69 |
|
70 |
+
# @ gallery
|
71 |
#: gallery-plugin.php:87
|
72 |
msgid "No Galleries found"
|
73 |
msgstr "Nenhuma Galeria Encontrada"
|
74 |
|
75 |
+
# @ gallery
|
76 |
#: gallery-plugin.php:144
|
77 |
msgid "Upload File"
|
78 |
msgstr "Enviar Arquivo"
|
79 |
|
80 |
+
# @ gallery
|
81 |
+
#: gallery-plugin.php:145
|
82 |
+
msgid "Gallery Shortcode"
|
83 |
+
msgstr "Shortcode da Galeria"
|
84 |
+
|
85 |
+
# @ gallery
|
86 |
#: gallery-plugin.php:159
|
87 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
88 |
msgstr "O diretório temporário da Galeria (gallery-plugin/upload/files) não pode ser gravado pelo seu servidor web. Por favor, use o diretório padrão de imagens do WP (media library)"
|
89 |
|
90 |
+
# @ gallery
|
91 |
+
#: gallery-plugin.php:163
|
92 |
+
msgid "Choose an image to upload:"
|
93 |
+
msgstr "Escolha uma imagem para enviar:"
|
94 |
+
|
95 |
+
# @ gallery
|
96 |
#: gallery-plugin.php:168
|
97 |
msgid "Please enable JavaScript to use the file uploader."
|
98 |
msgstr "Favor havilitar o Javascript para usar o envio de arquivos."
|
99 |
|
100 |
+
# @ gallery
|
101 |
+
#: gallery-plugin.php:233
|
102 |
+
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
103 |
+
msgstr "Você pode adicionar a Galeria Única na página ou post inserindo este shortcode no conteúdo"
|
104 |
+
|
105 |
+
# @ gallery
|
106 |
+
#: gallery-plugin.php:381
|
107 |
msgid "Title"
|
108 |
msgstr "Título"
|
109 |
|
110 |
+
# @ gallery
|
111 |
+
#: gallery-plugin.php:382
|
112 |
msgid "Author"
|
113 |
msgstr "Autor"
|
114 |
|
115 |
+
# @ gallery
|
116 |
+
#: gallery-plugin.php:383
|
117 |
msgid "Photo's"
|
118 |
msgstr "Fotos"
|
119 |
|
120 |
+
# @ gallery
|
121 |
+
#: gallery-plugin.php:384
|
122 |
msgid "Public"
|
123 |
msgstr "Público"
|
124 |
|
125 |
+
# @ gallery
|
126 |
+
#: gallery-plugin.php:385
|
127 |
msgid "Date"
|
128 |
msgstr "Data"
|
129 |
|
130 |
+
# @ gallery
|
131 |
+
#: gallery-plugin.php:532
|
132 |
msgid "Activated plugins"
|
133 |
msgstr "Plugins ativados"
|
134 |
|
135 |
+
# @ gallery
|
|
|
136 |
#: gallery-plugin.php:534
|
137 |
#: gallery-plugin.php:542
|
138 |
+
#: gallery-plugin.php:550
|
139 |
msgid "Read more"
|
140 |
msgstr "Leia mais"
|
141 |
|
142 |
+
# @ gallery
|
143 |
+
#: gallery-plugin.php:534
|
144 |
+
#: gallery-plugin.php:765
|
145 |
+
#: gallery-plugin.php:780
|
146 |
msgid "Settings"
|
147 |
msgstr "Configurações"
|
148 |
|
149 |
+
# @ gallery
|
150 |
+
#: gallery-plugin.php:540
|
151 |
msgid "Installed plugins"
|
152 |
msgstr "Plugins instalados"
|
153 |
|
154 |
+
# @ gallery
|
155 |
+
#: gallery-plugin.php:548
|
156 |
msgid "Recommended plugins"
|
157 |
msgstr "Plugins recomendados"
|
158 |
|
159 |
+
# @ gallery
|
160 |
+
#: gallery-plugin.php:550
|
161 |
msgid "Download"
|
162 |
msgstr "Download"
|
163 |
|
164 |
+
# @ default
|
165 |
+
#: gallery-plugin.php:550
|
166 |
#, php-format
|
167 |
msgid "Install %s"
|
168 |
msgstr "Instalar %s"
|
169 |
|
170 |
+
# @ gallery
|
171 |
+
#: gallery-plugin.php:550
|
172 |
msgid "Install now from wordpress.org"
|
173 |
msgstr "Instale agora via wordpres.org"
|
174 |
|
175 |
+
# @ gallery
|
176 |
+
#: gallery-plugin.php:552
|
177 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
178 |
msgstr "Se você tiver dúvidas, favor entrar em contato com plugin@bestwebsoft.com ou preencha o formulário de contar em nosso website."
|
179 |
|
180 |
+
# @ gallery
|
181 |
+
#: gallery-plugin.php:658
|
182 |
msgid "Options saved."
|
183 |
msgstr "Opções salvas."
|
184 |
|
185 |
+
# @ gallery
|
186 |
+
#: gallery-plugin.php:672
|
187 |
msgid "Gallery Options"
|
188 |
msgstr "Opções da Galeria"
|
189 |
|
190 |
+
# @ gallery
|
191 |
+
#: gallery-plugin.php:675
|
192 |
+
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
193 |
+
msgstr "Se você quiser adicionar uma Galeria Única em sua página ou post, basta copiar e colocar este shortcode no conteúde de sua página ou post:"
|
194 |
+
|
195 |
+
# @ gallery
|
196 |
+
#: gallery-plugin.php:679
|
197 |
msgid "The size of the cover album for gallery"
|
198 |
msgstr "Tamanho da imagem de capa do álbum para as galerias"
|
199 |
|
200 |
+
# @ gallery
|
|
|
201 |
#: gallery-plugin.php:681
|
202 |
+
#: gallery-plugin.php:689
|
203 |
msgid "Image size name"
|
204 |
msgstr "Nome do tamanho"
|
205 |
|
206 |
+
# @ gallery
|
|
|
207 |
#: gallery-plugin.php:682
|
208 |
+
#: gallery-plugin.php:690
|
209 |
msgid "Width (in px)"
|
210 |
msgstr "Largura (em px)"
|
211 |
|
212 |
+
# @ gallery
|
|
|
213 |
#: gallery-plugin.php:683
|
214 |
+
#: gallery-plugin.php:691
|
215 |
msgid "Height (in px)"
|
216 |
msgstr "Altura (em px)"
|
217 |
|
218 |
+
# @ gallery
|
219 |
+
#: gallery-plugin.php:687
|
220 |
msgid "Size for gallery image"
|
221 |
msgstr "Tamanho da imagem da galeria"
|
222 |
|
223 |
+
# @ gallery
|
224 |
+
#: gallery-plugin.php:695
|
225 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
226 |
msgstr "WordPress irá criar uma cópia da imagem destacada com os tamanhos especificados quando você enviar uma nova foto."
|
227 |
|
228 |
+
# @ gallery
|
229 |
+
#: gallery-plugin.php:698
|
230 |
msgid "Count images in row"
|
231 |
msgstr "Quantidade de imagens por linha"
|
232 |
|
233 |
+
# @ gallery
|
234 |
+
#: gallery-plugin.php:704
|
235 |
msgid "Start slideshow"
|
236 |
msgstr "Iniciar Apresentação de Slides"
|
237 |
|
238 |
+
# @ gallery
|
239 |
+
#: gallery-plugin.php:710
|
240 |
msgid "Slideshow interval"
|
241 |
msgstr "Intervalo de tempo entre cada Slide"
|
242 |
|
243 |
+
# @ gallery
|
244 |
+
#: gallery-plugin.php:716
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Attachments order by"
|
246 |
msgstr "Ordem dos anexos por"
|
247 |
|
248 |
+
# @ gallery
|
249 |
+
#: gallery-plugin.php:718
|
250 |
msgid "attachment id"
|
251 |
msgstr "id do anexo"
|
252 |
|
253 |
+
# @ gallery
|
254 |
+
#: gallery-plugin.php:719
|
255 |
msgid "attachment title"
|
256 |
msgstr "título do anexo"
|
257 |
|
258 |
+
# @ gallery
|
259 |
+
#: gallery-plugin.php:720
|
260 |
msgid "date"
|
261 |
msgstr "data"
|
262 |
|
263 |
+
# @ gallery
|
264 |
+
#: gallery-plugin.php:721
|
265 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
266 |
msgstr "ordem de anexos (os campos com número inteiro na caixa de diálogo Inserir / Upload na Galeria de Mídia)"
|
267 |
|
268 |
+
# @ gallery
|
269 |
+
#: gallery-plugin.php:722
|
270 |
msgid "random"
|
271 |
msgstr "aleatório"
|
272 |
|
273 |
+
# @ gallery
|
274 |
+
#: gallery-plugin.php:726
|
275 |
msgid "Attachments order"
|
276 |
msgstr "ordem dos Anexos"
|
277 |
|
278 |
+
# @ gallery
|
279 |
+
#: gallery-plugin.php:728
|
280 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
281 |
msgstr "ASC (ordem crescente dos valores mais baixos para os mais altos - 1, 2, 3; a, b, c)"
|
282 |
|
283 |
+
# @ gallery
|
284 |
+
#: gallery-plugin.php:729
|
285 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
286 |
msgstr "DESC (ordem decrescente dos valores mais altos para os mais baixos - 3, 2, 1; c, b, a)"
|
287 |
|
288 |
+
# @ gallery
|
289 |
+
#: gallery-plugin.php:733
|
290 |
msgid "Display Return link"
|
291 |
msgstr "Mostrar link de Retorno"
|
292 |
|
293 |
+
# @ gallery
|
294 |
+
#: gallery-plugin.php:739
|
295 |
msgid "Display Return link in shortcode"
|
296 |
msgstr "Mostrar link de Retorno no shortcode"
|
297 |
|
298 |
+
# @ gallery
|
299 |
+
#: gallery-plugin.php:745
|
300 |
msgid "Label for Return link"
|
301 |
msgstr "Etiqueta para o link de Retorno"
|
302 |
|
303 |
+
# @ default
|
304 |
+
#: gallery-plugin.php:753
|
305 |
+
msgid "Save Changes"
|
306 |
+
msgstr "Salvar Alterações"
|
307 |
+
|
308 |
+
# @ gallery
|
309 |
+
#: gallery-plugin.php:766
|
310 |
+
msgid "FAQ"
|
311 |
+
msgstr "FAQ"
|
312 |
+
|
313 |
+
# @ gallery
|
314 |
+
#: gallery-plugin.php:767
|
315 |
+
msgid "Support"
|
316 |
+
msgstr "Suporte"
|
317 |
+
|
318 |
+
# @ gallery
|
319 |
+
#: gallery-plugin.php:878
|
320 |
+
#: template/gallery-single-template.php:60
|
321 |
+
msgid "Sorry - nothing to found."
|
322 |
+
msgstr "Desculpe - nada foi encontrado."
|
323 |
+
|
324 |
+
# @ gallery
|
325 |
#: template/gallery-single-template.php:82
|
326 |
msgid "Image "
|
327 |
msgstr "Imagem "
|
328 |
|
329 |
+
# @ gallery
|
330 |
+
#: template/gallery-template.php:69
|
331 |
+
msgid "See photo »"
|
332 |
+
msgstr "Ver foto »"
|
333 |
+
|
languages/gallery-ru_RU.mo
CHANGED
Binary file
|
languages/gallery-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
@@ -80,183 +80,183 @@ msgstr "Выбрать файлы для загрузки:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активированные плагины"
|
110 |
|
111 |
-
#: gallery-plugin.php:526
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
|
|
114 |
msgid "Read more"
|
115 |
msgstr "Подробнее..."
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Размер изображения для обложки альбома галереи"
|
163 |
|
164 |
-
#: gallery-plugin.php:673
|
165 |
#: gallery-plugin.php:681
|
|
|
166 |
msgid "Image size name"
|
167 |
msgstr "Название размера изображение"
|
168 |
|
169 |
-
#: gallery-plugin.php:674
|
170 |
#: gallery-plugin.php:682
|
|
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:675
|
175 |
#: gallery-plugin.php:683
|
|
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Высота (в px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Изображения сортируются по"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "attachment id"
|
205 |
msgstr "id изображения"
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr "названию изображения"
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "дате"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr "произвольно"
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Сортировать изображения"
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Отображать ссылку Вернуться"
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Текст для ссылки Вернуться"
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Save Changes"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Поддержка"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Извините, ничего не найдено."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:41+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:42+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr "Файлы \"gallery-template.php\" и \"gallery-single-template.php\" не найден в каталоге вашей темы. Пожалуйста, скопируйте их из каталога `/ wp-content/plugins/gallery-plugin/template /` в директорию вашей темы для корректной работы плагина Галерея"
|
24 |
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
+
#: gallery-plugin.php:233
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
86 |
|
87 |
+
#: gallery-plugin.php:381
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
+
#: gallery-plugin.php:382
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
+
#: gallery-plugin.php:383
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
+
#: gallery-plugin.php:384
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
+
#: gallery-plugin.php:385
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
+
#: gallery-plugin.php:532
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активированные плагины"
|
110 |
|
|
|
111 |
#: gallery-plugin.php:534
|
112 |
#: gallery-plugin.php:542
|
113 |
+
#: gallery-plugin.php:550
|
114 |
msgid "Read more"
|
115 |
msgstr "Подробнее..."
|
116 |
|
117 |
+
#: gallery-plugin.php:534
|
118 |
+
#: gallery-plugin.php:765
|
119 |
+
#: gallery-plugin.php:780
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
+
#: gallery-plugin.php:540
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
+
#: gallery-plugin.php:548
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
+
#: gallery-plugin.php:550
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
+
#: gallery-plugin.php:550
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:550
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:552
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
147 |
|
148 |
+
#: gallery-plugin.php:658
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
+
#: gallery-plugin.php:672
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
+
#: gallery-plugin.php:675
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
159 |
|
160 |
+
#: gallery-plugin.php:679
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Размер изображения для обложки альбома галереи"
|
163 |
|
|
|
164 |
#: gallery-plugin.php:681
|
165 |
+
#: gallery-plugin.php:689
|
166 |
msgid "Image size name"
|
167 |
msgstr "Название размера изображение"
|
168 |
|
|
|
169 |
#: gallery-plugin.php:682
|
170 |
+
#: gallery-plugin.php:690
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
|
|
174 |
#: gallery-plugin.php:683
|
175 |
+
#: gallery-plugin.php:691
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Высота (в px)"
|
178 |
|
179 |
+
#: gallery-plugin.php:687
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
+
#: gallery-plugin.php:695
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
186 |
|
187 |
+
#: gallery-plugin.php:698
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
+
#: gallery-plugin.php:704
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
+
#: gallery-plugin.php:710
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
+
#: gallery-plugin.php:716
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Изображения сортируются по"
|
202 |
|
203 |
+
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr "id изображения"
|
206 |
|
207 |
+
#: gallery-plugin.php:719
|
208 |
msgid "attachment title"
|
209 |
msgstr "названию изображения"
|
210 |
|
211 |
+
#: gallery-plugin.php:720
|
212 |
msgid "date"
|
213 |
msgstr "дате"
|
214 |
|
215 |
+
#: gallery-plugin.php:721
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
218 |
|
219 |
+
#: gallery-plugin.php:722
|
220 |
msgid "random"
|
221 |
msgstr "произвольно"
|
222 |
|
223 |
+
#: gallery-plugin.php:726
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Сортировать изображения"
|
226 |
|
227 |
+
#: gallery-plugin.php:728
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr "ASC (в порядке возрастания от наименьшего до наибольшего значения - 1, 2, 3, а, б, в)"
|
230 |
|
231 |
+
#: gallery-plugin.php:729
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr "DESC (по убыванию от самого высокого до самого низкого значения - 3, 2, 1, C, B)"
|
234 |
|
235 |
+
#: gallery-plugin.php:733
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Отображать ссылку Вернуться"
|
238 |
|
239 |
+
#: gallery-plugin.php:739
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
242 |
|
243 |
+
#: gallery-plugin.php:745
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Текст для ссылки Вернуться"
|
246 |
|
247 |
+
#: gallery-plugin.php:753
|
248 |
msgid "Save Changes"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:766
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:767
|
256 |
msgid "Support"
|
257 |
msgstr "Поддержка"
|
258 |
|
259 |
+
#: gallery-plugin.php:878
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Извините, ничего не найдено."
|
languages/gallery-uk.mo
CHANGED
Binary file
|
languages/gallery-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-07-
|
6 |
-
"PO-Revision-Date: 2012-07-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
-
#: gallery-plugin.php:
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
@@ -28,7 +28,7 @@ msgid "Galleries"
|
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
@@ -80,183 +80,183 @@ msgstr "Вибрати скріншот, щоб завантажити:"
|
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Назва"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Автор "
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото "
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Громадськості"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Дата "
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активоване плагіни"
|
110 |
|
111 |
-
#: gallery-plugin.php:526
|
112 |
#: gallery-plugin.php:534
|
113 |
#: gallery-plugin.php:542
|
|
|
114 |
msgid "Read more"
|
115 |
msgstr "Читати далі"
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Параметри"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Плагіни Рекомендовані"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Завантажити"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установка %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установити зараз від wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Параметри зберігаються."
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Параметри галереї"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Розмір обкладинки альбому для галереї"
|
163 |
|
164 |
-
#: gallery-plugin.php:673
|
165 |
#: gallery-plugin.php:681
|
|
|
166 |
msgid "Image size name"
|
167 |
msgstr "Ім'я розмір зображення"
|
168 |
|
169 |
-
#: gallery-plugin.php:674
|
170 |
#: gallery-plugin.php:682
|
|
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:675
|
175 |
#: gallery-plugin.php:683
|
|
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Висота (в px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Розмір зображення галерея"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Кількість зображень у рядку"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: gallery-plugin.php:
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: gallery-plugin.php:
|
212 |
msgid "date"
|
213 |
msgstr "Дата"
|
214 |
|
215 |
-
#: gallery-plugin.php:
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: gallery-plugin.php:
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: gallery-plugin.php:
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: gallery-plugin.php:
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: gallery-plugin.php:
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: gallery-plugin.php:
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: gallery-plugin.php:
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: gallery-plugin.php:
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: gallery-plugin.php:
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Зберегти зміни"
|
250 |
|
251 |
-
#: gallery-plugin.php:
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
-
#: gallery-plugin.php:
|
256 |
msgid "Support"
|
257 |
msgstr "Підтримка"
|
258 |
|
259 |
-
#: gallery-plugin.php:
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Вибачте - нічого не знайдено."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:42+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:42+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:665
|
22 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
23 |
msgstr ""
|
24 |
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:563
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
82 |
|
83 |
+
#: gallery-plugin.php:233
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: gallery-plugin.php:381
|
88 |
msgid "Title"
|
89 |
msgstr "Назва"
|
90 |
|
91 |
+
#: gallery-plugin.php:382
|
92 |
msgid "Author"
|
93 |
msgstr "Автор "
|
94 |
|
95 |
+
#: gallery-plugin.php:383
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото "
|
98 |
|
99 |
+
#: gallery-plugin.php:384
|
100 |
msgid "Public"
|
101 |
msgstr "Громадськості"
|
102 |
|
103 |
+
#: gallery-plugin.php:385
|
104 |
msgid "Date"
|
105 |
msgstr "Дата "
|
106 |
|
107 |
+
#: gallery-plugin.php:532
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активоване плагіни"
|
110 |
|
|
|
111 |
#: gallery-plugin.php:534
|
112 |
#: gallery-plugin.php:542
|
113 |
+
#: gallery-plugin.php:550
|
114 |
msgid "Read more"
|
115 |
msgstr "Читати далі"
|
116 |
|
117 |
+
#: gallery-plugin.php:534
|
118 |
+
#: gallery-plugin.php:765
|
119 |
+
#: gallery-plugin.php:780
|
120 |
msgid "Settings"
|
121 |
msgstr "Параметри"
|
122 |
|
123 |
+
#: gallery-plugin.php:540
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
+
#: gallery-plugin.php:548
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Плагіни Рекомендовані"
|
130 |
|
131 |
+
#: gallery-plugin.php:550
|
132 |
msgid "Download"
|
133 |
msgstr "Завантажити"
|
134 |
|
135 |
+
#: gallery-plugin.php:550
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установка %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:550
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установити зараз від wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:552
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
147 |
|
148 |
+
#: gallery-plugin.php:658
|
149 |
msgid "Options saved."
|
150 |
msgstr "Параметри зберігаються."
|
151 |
|
152 |
+
#: gallery-plugin.php:672
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Параметри галереї"
|
155 |
|
156 |
+
#: gallery-plugin.php:675
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: gallery-plugin.php:679
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Розмір обкладинки альбому для галереї"
|
163 |
|
|
|
164 |
#: gallery-plugin.php:681
|
165 |
+
#: gallery-plugin.php:689
|
166 |
msgid "Image size name"
|
167 |
msgstr "Ім'я розмір зображення"
|
168 |
|
|
|
169 |
#: gallery-plugin.php:682
|
170 |
+
#: gallery-plugin.php:690
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
|
|
174 |
#: gallery-plugin.php:683
|
175 |
+
#: gallery-plugin.php:691
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Висота (в px)"
|
178 |
|
179 |
+
#: gallery-plugin.php:687
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Розмір зображення галерея"
|
182 |
|
183 |
+
#: gallery-plugin.php:695
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
186 |
|
187 |
+
#: gallery-plugin.php:698
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Кількість зображень у рядку"
|
190 |
|
191 |
+
#: gallery-plugin.php:704
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:710
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:716
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:718
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:719
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:720
|
212 |
msgid "date"
|
213 |
msgstr "Дата"
|
214 |
|
215 |
+
#: gallery-plugin.php:721
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:722
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:726
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:728
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:729
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:733
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:739
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:745
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:753
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Зберегти зміни"
|
250 |
|
251 |
+
#: gallery-plugin.php:766
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:767
|
256 |
msgid "Support"
|
257 |
msgstr "Підтримка"
|
258 |
|
259 |
+
#: gallery-plugin.php:878
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Вибачте - нічого не знайдено."
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
|
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
@@ -115,6 +115,9 @@ Just setup a necessary order and click 'Save' button.
|
|
115 |
|
116 |
== Changelog ==
|
117 |
|
|
|
|
|
|
|
118 |
= V3.3 - 12.07.2012 =
|
119 |
* NEW : Brazilian Portuguese and Hebrew language files are added to the plugin.
|
120 |
* Update : We updated Italian language file.
|
@@ -208,6 +211,9 @@ Just setup a necessary order and click 'Save' button.
|
|
208 |
|
209 |
== Upgrade Notice ==
|
210 |
|
|
|
|
|
|
|
211 |
= V3.3 =
|
212 |
Brazilian Portuguese and Hebrew language files are added to the plugin. We updated Italian language file. We updated all functionality for wordpress 3.4.1.
|
213 |
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 3.4
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
115 |
|
116 |
== Changelog ==
|
117 |
|
118 |
+
= V3.4 - 24.07.2012 =
|
119 |
+
* Bugfix : Cross Site Request Forgery bug was fixed.
|
120 |
+
|
121 |
= V3.3 - 12.07.2012 =
|
122 |
* NEW : Brazilian Portuguese and Hebrew language files are added to the plugin.
|
123 |
* Update : We updated Italian language file.
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
214 |
+
= V3.4 =
|
215 |
+
Cross Site Request Forgery bug was fixed.
|
216 |
+
|
217 |
= V3.3 =
|
218 |
Brazilian Portuguese and Hebrew language files are added to the plugin. We updated Italian language file. We updated all functionality for wordpress 3.4.1.
|
219 |
|