Version Description
- 27.06.2012 =
- Update : We updated all functionality for wordpress 3.4.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1.2 to 3.2
- css/stylesheet.css +1 -0
- gallery-plugin.php +9 -3
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +74 -73
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +74 -73
- languages/gallery-es.mo +0 -0
- languages/gallery-es.po +74 -70
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +107 -101
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +74 -70
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +74 -70
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +74 -70
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +74 -70
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +74 -70
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +78 -74
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +75 -72
- readme.txt +7 -1
- template/gallery-single-template.php +1 -1
css/stylesheet.css
CHANGED
@@ -65,6 +65,7 @@ ul.gallery {
|
|
65 |
#content .gallery_box_single .gallery .gllr_image_block p {
|
66 |
border: 1px solid #BDBDBD;
|
67 |
margin:5px 6px 0 0;
|
|
|
68 |
}
|
69 |
|
70 |
.gllr_single_image_text {
|
65 |
#content .gallery_box_single .gallery .gllr_image_block p {
|
66 |
border: 1px solid #BDBDBD;
|
67 |
margin:5px 6px 0 0;
|
68 |
+
padding: 0;
|
69 |
}
|
70 |
|
71 |
.gllr_single_image_text {
|
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 |
*/
|
@@ -48,6 +48,9 @@ if( ! function_exists( 'gllr_admin_error' ) ) {
|
|
48 |
function gllr_admin_error() {
|
49 |
$post = isset( $_REQUEST['post'] ) ? $_REQUEST['post'] : "" ;
|
50 |
$post_type = isset( $_REQUEST['post_type'] ) ? $_REQUEST['post_type'] : "" ;
|
|
|
|
|
|
|
51 |
if ( ( 'gallery' == get_post_type( $post ) || 'gallery' == $post_type ) && ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) ) {
|
52 |
echo '<div class="error"><p><strong>'.__( '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', 'gallery' ).'</strong></p></div>';
|
53 |
}
|
@@ -307,7 +310,7 @@ if ( ! function_exists ( 'gllr_save_postdata' ) ) {
|
|
307 |
foreach ( $posts as $page ) {
|
308 |
if( isset( $_REQUEST['gllr_image_text'][$page->ID] ) ) {
|
309 |
$value = $_REQUEST['gllr_image_text'][$page->ID];
|
310 |
-
if( get_post_meta( $page->ID, $key, FALSE )
|
311 |
// Custom field has a value and this custom field exists in database
|
312 |
update_post_meta( $page->ID, $key, $value );
|
313 |
}
|
@@ -647,6 +650,9 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
647 |
$message = __( "Options saved.", 'gallery' );
|
648 |
}
|
649 |
|
|
|
|
|
|
|
650 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
651 |
$error .= __( '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', 'gallery' );
|
652 |
}
|
@@ -658,7 +664,7 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
|
|
658 |
<h2><?php _e('Gallery Options', 'gallery' ); ?></h2>
|
659 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['gllr_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
660 |
<div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
661 |
-
<p><?php _e( "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:", 'gallery' ); ?> [print_gllr id=
|
662 |
<form method="post" action="admin.php?page=gallery-plugin.php" id="gllr_form_image_size">
|
663 |
<table class="form-table">
|
664 |
<tr valign="top">
|
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.2
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
48 |
function gllr_admin_error() {
|
49 |
$post = isset( $_REQUEST['post'] ) ? $_REQUEST['post'] : "" ;
|
50 |
$post_type = isset( $_REQUEST['post_type'] ) ? $_REQUEST['post_type'] : "" ;
|
51 |
+
if ( ( 'gallery' == get_post_type( $post ) || 'gallery' == $post_type ) && ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) ) {
|
52 |
+
gllr_plugin_install();
|
53 |
+
}
|
54 |
if ( ( 'gallery' == get_post_type( $post ) || 'gallery' == $post_type ) && ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) ) {
|
55 |
echo '<div class="error"><p><strong>'.__( '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', 'gallery' ).'</strong></p></div>';
|
56 |
}
|
310 |
foreach ( $posts as $page ) {
|
311 |
if( isset( $_REQUEST['gllr_image_text'][$page->ID] ) ) {
|
312 |
$value = $_REQUEST['gllr_image_text'][$page->ID];
|
313 |
+
if( get_post_meta( $page->ID, $key, FALSE ) ) {
|
314 |
// Custom field has a value and this custom field exists in database
|
315 |
update_post_meta( $page->ID, $key, $value );
|
316 |
}
|
650 |
$message = __( "Options saved.", 'gallery' );
|
651 |
}
|
652 |
|
653 |
+
if ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
654 |
+
gllr_plugin_install();
|
655 |
+
}
|
656 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-template.php' ) || ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
657 |
$error .= __( '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', 'gallery' );
|
658 |
}
|
664 |
<h2><?php _e('Gallery Options', 'gallery' ); ?></h2>
|
665 |
<div class="updated fade" <?php if( ! isset( $_REQUEST['gllr_form_submit'] ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
666 |
<div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
667 |
+
<p><?php _e( "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:", 'gallery' ); ?> [print_gllr id=Your_gallery_post_id]</p>
|
668 |
<form method="post" action="admin.php?page=gallery-plugin.php" id="gllr_form_image_size">
|
669 |
<table class="form-table">
|
670 |
<tr valign="top">
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,254 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Vložit novou"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Vložit novou galerii"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Upravit galerii"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nová galerie"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobrazit galerii"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Hledat galerii"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nebyla nalezena žádná galerie"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Nahrát soubor"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
-
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Nastavení galerie"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
-
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Vyberte náhled pro nahrání:"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
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 "Název"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotky"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Veřejné"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivní pluginy"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Další informace"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Nastavení"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Nainstalované pluginy"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Doporučené pluginy"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Stáhnout"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instaluj %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instaluj ihned 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 "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."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Nastavení uložena."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Nastavení galerie"
|
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 "Rozměry náhledu alba v galerii"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Název rozměru"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Šířka (v px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Výška (v px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozměry náhledu obrázku v albu"
|
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 vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
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 "Uložit změny"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Podpora"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Omlouvám se - nic nenalezeno."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Zobrazit obsah galerie »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Vložit novou"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Vložit novou galerii"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Upravit galerii"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nová galerie"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobrazit galerii"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Hledat galerii"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nebyla nalezena žádná galerie"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Nahrát soubor"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
|
|
68 |
msgid "Gallery Shortcode"
|
69 |
msgstr "Nastavení galerie"
|
70 |
|
71 |
+
#: gallery-plugin.php:159
|
72 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: gallery-plugin.php:163
|
|
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Vyberte náhled pro nahrání:"
|
78 |
|
79 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
88 |
msgid "Title"
|
89 |
msgstr "Název"
|
90 |
|
91 |
+
#: gallery-plugin.php:374
|
92 |
msgid "Author"
|
93 |
msgstr "Autor"
|
94 |
|
95 |
+
#: gallery-plugin.php:375
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotky"
|
98 |
|
99 |
+
#: gallery-plugin.php:376
|
100 |
msgid "Public"
|
101 |
msgstr "Veřejné"
|
102 |
|
103 |
+
#: gallery-plugin.php:377
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
+
#: gallery-plugin.php:524
|
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:526
|
118 |
+
#: gallery-plugin.php:756
|
119 |
+
#: gallery-plugin.php:771
|
120 |
msgid "Settings"
|
121 |
msgstr "Nastavení"
|
122 |
|
123 |
+
#: gallery-plugin.php:532
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Nainstalované pluginy"
|
126 |
|
127 |
+
#: gallery-plugin.php:540
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Doporučené pluginy"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
msgid "Download"
|
133 |
msgstr "Stáhnout"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Instaluj %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:542
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Instaluj ihned z wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:544
|
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:650
|
149 |
msgid "Options saved."
|
150 |
msgstr "Nastavení uložena."
|
151 |
|
152 |
+
#: gallery-plugin.php:664
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Nastavení galerie"
|
155 |
|
156 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Rozměry náhledu obrázku v albu"
|
182 |
|
183 |
+
#: gallery-plugin.php:687
|
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:690
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
190 |
|
191 |
+
#: gallery-plugin.php:696
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:702
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:710
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:711
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:712
|
|
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
+
#: gallery-plugin.php:713
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:714
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:718
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:720
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:721
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:725
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:731
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:737
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:745
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Uložit změny"
|
250 |
|
251 |
+
#: gallery-plugin.php:757
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:758
|
256 |
msgid "Support"
|
257 |
msgstr "Podpora"
|
258 |
|
259 |
+
#: gallery-plugin.php:869
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Omlouvám se - nic nenalezeno."
|
263 |
|
264 |
+
#: template/gallery-single-template.php:82
|
265 |
+
msgid "Image "
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
#: template/gallery-template.php:69
|
269 |
msgid "See photo »"
|
270 |
msgstr "Zobrazit obsah galerie »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,254 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Hinzufügen"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Galerie hinzufügen"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galerie bearbeiten"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Neue Galerie"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galerie anzeigen"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galerie suchen"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Keine Galerien gefunden"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Datei hochladen"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
-
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Galerie Einstellungen"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
-
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Screenshot zum hochladen auswählen:"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
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 "Author"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotos"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Öffentlich"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivierte Plugins"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Mehr erfahren"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Einstellungen"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Installierte Plugins"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Benötigte 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 "Installiere %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Direkt von wordpress.org installieren"
|
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 "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Einstellungen gespeichert."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galerie Einstellungen"
|
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 "Die Größe der Bilder in der Albumansicht"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Name der Bilder"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breite (in px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Höhe (in px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Die Größe der Bilder in der Galerie"
|
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 will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Anzahl Bilder in der Reihe"
|
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 "Einstellungen speichern"
|
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 "Leider nichts gefunden."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Fotos anzeigen »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Hinzufügen"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Galerie hinzufügen"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galerie bearbeiten"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Neue Galerie"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galerie anzeigen"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galerie suchen"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Keine Galerien gefunden"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Datei hochladen"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
|
|
68 |
msgid "Gallery Shortcode"
|
69 |
msgstr "Galerie Einstellungen"
|
70 |
|
71 |
+
#: gallery-plugin.php:159
|
72 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: gallery-plugin.php:163
|
|
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Screenshot zum hochladen auswählen:"
|
78 |
|
79 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
88 |
msgid "Title"
|
89 |
msgstr "Titel"
|
90 |
|
91 |
+
#: gallery-plugin.php:374
|
92 |
msgid "Author"
|
93 |
msgstr "Author"
|
94 |
|
95 |
+
#: gallery-plugin.php:375
|
96 |
msgid "Photo's"
|
97 |
msgstr "Fotos"
|
98 |
|
99 |
+
#: gallery-plugin.php:376
|
100 |
msgid "Public"
|
101 |
msgstr "Öffentlich"
|
102 |
|
103 |
+
#: gallery-plugin.php:377
|
104 |
msgid "Date"
|
105 |
msgstr "Datum"
|
106 |
|
107 |
+
#: gallery-plugin.php:524
|
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:526
|
118 |
+
#: gallery-plugin.php:756
|
119 |
+
#: gallery-plugin.php:771
|
120 |
msgid "Settings"
|
121 |
msgstr "Einstellungen"
|
122 |
|
123 |
+
#: gallery-plugin.php:532
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Installierte Plugins"
|
126 |
|
127 |
+
#: gallery-plugin.php:540
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Benötigte Plugins"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Installiere %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:542
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Direkt von wordpress.org installieren"
|
143 |
|
144 |
+
#: gallery-plugin.php:544
|
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:650
|
149 |
msgid "Options saved."
|
150 |
msgstr "Einstellungen gespeichert."
|
151 |
|
152 |
+
#: gallery-plugin.php:664
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Galerie Einstellungen"
|
155 |
|
156 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Die Größe der Bilder in der Galerie"
|
182 |
|
183 |
+
#: gallery-plugin.php:687
|
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:690
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Anzahl Bilder in der Reihe"
|
190 |
|
191 |
+
#: gallery-plugin.php:696
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:702
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:710
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:711
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:712
|
|
|
212 |
msgid "date"
|
213 |
msgstr "Datum"
|
214 |
|
215 |
+
#: gallery-plugin.php:713
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:714
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:718
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:720
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:721
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:725
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:731
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:737
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:745
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Einstellungen speichern"
|
250 |
|
251 |
+
#: gallery-plugin.php:757
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:758
|
256 |
msgid "Support"
|
257 |
msgstr "Support"
|
258 |
|
259 |
+
#: gallery-plugin.php:869
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Leider nichts gefunden."
|
263 |
|
264 |
+
#: template/gallery-single-template.php:82
|
265 |
+
msgid "Image "
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
#: template/gallery-template.php:69
|
269 |
msgid "See photo »"
|
270 |
msgstr "Fotos anzeigen »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,252 +17,256 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Agrega Nueva"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Agregar Nueva Galería"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Editar Galería"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nueva Galería"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Ver Galería"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Buscar Galerías"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "No se encontraron Galerías"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Subir Archivo"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opciones de Galería"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Escoger una imagen para subir:"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Plugins Activados"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Leer más"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nombre del tamaño de la imagen"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Ancho (en px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Alto (en px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
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."
|
265 |
|
|
|
|
|
|
|
|
|
266 |
#: template/gallery-template.php:69
|
267 |
msgid "See photo »"
|
268 |
msgstr "Ver foto »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Agrega Nueva"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Agregar Nueva Galería"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Editar Galería"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nueva Galería"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Ver Galería"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Buscar Galerías"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "No se encontraron Galerías"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Subir Archivo"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opciones de Galería"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Escoger una imagen para subir:"
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
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:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
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:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
msgid "date"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: gallery-plugin.php:713
|
218 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: gallery-plugin.php:714
|
222 |
msgid "random"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: gallery-plugin.php:718
|
226 |
msgid "Attachments order"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: gallery-plugin.php:720
|
230 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: gallery-plugin.php:721
|
234 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: gallery-plugin.php:725
|
238 |
msgid "Display Return link"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: gallery-plugin.php:731
|
242 |
msgid "Display Return link in shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: gallery-plugin.php:737
|
246 |
msgid "Label for Return link"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: gallery-plugin.php:745
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar Cambios"
|
252 |
|
253 |
+
#: gallery-plugin.php:757
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ "
|
256 |
|
257 |
+
#: gallery-plugin.php:758
|
258 |
msgid "Support"
|
259 |
msgstr "Soporte"
|
260 |
|
261 |
+
#: gallery-plugin.php:869
|
262 |
#: template/gallery-single-template.php:60
|
263 |
msgid "Sorry - nothing to found."
|
264 |
msgstr "Lo sentimos - nada que encontrar."
|
265 |
|
266 |
+
#: template/gallery-single-template.php:82
|
267 |
+
msgid "Image "
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
#: template/gallery-template.php:69
|
271 |
msgid "See photo »"
|
272 |
msgstr "Ver foto »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
@@ -15,259 +15,265 @@ msgstr ""
|
|
15 |
"X-Poedit-Language: French\n"
|
16 |
"X-Poedit-Country: FRANCE\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galeries"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Ajouter"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
-
msgstr "Ajouter nouvelle galerie"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Modifier la galerie"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nouvelle galerie"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Voir la galerie"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Rechercher une galerie"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Pas de galeries trouvées"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Envoi de fichier"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
-
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
-
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
-
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
-
msgstr "
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
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 "Titre"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Photo's"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Public"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Date"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Extensions activées"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Lire plus..."
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Paramètres"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Extensions installées"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Extensions recommandées"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Télécharger"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Installation %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
-
msgstr "Installation à partir
|
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 vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
-
msgstr "Options sauvegardées"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Options de galerie"
|
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 "Taille de
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
-
msgstr "Nom de la
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Largeur (en pixels)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hauteur (en pixels)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
-
msgstr "Taille de la galerie"
|
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 créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
-
msgstr "Nombre d'
|
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 "Sauvegarder"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Soutien"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Désolé, rien de trouvé"
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
-
msgstr "Voir photo »"
|
270 |
|
|
|
|
|
|
|
|
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
"Language: \n"
|
15 |
"X-Poedit-Language: French\n"
|
16 |
"X-Poedit-Country: FRANCE\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
+
"Plural-Forms: nplurals=2;plural=n>1;\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: gallery-plugin.php:55
|
22 |
+
#: gallery-plugin.php:657
|
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 |
|
26 |
+
#: gallery-plugin.php:79
|
27 |
+
#: gallery-plugin.php:89
|
28 |
msgid "Galleries"
|
29 |
msgstr "Galeries"
|
30 |
|
31 |
+
#: gallery-plugin.php:80
|
32 |
+
#: gallery-plugin.php:555
|
33 |
msgid "Gallery"
|
34 |
msgstr "Galerie"
|
35 |
|
36 |
+
#: gallery-plugin.php:81
|
37 |
msgid "Add New"
|
38 |
msgstr "Ajouter"
|
39 |
|
40 |
+
#: gallery-plugin.php:82
|
41 |
msgid "Add New Gallery"
|
42 |
+
msgstr "Ajouter une nouvelle galerie"
|
43 |
|
44 |
+
#: gallery-plugin.php:83
|
45 |
msgid "Edit Gallery"
|
46 |
msgstr "Modifier la galerie"
|
47 |
|
48 |
+
#: gallery-plugin.php:84
|
49 |
msgid "New Gallery"
|
50 |
msgstr "Nouvelle galerie"
|
51 |
|
52 |
+
#: gallery-plugin.php:85
|
53 |
msgid "View Gallery"
|
54 |
msgstr "Voir la galerie"
|
55 |
|
56 |
+
#: gallery-plugin.php:86
|
57 |
msgid "Search Galleries"
|
58 |
msgstr "Rechercher une galerie"
|
59 |
|
60 |
+
#: gallery-plugin.php:87
|
61 |
msgid "No Galleries found"
|
62 |
msgstr "Pas de galeries trouvées"
|
63 |
|
64 |
+
#: gallery-plugin.php:144
|
65 |
msgid "Upload File"
|
66 |
msgstr "Envoi de fichier"
|
67 |
|
68 |
+
#: gallery-plugin.php:145
|
|
|
69 |
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Gallery Shortcode"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
+
msgstr "Le répertoire temporaire de la gallery (gallery-plugin/upload/files) n'est pas autorisé en écriture par votre serveur Web. Merci d'utliser les fonctions standards de WP pour charger les images (Média)"
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
|
|
77 |
msgid "Choose an image to upload:"
|
78 |
+
msgstr "Choisir l'image à envoyer :"
|
79 |
|
80 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
89 |
msgid "Title"
|
90 |
msgstr "Titre"
|
91 |
|
92 |
+
#: gallery-plugin.php:374
|
93 |
msgid "Author"
|
94 |
msgstr "Auteur"
|
95 |
|
96 |
+
#: gallery-plugin.php:375
|
97 |
msgid "Photo's"
|
98 |
msgstr "Photo's"
|
99 |
|
100 |
+
#: gallery-plugin.php:376
|
101 |
msgid "Public"
|
102 |
msgstr "Public"
|
103 |
|
104 |
+
#: gallery-plugin.php:377
|
105 |
msgid "Date"
|
106 |
msgstr "Date"
|
107 |
|
108 |
+
#: gallery-plugin.php:524
|
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:526
|
119 |
+
#: gallery-plugin.php:756
|
120 |
+
#: gallery-plugin.php:771
|
121 |
msgid "Settings"
|
122 |
msgstr "Paramètres"
|
123 |
|
124 |
+
#: gallery-plugin.php:532
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Extensions installées"
|
127 |
|
128 |
+
#: gallery-plugin.php:540
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Extensions recommandées"
|
131 |
|
132 |
+
#: gallery-plugin.php:542
|
133 |
msgid "Download"
|
134 |
msgstr "Télécharger"
|
135 |
|
136 |
+
#: gallery-plugin.php:542
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Installation %s"
|
140 |
|
141 |
+
#: gallery-plugin.php:542
|
142 |
msgid "Install now from wordpress.org"
|
143 |
+
msgstr "Installation à partir de wordpress.org"
|
144 |
|
145 |
+
#: gallery-plugin.php:544
|
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:650
|
150 |
msgid "Options saved."
|
151 |
+
msgstr "Options sauvegardées."
|
152 |
|
153 |
+
#: gallery-plugin.php:664
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Options de galerie"
|
156 |
|
157 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
181 |
msgid "Size for gallery image"
|
182 |
+
msgstr "Taille de la vignette de la galerie"
|
183 |
|
184 |
+
#: gallery-plugin.php:687
|
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:690
|
189 |
msgid "Count images in row"
|
190 |
+
msgstr "Nombre d'images par ligne"
|
191 |
|
192 |
+
#: gallery-plugin.php:696
|
193 |
msgid "Start slideshow"
|
194 |
+
msgstr "Démarer le diaporama"
|
195 |
|
196 |
+
#: gallery-plugin.php:702
|
197 |
msgid "Slideshow interval"
|
198 |
+
msgstr "Interval de transition pour le diaporama"
|
199 |
|
200 |
+
#: gallery-plugin.php:708
|
201 |
msgid "Attachments order by"
|
202 |
+
msgstr "Fichiers trier par"
|
203 |
|
204 |
+
#: gallery-plugin.php:710
|
205 |
msgid "attachment id"
|
206 |
+
msgstr "id du fichier"
|
207 |
|
208 |
+
#: gallery-plugin.php:711
|
209 |
msgid "attachment title"
|
210 |
+
msgstr "titre du fichier"
|
211 |
|
212 |
+
#: gallery-plugin.php:712
|
|
|
213 |
msgid "date"
|
214 |
+
msgstr "date"
|
215 |
|
216 |
+
#: gallery-plugin.php:713
|
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:714
|
221 |
msgid "random"
|
222 |
+
msgstr "aléatoire"
|
223 |
|
224 |
+
#: gallery-plugin.php:718
|
225 |
msgid "Attachments order"
|
226 |
+
msgstr "Ordre des fichiers"
|
227 |
|
228 |
+
#: gallery-plugin.php:720
|
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:721
|
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:725
|
237 |
msgid "Display Return link"
|
238 |
+
msgstr "Afficher le lien de retour"
|
239 |
|
240 |
+
#: gallery-plugin.php:731
|
241 |
msgid "Display Return link in shortcode"
|
242 |
+
msgstr "Afficher le lien de retour dans le code court"
|
243 |
|
244 |
+
#: gallery-plugin.php:737
|
245 |
msgid "Label for Return link"
|
246 |
+
msgstr "Texte du lien de retour"
|
247 |
|
248 |
+
#: gallery-plugin.php:745
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Sauvegarder"
|
251 |
|
252 |
+
#: gallery-plugin.php:757
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ"
|
255 |
|
256 |
+
#: gallery-plugin.php:758
|
257 |
msgid "Support"
|
258 |
msgstr "Soutien"
|
259 |
|
260 |
+
#: gallery-plugin.php:869
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Désolé, rien de trouvé"
|
264 |
|
265 |
+
#: template/gallery-single-template.php:82
|
266 |
+
msgid "Image "
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
#: template/gallery-template.php:69
|
270 |
msgid "See photo »"
|
271 |
+
msgstr "Voir la photo »"
|
272 |
|
273 |
+
#~ msgid "Choose a screenshot to upload:"
|
274 |
+
#~ msgstr "Choisir l'image à envoyer :"
|
275 |
+
#~ msgid "Foto's"
|
276 |
+
#~ msgstr "Photo's"
|
277 |
#~ msgid "Size for gallery album cover"
|
278 |
#~ msgstr "Размер для "
|
279 |
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,257 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Új hozzáadása"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Új Galéria hozzáadása"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galéria szerkesztése"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Új Galéria"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galéria megtekintése"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galéria keresése"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Galéria nem található"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Fájl feltöltése"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Galéria beállítások"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Nézőkép kiválasztása a feltöltéshez"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivált bővítmények"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Bővebben"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Az Album borítójának mérete a Galériában"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Kép méret neve"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szélesség (px-ben)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Magasság (px-ben)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
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."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Fotó megtekintése »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Új hozzáadása"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Új Galéria hozzáadása"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galéria szerkesztése"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Új Galéria"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galéria megtekintése"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galéria keresése"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Galéria nem található"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Fájl feltöltése"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Galéria beállítások"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Nézőkép kiválasztása a feltöltéshez"
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
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:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
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:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Dátum"
|
217 |
|
218 |
+
#: gallery-plugin.php:713
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:714
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:718
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:720
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:721
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:725
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:731
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:737
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:745
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Változások mentése"
|
253 |
|
254 |
+
#: gallery-plugin.php:757
|
255 |
msgid "FAQ"
|
256 |
msgstr "Gy.I.K."
|
257 |
|
258 |
+
#: gallery-plugin.php:758
|
259 |
msgid "Support"
|
260 |
msgstr "Támogatás"
|
261 |
|
262 |
+
#: gallery-plugin.php:869
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
266 |
|
267 |
+
#: template/gallery-single-template.php:82
|
268 |
+
msgid "Image "
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
#: template/gallery-template.php:69
|
272 |
msgid "See photo »"
|
273 |
msgstr "Fotó megtekintése »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,257 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Aggiungi nuova"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Aggiungi nuova galleria"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Modifica galleria"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nuova galleria"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Vedi galleria"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Cerca galleria"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nessuna galleria trovata"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Carica file"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opzioni gallerie"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Sceli uno screenshoot da caricare:"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Per favore abilita JavaScript per usare il file uploadr."
|
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 "Titolo"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autore"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Pubblico"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Attivare plugin"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Leggi altro"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Impostazioni"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugin installati"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugin consigliati"
|
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 "Installa ora da 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 "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opzioni salvate."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opzioni gallerie"
|
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 "La grandezza della copertina dall'album per la galleria"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Image size name"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Larghezza in px"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Altezza in px"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grandezza per le immagini della galleria"
|
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 "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Conta immagini"
|
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 "Salva cambiamenti"
|
253 |
|
254 |
-
#: gallery-plugin.php:
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
-
#: gallery-plugin.php:
|
259 |
msgid "Support"
|
260 |
msgstr "Supporto"
|
261 |
|
262 |
-
#: gallery-plugin.php:
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Spiacente - non è stato trovato nulla."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Guarda foto »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Aggiungi nuova"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Aggiungi nuova galleria"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Modifica galleria"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nuova galleria"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Vedi galleria"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Cerca galleria"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nessuna galleria trovata"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Carica file"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opzioni gallerie"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Sceli uno screenshoot da caricare:"
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Per favore abilita JavaScript per usare il file uploadr."
|
84 |
|
85 |
+
#: gallery-plugin.php:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "Titolo"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "Autore"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "Pubblico"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Attivare plugin"
|
112 |
|
113 |
+
#: gallery-plugin.php:526
|
114 |
+
#: gallery-plugin.php:534
|
115 |
+
#: gallery-plugin.php:542
|
116 |
msgid "Read more"
|
117 |
msgstr "Leggi altro"
|
118 |
|
119 |
+
#: gallery-plugin.php:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "Impostazioni"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugin installati"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugin consigliati"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Installа %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installa ora da wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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 "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
149 |
|
150 |
+
#: gallery-plugin.php:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opzioni salvate."
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opzioni gallerie"
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
165 |
|
166 |
+
#: gallery-plugin.php:673
|
167 |
+
#: gallery-plugin.php:681
|
168 |
msgid "Image size name"
|
169 |
msgstr "Image size name"
|
170 |
|
171 |
+
#: gallery-plugin.php:674
|
172 |
+
#: gallery-plugin.php:682
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Larghezza in px"
|
175 |
|
176 |
+
#: gallery-plugin.php:675
|
177 |
+
#: gallery-plugin.php:683
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Altezza in px"
|
180 |
|
181 |
+
#: gallery-plugin.php:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grandezza per le immagini della galleria"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
188 |
|
189 |
+
#: gallery-plugin.php:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Conta immagini"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
+
#: gallery-plugin.php:713
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:714
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:718
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:720
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:721
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:725
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:731
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:737
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:745
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Salva cambiamenti"
|
253 |
|
254 |
+
#: gallery-plugin.php:757
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:758
|
259 |
msgid "Support"
|
260 |
msgstr "Supporto"
|
261 |
|
262 |
+
#: gallery-plugin.php:869
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Spiacente - non è stato trovato nulla."
|
266 |
|
267 |
+
#: template/gallery-single-template.php:82
|
268 |
+
msgid "Image "
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
#: template/gallery-template.php:69
|
272 |
msgid "See photo »"
|
273 |
msgstr "Guarda foto »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,257 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "ახლის დამატება"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "ახალი გალერეას დამატება"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "გალერეას შესწორება"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "ახალი გალერეა"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "გალერეას ნახვა"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "გალერეას ძებნა"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "გალერეა არ მოძებნა"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "ფაილის ატვირთვა"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "გალერეის პარამეტრები"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "გააქტიურებული დანამატები:"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "სრულად ნახვა"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "ზომის სახელი"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "სიგანე(პიქსელებში)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "სიმაღლე(პიქსელებში)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
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 "მაპატიეთ - არაფერია ნაპოვნი."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:48+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:48+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "ახლის დამატება"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "ახალი გალერეას დამატება"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "გალერეას შესწორება"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "ახალი გალერეა"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "გალერეას ნახვა"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "გალერეას ძებნა"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "გალერეა არ მოძებნა"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "ფაილის ატვირთვა"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "გალერეის პარამეტრები"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
+
#: gallery-plugin.php:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
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:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
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:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "თარიღი"
|
217 |
|
218 |
+
#: gallery-plugin.php:713
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:714
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:718
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:720
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:721
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:725
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:731
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:737
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:745
|
251 |
msgid "Save Changes"
|
252 |
msgstr "ცვლილებების შენახვა"
|
253 |
|
254 |
+
#: gallery-plugin.php:757
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:758
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:869
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
266 |
|
267 |
+
#: template/gallery-single-template.php:82
|
268 |
+
msgid "Image "
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
#: template/gallery-template.php:69
|
272 |
msgid "See photo »"
|
273 |
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,257 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Nieuw fotoalbum"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Nieuw fotoalbum"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Fotoalbum bewerken"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nieuwe foto"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Foto bekijken"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Zoeken"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Niets gevonden"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Foto's uploaden"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Fotoalbum opties"
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Foto's uploaden: "
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Geactiveerde plugins"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Lees verder"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "De afmetingen voor de cover van het album"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Afbeelding grootte"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breedte (in px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hoogte (in px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
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"
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Bekijk foto »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:49+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:49+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Nieuw fotoalbum"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Nieuw fotoalbum"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Fotoalbum bewerken"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nieuwe foto"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Foto bekijken"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Zoeken"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Niets gevonden"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Foto's uploaden"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Fotoalbum opties"
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Foto's uploaden: "
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
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:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
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:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
+
#: gallery-plugin.php:713
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:714
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:718
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:720
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:721
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:725
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:731
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:737
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:745
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Bewaar veranderingen"
|
253 |
|
254 |
+
#: gallery-plugin.php:757
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:758
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:869
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Helaas - niets gevonden"
|
266 |
|
267 |
+
#: template/gallery-single-template.php:82
|
268 |
+
msgid "Image "
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
#: template/gallery-template.php:69
|
272 |
msgid "See photo »"
|
273 |
msgstr "Bekijk foto »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -17,253 +17,257 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Dodaj nową"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Dodaj nową galerię"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Edytuj galerię"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nowa galeria"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobacz galerię"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Szukaj galerii"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nie znaleziono żadnej galerii"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Wgraj plik"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opcje galerii."
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
80 |
|
81 |
-
#: gallery-plugin.php:
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
84 |
|
85 |
-
#: gallery-plugin.php:
|
86 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: gallery-plugin.php:
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
-
#: gallery-plugin.php:
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
-
#: gallery-plugin.php:
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
-
#: gallery-plugin.php:
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktywny plugin"
|
112 |
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Read more"
|
117 |
msgstr "Czytaj dalej"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
-
#: gallery-plugin.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
-
#: gallery-plugin.php:
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
-
#: gallery-plugin.php:
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
-
#: gallery-plugin.php:
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
-
#: gallery-plugin.php:
|
147 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
148 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
149 |
|
150 |
-
#: gallery-plugin.php:
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
-
#: gallery-plugin.php:
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozmiar okładki albumu"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nazwa rozmiaru obrazka"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szerokość (w px)"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
-
#: gallery-plugin.php:
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Wysokość (w px)"
|
180 |
|
181 |
-
#: gallery-plugin.php:
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
-
#: gallery-plugin.php:
|
186 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
187 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
188 |
|
189 |
-
#: gallery-plugin.php:
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
-
#: gallery-plugin.php:
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: gallery-plugin.php:
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: gallery-plugin.php:
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: gallery-plugin.php:
|
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."
|
266 |
|
|
|
|
|
|
|
|
|
267 |
#: template/gallery-template.php:69
|
268 |
msgid "See photo »"
|
269 |
msgstr "Zobacz zdjęcia »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:49+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:49+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Dodaj nową"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Dodaj nową galerię"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Edytuj galerię"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nowa galeria"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobacz galerię"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Szukaj galerii"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nie znaleziono żadnej galerii"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Wgraj plik"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
msgstr "Opcje galerii."
|
71 |
|
72 |
+
#: gallery-plugin.php:159
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: gallery-plugin.php:163
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
80 |
|
81 |
+
#: gallery-plugin.php:168
|
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:232
|
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:373
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
+
#: gallery-plugin.php:374
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:375
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
+
#: gallery-plugin.php:376
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
+
#: gallery-plugin.php:377
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
+
#: gallery-plugin.php:524
|
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:526
|
120 |
+
#: gallery-plugin.php:756
|
121 |
+
#: gallery-plugin.php:771
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
+
#: gallery-plugin.php:532
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
+
#: gallery-plugin.php:540
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
+
#: gallery-plugin.php:542
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
+
#: gallery-plugin.php:542
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:542
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:544
|
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:650
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
+
#: gallery-plugin.php:664
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
+
#: gallery-plugin.php:687
|
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:690
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
+
#: gallery-plugin.php:696
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:702
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:708
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:710
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:711
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:712
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
+
#: gallery-plugin.php:713
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:714
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:718
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:720
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:721
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:725
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:731
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:737
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:745
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Zapisz zmiany"
|
253 |
|
254 |
+
#: gallery-plugin.php:757
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:758
|
259 |
msgid "Support"
|
260 |
msgstr "Wsparcie"
|
261 |
|
262 |
+
#: gallery-plugin.php:869
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Przykro nam - nic nie znaleziono."
|
266 |
|
267 |
+
#: template/gallery-single-template.php:82
|
268 |
+
msgid "Image "
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
#: template/gallery-template.php:69
|
272 |
msgid "See photo »"
|
273 |
msgstr "Zobacz zdjęcia »"
|
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -17,250 +17,254 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Добавить галерею"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "добавить новую галерею"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редактировать галерею"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Новая галерея"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Просмотреть галерею"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Поиск галереи"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Ни одной галереи не найдено"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Загрузить файлы"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
msgid "Gallery Shortcode"
|
69 |
msgstr "Шорткод Для Галереи"
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
-
msgstr ""
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Выбрать файлы для загрузки:"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
|
85 |
msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
-
#: gallery-plugin.php:
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активированные плагины"
|
110 |
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
msgid "Read more"
|
115 |
msgstr "Подробнее..."
|
116 |
|
117 |
-
#: gallery-plugin.php:
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
146 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
158 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Размер изображения для обложки альбома галереи"
|
163 |
|
164 |
-
#: gallery-plugin.php:
|
165 |
-
#: gallery-plugin.php:
|
166 |
msgid "Image size name"
|
167 |
msgstr "Название размера изображение"
|
168 |
|
169 |
-
#: gallery-plugin.php:
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Высота (в px)"
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
185 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Изображения сортируются по"
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
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 ""
|
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 "Извините, ничего не найдено."
|
263 |
|
|
|
|
|
|
|
|
|
264 |
#: template/gallery-template.php:69
|
265 |
msgid "See photo »"
|
266 |
msgstr "Смотреть фотографии »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:49+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:51+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Добавить галерею"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "добавить новую галерею"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редактировать галерею"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Новая галерея"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Просмотреть галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Поиск галереи"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Ни одной галереи не найдено"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Загрузить файлы"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
68 |
msgid "Gallery Shortcode"
|
69 |
msgstr "Шорткод Для Галереи"
|
70 |
|
71 |
+
#: gallery-plugin.php:159
|
72 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
+
msgstr "Каталог галереи для сохранения временных файлов (gallery-plugin/upload/files) закрыт для записи на вашем веб-сервере. Пожалуйста, воспользуйтесь стандартным функционалом WP для загрузки изображения (медиа-библиотека)"
|
74 |
|
75 |
+
#: gallery-plugin.php:163
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Выбрать файлы для загрузки:"
|
78 |
|
79 |
+
#: gallery-plugin.php:168
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
+
#: gallery-plugin.php:232
|
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:373
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
+
#: gallery-plugin.php:374
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
+
#: gallery-plugin.php:375
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
+
#: gallery-plugin.php:376
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
+
#: gallery-plugin.php:377
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
+
#: gallery-plugin.php:524
|
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:526
|
118 |
+
#: gallery-plugin.php:756
|
119 |
+
#: gallery-plugin.php:771
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
+
#: gallery-plugin.php:532
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
+
#: gallery-plugin.php:540
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:542
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:544
|
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:650
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
+
#: gallery-plugin.php:664
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
+
#: gallery-plugin.php:687
|
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:690
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
+
#: gallery-plugin.php:696
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
+
#: gallery-plugin.php:702
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Изображения сортируются по"
|
202 |
|
203 |
+
#: gallery-plugin.php:710
|
204 |
msgid "attachment id"
|
205 |
msgstr "id изображения"
|
206 |
|
207 |
+
#: gallery-plugin.php:711
|
208 |
msgid "attachment title"
|
209 |
msgstr "названию изображения"
|
210 |
|
211 |
+
#: gallery-plugin.php:712
|
212 |
msgid "date"
|
213 |
msgstr "дате"
|
214 |
|
215 |
+
#: gallery-plugin.php:713
|
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:714
|
220 |
msgid "random"
|
221 |
msgstr "произвольно"
|
222 |
|
223 |
+
#: gallery-plugin.php:718
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Сортировать изображения"
|
226 |
|
227 |
+
#: gallery-plugin.php:720
|
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:721
|
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:725
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Отображать ссылку Вернуться"
|
238 |
|
239 |
+
#: gallery-plugin.php:731
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
242 |
|
243 |
+
#: gallery-plugin.php:737
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Текст для ссылки Вернуться"
|
246 |
|
247 |
+
#: gallery-plugin.php:745
|
248 |
msgid "Save Changes"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:757
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:758
|
256 |
msgid "Support"
|
257 |
msgstr "Поддержка"
|
258 |
|
259 |
+
#: gallery-plugin.php:869
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Извините, ничего не найдено."
|
263 |
|
264 |
+
#: template/gallery-single-template.php:82
|
265 |
+
msgid "Image "
|
266 |
+
msgstr "Изображение"
|
267 |
+
|
268 |
#: template/gallery-template.php:69
|
269 |
msgid "See photo »"
|
270 |
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-06-
|
6 |
-
"PO-Revision-Date: 2012-06-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -17,251 +17,254 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: gallery-plugin.php:
|
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 |
|
25 |
-
#: gallery-plugin.php:
|
26 |
-
#: gallery-plugin.php:
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
-
#: gallery-plugin.php:
|
31 |
-
#: gallery-plugin.php:
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
-
#: gallery-plugin.php:
|
36 |
msgid "Add New"
|
37 |
msgstr "Додати новий"
|
38 |
|
39 |
-
#: gallery-plugin.php:
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Додати нову галерею"
|
42 |
|
43 |
-
#: gallery-plugin.php:
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редагування галерея"
|
46 |
|
47 |
-
#: gallery-plugin.php:
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Нова галерея"
|
50 |
|
51 |
-
#: gallery-plugin.php:
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Перегляд галереї"
|
54 |
|
55 |
-
#: gallery-plugin.php:
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Пошук галереї"
|
58 |
|
59 |
-
#: gallery-plugin.php:
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Галереї, не знайдено"
|
62 |
|
63 |
-
#: gallery-plugin.php:
|
64 |
msgid "Upload File"
|
65 |
msgstr "Завантажити файл"
|
66 |
|
67 |
-
#: gallery-plugin.php:
|
68 |
-
#, fuzzy
|
69 |
msgid "Gallery Shortcode"
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: gallery-plugin.php:
|
73 |
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)"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
msgid "Choose an image to upload:"
|
78 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
79 |
|
80 |
-
#: gallery-plugin.php:
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
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 ""
|
87 |
|
88 |
-
#: gallery-plugin.php:
|
89 |
msgid "Title"
|
90 |
msgstr "Назва"
|
91 |
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Author"
|
94 |
msgstr "Автор "
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Photo's"
|
98 |
msgstr "Фото "
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Public"
|
102 |
msgstr "Громадськості"
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Date"
|
106 |
msgstr "Дата "
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
msgid "Activated plugins"
|
110 |
msgstr "Активоване плагіни"
|
111 |
|
112 |
-
#: gallery-plugin.php:
|
113 |
-
#: gallery-plugin.php:
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Read more"
|
116 |
msgstr "Читати далі"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
-
#: gallery-plugin.php:
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Settings"
|
122 |
msgstr "Параметри"
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Встановлених модулів"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Плагіни Рекомендовані"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Завантажити"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Установка %s"
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid "Install now from wordpress.org"
|
143 |
msgstr "Установити зараз від 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 "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
msgid "Options saved."
|
151 |
msgstr "Параметри зберігаються."
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Параметри галереї"
|
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 ""
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "The size of the cover album for gallery"
|
163 |
msgstr "Розмір обкладинки альбому для галереї"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Image size name"
|
168 |
msgstr "Ім'я розмір зображення"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Width (in px)"
|
173 |
msgstr "Ширина (в px)"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "Height (in px)"
|
178 |
msgstr "Висота (в px)"
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Size for gallery image"
|
182 |
msgstr "Розмір зображення галерея"
|
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 створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Count images in row"
|
190 |
msgstr "Кількість зображень у рядку"
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Start slideshow"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "Slideshow interval"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "Attachments order by"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
msgid "attachment id"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachment title"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "date"
|
214 |
msgstr "Дата"
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "random"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "Attachments order"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Display Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Display Return link in shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "Label for Return link"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Зберегти зміни"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ "
|
255 |
|
256 |
-
#: gallery-plugin.php:
|
257 |
msgid "Support"
|
258 |
msgstr "Підтримка"
|
259 |
|
260 |
-
#: gallery-plugin.php:
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Вибачте - нічого не знайдено."
|
264 |
|
|
|
|
|
|
|
|
|
265 |
#: template/gallery-template.php:69
|
266 |
msgid "See photo »"
|
267 |
msgstr "Дивитися фото »"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-27 18:52+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-27 18:52+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
"Language: \n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:55
|
21 |
+
#: gallery-plugin.php:657
|
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 |
|
25 |
+
#: gallery-plugin.php:79
|
26 |
+
#: gallery-plugin.php:89
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
+
#: gallery-plugin.php:80
|
31 |
+
#: gallery-plugin.php:555
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
+
#: gallery-plugin.php:81
|
36 |
msgid "Add New"
|
37 |
msgstr "Додати новий"
|
38 |
|
39 |
+
#: gallery-plugin.php:82
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Додати нову галерею"
|
42 |
|
43 |
+
#: gallery-plugin.php:83
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редагування галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:84
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Нова галерея"
|
50 |
|
51 |
+
#: gallery-plugin.php:85
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Перегляд галереї"
|
54 |
|
55 |
+
#: gallery-plugin.php:86
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Пошук галереї"
|
58 |
|
59 |
+
#: gallery-plugin.php:87
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Галереї, не знайдено"
|
62 |
|
63 |
+
#: gallery-plugin.php:144
|
64 |
msgid "Upload File"
|
65 |
msgstr "Завантажити файл"
|
66 |
|
67 |
+
#: gallery-plugin.php:145
|
|
|
68 |
msgid "Gallery Shortcode"
|
69 |
+
msgstr "Шорткод галереї"
|
70 |
|
71 |
+
#: gallery-plugin.php:159
|
72 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: gallery-plugin.php:163
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
78 |
|
79 |
+
#: gallery-plugin.php:168
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
82 |
|
83 |
+
#: gallery-plugin.php:232
|
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:373
|
88 |
msgid "Title"
|
89 |
msgstr "Назва"
|
90 |
|
91 |
+
#: gallery-plugin.php:374
|
92 |
msgid "Author"
|
93 |
msgstr "Автор "
|
94 |
|
95 |
+
#: gallery-plugin.php:375
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото "
|
98 |
|
99 |
+
#: gallery-plugin.php:376
|
100 |
msgid "Public"
|
101 |
msgstr "Громадськості"
|
102 |
|
103 |
+
#: gallery-plugin.php:377
|
104 |
msgid "Date"
|
105 |
msgstr "Дата "
|
106 |
|
107 |
+
#: gallery-plugin.php:524
|
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:526
|
118 |
+
#: gallery-plugin.php:756
|
119 |
+
#: gallery-plugin.php:771
|
120 |
msgid "Settings"
|
121 |
msgstr "Параметри"
|
122 |
|
123 |
+
#: gallery-plugin.php:532
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Встановлених модулів"
|
126 |
|
127 |
+
#: gallery-plugin.php:540
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Плагіни Рекомендовані"
|
130 |
|
131 |
+
#: gallery-plugin.php:542
|
132 |
msgid "Download"
|
133 |
msgstr "Завантажити"
|
134 |
|
135 |
+
#: gallery-plugin.php:542
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установка %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:542
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установити зараз від wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:544
|
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:650
|
149 |
msgid "Options saved."
|
150 |
msgstr "Параметри зберігаються."
|
151 |
|
152 |
+
#: gallery-plugin.php:664
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Параметри галереї"
|
155 |
|
156 |
+
#: gallery-plugin.php:667
|
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:671
|
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:679
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Розмір зображення галерея"
|
182 |
|
183 |
+
#: gallery-plugin.php:687
|
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:690
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Кількість зображень у рядку"
|
190 |
|
191 |
+
#: gallery-plugin.php:696
|
192 |
msgid "Start slideshow"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: gallery-plugin.php:702
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: gallery-plugin.php:708
|
200 |
msgid "Attachments order by"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: gallery-plugin.php:710
|
204 |
msgid "attachment id"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: gallery-plugin.php:711
|
208 |
msgid "attachment title"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: gallery-plugin.php:712
|
212 |
msgid "date"
|
213 |
msgstr "Дата"
|
214 |
|
215 |
+
#: gallery-plugin.php:713
|
216 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: gallery-plugin.php:714
|
220 |
msgid "random"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: gallery-plugin.php:718
|
224 |
msgid "Attachments order"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: gallery-plugin.php:720
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:721
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:725
|
236 |
msgid "Display Return link"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: gallery-plugin.php:731
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: gallery-plugin.php:737
|
244 |
msgid "Label for Return link"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: gallery-plugin.php:745
|
248 |
msgid "Save Changes"
|
249 |
msgstr "Зберегти зміни"
|
250 |
|
251 |
+
#: gallery-plugin.php:757
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ "
|
254 |
|
255 |
+
#: gallery-plugin.php:758
|
256 |
msgid "Support"
|
257 |
msgstr "Підтримка"
|
258 |
|
259 |
+
#: gallery-plugin.php:869
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Вибачте - нічого не знайдено."
|
263 |
|
264 |
+
#: template/gallery-single-template.php:82
|
265 |
+
msgid "Image "
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
#: template/gallery-template.php:69
|
269 |
msgid "See photo »"
|
270 |
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
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
@@ -112,6 +112,9 @@ Just setup a necessary order and click 'Save' button.
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= V3.1.2 - 15.06.2012 =
|
116 |
* Bugfix : The bug with gallery uploader (undefined x undefined) was fixed.
|
117 |
|
@@ -197,6 +200,9 @@ Just setup a necessary order and click 'Save' button.
|
|
197 |
|
198 |
== Upgrade Notice ==
|
199 |
|
|
|
|
|
|
|
200 |
= V3.1.2 =
|
201 |
The bug with gallery uploader (undefined x undefined) was fixed.
|
202 |
|
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
|
7 |
+
Stable tag: 3.2
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= V3.2 - 27.06.2012 =
|
116 |
+
* Update : We updated all functionality for wordpress 3.4.
|
117 |
+
|
118 |
= V3.1.2 - 15.06.2012 =
|
119 |
* Bugfix : The bug with gallery uploader (undefined x undefined) was fixed.
|
120 |
|
200 |
|
201 |
== Upgrade Notice ==
|
202 |
|
203 |
+
= V3.2 =
|
204 |
+
We updated all functionality for wordpress 3.4.
|
205 |
+
|
206 |
= V3.1.2 =
|
207 |
The bug with gallery uploader (undefined x undefined) was fixed.
|
208 |
|
template/gallery-single-template.php
CHANGED
@@ -79,7 +79,7 @@
|
|
79 |
'speedIn' : 500,
|
80 |
'speedOut' : 300,
|
81 |
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
|
82 |
-
return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
|
83 |
}<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>,
|
84 |
'onComplete': function() {
|
85 |
clearTimeout(jQuery.fancybox.slider);
|
79 |
'speedIn' : 500,
|
80 |
'speedOut' : 300,
|
81 |
'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
|
82 |
+
return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + '<?php _e( "Image ", "gallery"); ?>' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
|
83 |
}<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>,
|
84 |
'onComplete': function() {
|
85 |
clearTimeout(jQuery.fancybox.slider);
|