Version Description
- 11.06.2012 =
- New : Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post.
- Bugfix : The bug with gallery shortcode was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Gallery by BestWebSoft |
Version | 3.1 |
Comparing to | |
See all releases |
Code changes from version 3.06 to 3.1
- css/stylesheet.css +0 -0
- gallery-plugin.php +18 -11
- languages/gallery-cs_CZ.mo +0 -0
- languages/gallery-cs_CZ.po +80 -70
- languages/gallery-de_DE.mo +0 -0
- languages/gallery-de_DE.po +80 -69
- languages/gallery-es.mo +0 -0
- languages/gallery-es.po +122 -57
- languages/gallery-fr_FR.mo +0 -0
- languages/gallery-fr_FR.po +80 -69
- languages/gallery-hu_HU.mo +0 -0
- languages/gallery-hu_HU.po +80 -69
- languages/gallery-it_IT.mo +0 -0
- languages/gallery-it_IT.po +80 -69
- languages/gallery-ka_GE.mo +0 -0
- languages/gallery-ka_GE.po +80 -69
- languages/gallery-nl_NL.mo +0 -0
- languages/gallery-nl_NL.po +79 -69
- languages/gallery-pl_PL.mo +0 -0
- languages/gallery-pl_PL.po +80 -69
- languages/gallery-ru_RU.mo +0 -0
- languages/gallery-ru_RU.po +79 -70
- languages/gallery-uk.mo +0 -0
- languages/gallery-uk.po +80 -69
- readme.txt +11 -2
- screenshot-3.jpg +0 -0
- template/gallery-single-template.php +0 -0
css/stylesheet.css
CHANGED
File without changes
|
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 |
*/
|
@@ -24,11 +24,6 @@ License: GPLv2 or later
|
|
24 |
along with this program; if not, write to the Free Software
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
27 |
-
$gllr_boxes = array (
|
28 |
-
'Upload-File' => array (
|
29 |
-
array( '_gllr_uploadedFile', '', '', '', '' ),
|
30 |
-
)
|
31 |
-
);
|
32 |
|
33 |
if( ! function_exists( 'gllr_plugin_install' ) ) {
|
34 |
function gllr_plugin_install() {
|
@@ -36,15 +31,15 @@ if( ! function_exists( 'gllr_plugin_install' ) ) {
|
|
36 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
37 |
}
|
38 |
else {
|
39 |
-
|
40 |
-
|
41 |
}
|
42 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
43 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
44 |
}
|
45 |
else {
|
46 |
-
|
47 |
-
|
48 |
}
|
49 |
}
|
50 |
}
|
@@ -144,6 +139,7 @@ if( ! function_exists( 'addImageAncestorToMenu' ) ) {
|
|
144 |
|
145 |
function init_metaboxes_gallery() {
|
146 |
add_meta_box( 'Upload-File', __( 'Upload File', 'gallery' ), 'gllr_post_custom_box', 'gallery', 'normal', 'high' );
|
|
|
147 |
}
|
148 |
|
149 |
// Create custom meta box for portfolio post type
|
@@ -227,6 +223,16 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
|
|
227 |
<?php }
|
228 |
}
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
// Use nonce for verification ...
|
231 |
if( ! function_exists ( 'echo_gllr_nonce' ) ) {
|
232 |
function echo_gllr_nonce () {
|
@@ -887,6 +893,7 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
|
|
887 |
</script>
|
888 |
<?php
|
889 |
$gllr_output = ob_get_clean();
|
|
|
890 |
return $gllr_output;
|
891 |
}
|
892 |
}
|
@@ -922,4 +929,4 @@ add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
|
|
922 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
923 |
|
924 |
add_shortcode( 'print_gllr', 'gllr_shortcode' );
|
925 |
-
?>
|
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.1
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
24 |
along with this program; if not, write to the Free Software
|
25 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
26 |
*/
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
if( ! function_exists( 'gllr_plugin_install' ) ) {
|
29 |
function gllr_plugin_install() {
|
31 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
32 |
}
|
33 |
else {
|
34 |
+
//@copy( get_stylesheet_directory() .'/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php.bak' );
|
35 |
+
//@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-template.php', get_stylesheet_directory() .'/gallery-template.php' );
|
36 |
}
|
37 |
if ( ! file_exists( get_stylesheet_directory() .'/gallery-single-template.php' ) ) {
|
38 |
@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
39 |
}
|
40 |
else {
|
41 |
+
//@copy( get_stylesheet_directory() .'/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php.bak' );
|
42 |
+
//@copy( WP_PLUGIN_DIR .'/gallery-plugin/template/gallery-single-template.php', get_stylesheet_directory() .'/gallery-single-template.php' );
|
43 |
}
|
44 |
}
|
45 |
}
|
139 |
|
140 |
function init_metaboxes_gallery() {
|
141 |
add_meta_box( 'Upload-File', __( 'Upload File', 'gallery' ), 'gllr_post_custom_box', 'gallery', 'normal', 'high' );
|
142 |
+
add_meta_box( 'Gallery-Shortcode', __( 'Gallery Shortcode', 'gallery' ), 'gllr_post_shortcode_box', 'gallery', 'side', 'high' );
|
143 |
}
|
144 |
|
145 |
// Create custom meta box for portfolio post type
|
223 |
<?php }
|
224 |
}
|
225 |
|
226 |
+
// Create shortcode meta box for portfolio post type
|
227 |
+
if ( ! function_exists( 'gllr_post_shortcode_box' ) ) {
|
228 |
+
function gllr_post_shortcode_box( $obj = '', $box = '' ) {
|
229 |
+
global $post;
|
230 |
+
?>
|
231 |
+
<p><?php _e( 'You can add the Single Gallery on the page or in the post by inserting this shortcode in the content', 'gallery' ); ?>:</p>
|
232 |
+
<p><code>[print_gllr id=<?php echo $post->ID; ?>]</code></p>
|
233 |
+
<?php }
|
234 |
+
}
|
235 |
+
|
236 |
// Use nonce for verification ...
|
237 |
if( ! function_exists ( 'echo_gllr_nonce' ) ) {
|
238 |
function echo_gllr_nonce () {
|
893 |
</script>
|
894 |
<?php
|
895 |
$gllr_output = ob_get_clean();
|
896 |
+
wp_reset_query();
|
897 |
return $gllr_output;
|
898 |
}
|
899 |
}
|
929 |
add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
|
930 |
|
931 |
add_shortcode( 'print_gllr', 'gllr_shortcode' );
|
932 |
+
?>
|
languages/gallery-cs_CZ.mo
CHANGED
Binary file
|
languages/gallery-cs_CZ.po
CHANGED
@@ -2,14 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Language: \n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Language: Czech\n"
|
@@ -17,240 +17,249 @@ 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 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: gallery-plugin.php:
|
72 |
#, fuzzy
|
73 |
msgid "Choose an image to upload:"
|
74 |
msgstr "Vyberte náhled pro nahrání:"
|
75 |
|
76 |
-
#: gallery-plugin.php:
|
77 |
msgid "Please enable JavaScript to use the file uploader."
|
78 |
msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
|
79 |
|
80 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
81 |
msgid "Title"
|
82 |
msgstr "Název"
|
83 |
|
84 |
-
#: gallery-plugin.php:
|
85 |
msgid "Author"
|
86 |
msgstr "Autor"
|
87 |
|
88 |
-
#: gallery-plugin.php:
|
89 |
msgid "Photo's"
|
90 |
msgstr "Fotky"
|
91 |
|
92 |
-
#: gallery-plugin.php:
|
93 |
msgid "Public"
|
94 |
msgstr "Veřejné"
|
95 |
|
96 |
-
#: gallery-plugin.php:
|
97 |
msgid "Date"
|
98 |
msgstr "Datum"
|
99 |
|
100 |
-
#: gallery-plugin.php:
|
101 |
msgid "Activated plugins"
|
102 |
msgstr "Aktivní pluginy"
|
103 |
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
-
#: gallery-plugin.php:
|
107 |
msgid "Read more"
|
108 |
msgstr "Další informace"
|
109 |
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
-
#: gallery-plugin.php:
|
113 |
msgid "Settings"
|
114 |
msgstr "Nastavení"
|
115 |
|
116 |
-
#: gallery-plugin.php:
|
117 |
msgid "Installed plugins"
|
118 |
msgstr "Nainstalované pluginy"
|
119 |
|
120 |
-
#: gallery-plugin.php:
|
121 |
msgid "Recommended plugins"
|
122 |
msgstr "Doporučené pluginy"
|
123 |
|
124 |
-
#: gallery-plugin.php:
|
125 |
msgid "Download"
|
126 |
msgstr "Stáhnout"
|
127 |
|
128 |
-
#: gallery-plugin.php:
|
129 |
#, php-format
|
130 |
msgid "Install %s"
|
131 |
msgstr "Instaluj %s"
|
132 |
|
133 |
-
#: gallery-plugin.php:
|
134 |
msgid "Install now from wordpress.org"
|
135 |
msgstr "Instaluj ihned z wordpress.org"
|
136 |
|
137 |
-
#: gallery-plugin.php:
|
138 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
139 |
msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
|
140 |
|
141 |
-
#: gallery-plugin.php:
|
142 |
msgid "Options saved."
|
143 |
msgstr "Nastavení uložena."
|
144 |
|
145 |
-
#: gallery-plugin.php:
|
146 |
msgid "Gallery Options"
|
147 |
msgstr "Nastavení galerie"
|
148 |
|
149 |
-
#: gallery-plugin.php:
|
150 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: gallery-plugin.php:
|
154 |
msgid "The size of the cover album for gallery"
|
155 |
msgstr "Rozměry náhledu alba v galerii"
|
156 |
|
157 |
-
#: gallery-plugin.php:
|
158 |
-
#: gallery-plugin.php:
|
159 |
msgid "Image size name"
|
160 |
msgstr "Název rozměru"
|
161 |
|
162 |
-
#: gallery-plugin.php:
|
163 |
-
#: gallery-plugin.php:
|
164 |
msgid "Width (in px)"
|
165 |
msgstr "Šířka (v px)"
|
166 |
|
167 |
-
#: gallery-plugin.php:
|
168 |
-
#: gallery-plugin.php:
|
169 |
msgid "Height (in px)"
|
170 |
msgstr "Výška (v px)"
|
171 |
|
172 |
-
#: gallery-plugin.php:
|
173 |
msgid "Size for gallery image"
|
174 |
msgstr "Rozměry náhledu obrázku v albu"
|
175 |
|
176 |
-
#: gallery-plugin.php:
|
177 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
178 |
msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
|
179 |
|
180 |
-
#: gallery-plugin.php:
|
181 |
msgid "Count images in row"
|
182 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
183 |
|
184 |
-
#: gallery-plugin.php:
|
185 |
msgid "Start slideshow"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: gallery-plugin.php:
|
189 |
msgid "Slideshow interval"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: gallery-plugin.php:
|
193 |
msgid "Attachments order by"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: gallery-plugin.php:
|
197 |
msgid "attachment id"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: gallery-plugin.php:
|
201 |
msgid "attachment title"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: gallery-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "date"
|
207 |
msgstr "Datum"
|
208 |
|
209 |
-
#: gallery-plugin.php:
|
210 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: gallery-plugin.php:
|
214 |
msgid "random"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: gallery-plugin.php:
|
218 |
msgid "Attachments order"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: gallery-plugin.php:
|
222 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: gallery-plugin.php:
|
226 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: gallery-plugin.php:
|
230 |
msgid "Display Return link"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: gallery-plugin.php:
|
234 |
msgid "Display Return link in shortcode"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: gallery-plugin.php:
|
238 |
msgid "Label for Return link"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: gallery-plugin.php:
|
242 |
msgid "Save Changes"
|
243 |
msgstr "Uložit změny"
|
244 |
|
245 |
-
#: gallery-plugin.php:
|
246 |
msgid "FAQ"
|
247 |
msgstr "FAQ "
|
248 |
|
249 |
-
#: gallery-plugin.php:
|
250 |
msgid "Support"
|
251 |
msgstr "Podpora"
|
252 |
|
253 |
-
#: gallery-plugin.php:
|
254 |
#: template/gallery-single-template.php:60
|
255 |
msgid "Sorry - nothing to found."
|
256 |
msgstr "Omlouvám se - nic nenalezeno."
|
@@ -261,3 +270,4 @@ msgstr "Zobrazit obsah galerie »"
|
|
261 |
|
262 |
#~ msgid "Size for gallery album cover"
|
263 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:55+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Language: Czech\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Vložit novou"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Vložit novou galerii"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Upravit galerii"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nová galerie"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobrazit galerii"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Hledat galerii"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nebyla nalezena žádná galerie"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Nahrát soubor"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Nastavení galerie"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Vyberte náhled pro nahrání:"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Název"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotky"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Veřejné"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivní pluginy"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Další informace"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Nastavení"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Nainstalované pluginy"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Doporučené pluginy"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Stáhnout"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instaluj %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instaluj ihned z wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Nastavení uložena."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Nastavení galerie"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozměry náhledu alba v galerii"
|
165 |
|
166 |
+
#: gallery-plugin.php:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Název rozměru"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Šířka (v px)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Výška (v px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozměry náhledu obrázku v albu"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Počet náhledů zobrazených v jedné řádce"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Uložit změny"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Podpora"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Omlouvám se - nic nenalezeno."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-de_DE.mo
CHANGED
Binary file
|
languages/gallery-de_DE.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Galerien"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Hinzufügen"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Galerie hinzufügen"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Galerie bearbeiten"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Neue Galerie"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Galerie anzeigen"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Galerie suchen"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Keine Galerien gefunden"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Datei hochladen"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Screenshot zum hochladen auswählen:"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Titel"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Author"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Fotos"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Öffentlich"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Datum"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktivierte Plugins"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Mehr erfahren"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Einstellungen"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Installierte Plugins"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Benötigte Plugins"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installiere %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Direkt von wordpress.org installieren"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Einstellungen gespeichert."
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Galerie Einstellungen"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Die Größe der Bilder in der Albumansicht"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Name der Bilder"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Breite (in px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Höhe (in px)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Die Größe der Bilder in der Galerie"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Anzahl Bilder in der Reihe"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Datum"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Einstellungen speichern"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Leider nichts gefunden."
|
@@ -260,3 +270,4 @@ msgstr "Fotos anzeigen »"
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:55+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerien"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Hinzufügen"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Galerie hinzufügen"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galerie bearbeiten"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Neue Galerie"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galerie anzeigen"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galerie suchen"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Keine Galerien gefunden"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Datei hochladen"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Galerie Einstellungen"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Screenshot zum hochladen auswählen:"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Author"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotos"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Öffentlich"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivierte Plugins"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Mehr erfahren"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Einstellungen"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Installierte Plugins"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Benötigte Plugins"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Installiere %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Direkt von wordpress.org installieren"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Einstellungen gespeichert."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galerie Einstellungen"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
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:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Name der Bilder"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breite (in px)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Höhe (in px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Die Größe der Bilder in der Galerie"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Anzahl Bilder in der Reihe"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Einstellungen speichern"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Leider nichts gefunden."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-es.mo
CHANGED
Binary file
|
languages/gallery-es.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: Victor Garcia
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,185 +17,248 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Galerías"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galería"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Agrega Nueva"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Agregar Nueva Galería"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Editar Galería"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Nueva Galería"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Ver Galería"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Buscar Galerías"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "No se encontraron Galerías"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Subir Archivo"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
-
|
|
|
72 |
msgstr "Escoger una imagen para subir:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
79 |
msgid "Title"
|
80 |
msgstr "Título"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Autor"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Foto de"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Pública"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Fecha"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Plugins Activados"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Leer más"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Configuración"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Plugins instalados"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Plugins recomendados"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Descargar"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Instalar %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Instalar ahora desde wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Si 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"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Opciones guardadas."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Opciones de Galería"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
148 |
msgid "The size of the cover album for gallery"
|
149 |
msgstr "El tamaño de la cubierta del álbum de la galería"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "Image size name"
|
154 |
msgstr "Nombre del tamaño de la imagen"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Width (in px)"
|
159 |
msgstr "Ancho (en px)"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Height (in px)"
|
164 |
msgstr "Alto (en px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Size for gallery image"
|
168 |
msgstr "Tamaño de la galería de imágenes"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
172 |
msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "Count images in row"
|
176 |
msgstr "Contar las imágenes en la fila"
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Start slideshow"
|
180 |
msgstr "Comenzar presentación diapositivas"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Slideshow interval"
|
184 |
msgstr "Intervalo de presentación diapositivas"
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Guardar Cambios"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "FAQ"
|
192 |
msgstr "FAQ "
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "Support"
|
196 |
msgstr "Soporte"
|
197 |
|
|
|
198 |
#: template/gallery-single-template.php:60
|
199 |
msgid "Sorry - nothing to found."
|
200 |
msgstr "Lo sentimos - nada que encontrar."
|
@@ -205,3 +269,4 @@ msgstr "Ver foto »"
|
|
205 |
|
206 |
#~ msgid "Size for gallery album cover"
|
207 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:55+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerías"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galería"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Agrega Nueva"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Agregar Nueva Galería"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Editar Galería"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nueva Galería"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Ver Galería"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Buscar Galerías"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "No se encontraron Galerías"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Subir Archivo"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Opciones de Galería"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
+
#, fuzzy
|
78 |
+
msgid "Choose an image to upload:"
|
79 |
msgstr "Escoger una imagen para subir:"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Título"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto de"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Pública"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Fecha"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Plugins Activados"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Leer más"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Configuración"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugins instalados"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugins recomendados"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Descargar"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Instalar %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Instalar ahora desde wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opciones guardadas."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opciones de Galería"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
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:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nombre del tamaño de la imagen"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Ancho (en px)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Alto (en px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Tamaño de la galería de imágenes"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Contar las imágenes en la fila"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr "Comenzar presentación diapositivas"
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr "Intervalo de presentación diapositivas"
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
+
msgid "Attachments order by"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: gallery-plugin.php:706
|
206 |
+
msgid "attachment id"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: gallery-plugin.php:707
|
210 |
+
msgid "attachment title"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: gallery-plugin.php:708
|
214 |
+
msgid "date"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: gallery-plugin.php:709
|
218 |
+
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: gallery-plugin.php:710
|
222 |
+
msgid "random"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: gallery-plugin.php:714
|
226 |
+
msgid "Attachments order"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: gallery-plugin.php:716
|
230 |
+
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: gallery-plugin.php:717
|
234 |
+
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: gallery-plugin.php:721
|
238 |
+
msgid "Display Return link"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: gallery-plugin.php:727
|
242 |
+
msgid "Display Return link in shortcode"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: gallery-plugin.php:733
|
246 |
+
msgid "Label for Return link"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: gallery-plugin.php:741
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Guardar Cambios"
|
252 |
|
253 |
+
#: gallery-plugin.php:753
|
254 |
msgid "FAQ"
|
255 |
msgstr "FAQ "
|
256 |
|
257 |
+
#: gallery-plugin.php:754
|
258 |
msgid "Support"
|
259 |
msgstr "Soporte"
|
260 |
|
261 |
+
#: gallery-plugin.php:865
|
262 |
#: template/gallery-single-template.php:60
|
263 |
msgid "Sorry - nothing to found."
|
264 |
msgstr "Lo sentimos - nada que encontrar."
|
269 |
|
270 |
#~ msgid "Size for gallery album cover"
|
271 |
#~ msgstr "Размер для "
|
272 |
+
|
languages/gallery-fr_FR.mo
CHANGED
Binary file
|
languages/gallery-fr_FR.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Galeries"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galerie"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Ajouter"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Ajouter nouvelle galerie"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Modifier la galerie"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Nouvelle galerie"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Voir la galerie"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Rechercher une galerie"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Pas de galeries trouvées"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Envoi de fichier"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Choix de la capture d'écran à envoyer :"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Titre"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Auteur"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Photo's"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Public"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Date"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Extensions activées"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Lire plus..."
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Paramètres"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Extensions installées"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Extensions recommandées"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Télécharger"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installation %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installation à partir via wordpress.org"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Options sauvegardées"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Options de galerie"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Taille de Couverture de la galerie"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Nom de la taille"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Largeur (en pixels)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Hauteur (en pixels)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Taille de la galerie"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Nombre d'image par ligne"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Date"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Sauvegarder"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Soutien"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Désolé, rien de trouvé"
|
@@ -260,3 +270,4 @@ msgstr "Voir photo »"
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:55+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Wolforg <contact@wolforg.eu>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galeries"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galerie"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Ajouter"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Ajouter nouvelle galerie"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Modifier la galerie"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nouvelle galerie"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Voir la galerie"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Rechercher une galerie"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Pas de galeries trouvées"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Envoi de fichier"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Options de galerie"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Choix de la capture d'écran à envoyer :"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Titre"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Photo's"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Public"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Date"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Extensions activées"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Lire plus..."
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Paramètres"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Extensions installées"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Extensions recommandées"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Télécharger"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Installation %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installation à partir via wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Options sauvegardées"
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Options de galerie"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Taille de Couverture de la galerie"
|
165 |
|
166 |
+
#: gallery-plugin.php:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nom de la taille"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Largeur (en pixels)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hauteur (en pixels)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Taille de la galerie"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Nombre d'image par ligne"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Date"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Sauvegarder"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Soutien"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Désolé, rien de trouvé"
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-hu_HU.mo
CHANGED
Binary file
|
languages/gallery-hu_HU.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Galériák"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galéria"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Új hozzáadása"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Új Galéria hozzáadása"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Galéria szerkesztése"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Új Galéria"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Galéria megtekintése"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Galéria keresése"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Galéria nem található"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Fájl feltöltése"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Nézőkép kiválasztása a feltöltéshez"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Cím"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Szerző"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Fotók"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Publikus"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Dátum"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktivált bővítmények"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Bővebben"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Beállítások"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Telepített bővítmények"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Javasolt bővítmények"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Letöltés"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Telepítés %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Telepítés a wordpress.org -ról"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Beállítások elmentve."
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Galéria beállítások"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Az Album borítójának mérete a Galériában"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Kép méret neve"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Szélesség (px-ben)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Magasság (px-ben)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "A Galéria képeinek mérete"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Képek száma egy sorban"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Dátum"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Változások mentése"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "Gy.I.K."
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Támogatás"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
@@ -260,3 +270,4 @@ msgstr "Fotó megtekintése »"
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:55+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galériák"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galéria"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Új hozzáadása"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Új Galéria hozzáadása"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Galéria szerkesztése"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Új Galéria"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Galéria megtekintése"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Galéria keresése"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Galéria nem található"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Fájl feltöltése"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Galéria beállítások"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
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:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Cím"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Szerző"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Fotók"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Publikus"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Dátum"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktivált bővítmények"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Bővebben"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Beállítások"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Telepített bővítmények"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Javasolt bővítmények"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Letöltés"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Telepítés %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Telepítés a wordpress.org -ról"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Beállítások elmentve."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Galéria beállítások"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
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:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Kép méret neve"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szélesség (px-ben)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Magasság (px-ben)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "A Galéria képeinek mérete"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Képek száma egy sorban"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Dátum"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Változások mentése"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "Gy.I.K."
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Támogatás"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Sajnáljuk - nincs megjelenítendő elem."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-it_IT.mo
CHANGED
Binary file
|
languages/gallery-it_IT.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Gallerie"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galleria"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Aggiungi nuova"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Aggiungi nuova galleria"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Modifica galleria"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Nuova galleria"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Vedi galleria"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Cerca galleria"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Nessuna galleria trovata"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Carica file"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Sceli uno screenshoot da caricare:"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Per favore abilita JavaScript per usare il file uploadr."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Titolo"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Autore"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Foto"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Pubblico"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Data"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Attivare plugin"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Leggi altro"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Impostazioni"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Plugin installati"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Plugin consigliati"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Installа %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installa ora da wordpress.org"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opzioni salvate."
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Opzioni gallerie"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "La grandezza della copertina dall'album per la galleria"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Image size name"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Larghezza in px"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Altezza in px"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Grandezza per le immagini della galleria"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Conta immagini"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Data"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Salva cambiamenti"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ "
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Supporto"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Spiacente - non è stato trovato nulla."
|
@@ -260,3 +270,4 @@ msgstr "Guarda foto »"
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:56+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Gallerie"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galleria"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Aggiungi nuova"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Aggiungi nuova galleria"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Modifica galleria"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nuova galleria"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Vedi galleria"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Cerca galleria"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nessuna galleria trovata"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Carica file"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Opzioni gallerie"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Sceli uno screenshoot da caricare:"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Titolo"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Autore"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Pubblico"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Attivare plugin"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Leggi altro"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Impostazioni"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Plugin installati"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Plugin consigliati"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Installа %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installa ora da wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opzioni salvate."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opzioni gallerie"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
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:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Image size name"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Larghezza in px"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Altezza in px"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grandezza per le immagini della galleria"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Conta immagini"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Salva cambiamenti"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Supporto"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Spiacente - non è stato trovato nulla."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-ka_GE.mo
CHANGED
Binary file
|
languages/gallery-ka_GE.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "გალერეა"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "გალერეა"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "ახლის დამატება"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "ახალი გალერეას დამატება"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "გალერეას შესწორება"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "ახალი გალერეა"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "გალერეას ნახვა"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "გალერეას ძებნა"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "გალერეა არ მოძებნა"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "ფაილის ატვირთვა"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "სათაური"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "ავტორი"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "ფოტო"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "საჯარო"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "თარიღი"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "გააქტიურებული დანამატები:"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "სრულად ნახვა"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "პარამეტრები"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "დაყენებული დანამატები"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "რეკომენდირებული დანამატები"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "გადმოტვირთვა"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "დაყენებულია %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "დააყენეთ wordpress.org-იდან"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "პარამეტრები შენახულია"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "გალერეის პარამეტრები"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "ზომის სახელი"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "სიგანე(პიქსელებში)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "სიმაღლე(პიქსელებში)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "ზომა გალერეის სურათისთვის"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "სურათების რაოდენობა მწკრივში"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "თარიღი"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "ცვლილებების შენახვა"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
@@ -260,3 +270,4 @@ msgstr ""
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:56+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "გალერეა"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "გალერეა"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "ახლის დამატება"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "ახალი გალერეას დამატება"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "გალერეას შესწორება"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "ახალი გალერეა"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "გალერეას ნახვა"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "გალერეას ძებნა"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "გალერეა არ მოძებნა"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "ფაილის ატვირთვა"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "გალერეის პარამეტრები"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "აირჩიეთ სურათი ასატვირთად:"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
82 |
msgid "Please enable JavaScript to use the file uploader."
|
83 |
msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
|
84 |
|
85 |
+
#: gallery-plugin.php:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "სათაური"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "ავტორი"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "ფოტო"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "საჯარო"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "თარიღი"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "გააქტიურებული დანამატები:"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "სრულად ნახვა"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "პარამეტრები"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "დაყენებული დანამატები"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "რეკომენდირებული დანამატები"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "გადმოტვირთვა"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "დაყენებულია %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "დააყენეთ wordpress.org-იდან"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "პარამეტრები შენახულია"
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "გალერეის პარამეტრები"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "ალბომის ყდის ზომა გალერეისთვის"
|
165 |
|
166 |
+
#: gallery-plugin.php:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "ზომის სახელი"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "სიგანე(პიქსელებში)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "სიმაღლე(პიქსელებში)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "ზომა გალერეის სურათისთვის"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "სურათების რაოდენობა მწკრივში"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "თარიღი"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "ცვლილებების შენახვა"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "მაპატიეთ - არაფერია ნაპოვნი."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-nl_NL.mo
CHANGED
Binary file
|
languages/gallery-nl_NL.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Fotoalbum's"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Fotoalbum"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Nieuw fotoalbum"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Nieuw fotoalbum"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Fotoalbum bewerken"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Nieuwe foto"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Foto bekijken"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Zoeken"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Niets gevonden"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Foto's uploaden"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Foto's uploaden: "
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Activeer JavaScript om foto's te kunnen uploaden."
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Titel"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Auteur"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Foto's"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Gepubliceerd"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Datum"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Geactiveerde plugins"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Lees verder"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Instellingen"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Geinstalleerde plugins"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Aanbevolen plugins"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Download"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Install %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Installeer nu vanaf wordpress.org"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opties opgeslagen"
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Fotoalbum opties"
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "De afmetingen voor de cover van het album"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Afbeelding grootte"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Breedte (in px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Hoogte (in px)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Grootte voor album afbeelding"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Aantal afbeeldingen op een rij"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Datum"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Bewaar veranderingen"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ"
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Support"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Helaas - niets gevonden"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:56+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ronald <ronald@bhi.nl>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Fotoalbum's"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Fotoalbum"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Nieuw fotoalbum"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Nieuw fotoalbum"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Fotoalbum bewerken"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nieuwe foto"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Foto bekijken"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Zoeken"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Niets gevonden"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Foto's uploaden"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Fotoalbum opties"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Foto's uploaden: "
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Titel"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Auteur"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Foto's"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Gepubliceerd"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Datum"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Geactiveerde plugins"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Lees verder"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Instellingen"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Geinstalleerde plugins"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Aanbevolen plugins"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Download"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Install %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Installeer nu vanaf wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opties opgeslagen"
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Fotoalbum opties"
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
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:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Afbeelding grootte"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Breedte (in px)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Hoogte (in px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Grootte voor album afbeelding"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Aantal afbeeldingen op een rij"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Datum"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Bewaar veranderingen"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ"
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Support"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Helaas - niets gevonden"
|
languages/gallery-pl_PL.mo
CHANGED
Binary file
|
languages/gallery-pl_PL.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,240 +17,249 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Galerie zdjęć"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Galeria zdjęć"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Dodaj nową"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Dodaj nową galerię"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Edytuj galerię"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Nowa galeria"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Zobacz galerię"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Szukaj galerii"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Nie znaleziono żadnej galerii"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Wgraj plik"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
#, fuzzy
|
72 |
msgid "Choose an image to upload:"
|
73 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
74 |
|
75 |
-
#: gallery-plugin.php:
|
76 |
msgid "Please enable JavaScript to use the file uploader."
|
77 |
msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
|
78 |
|
79 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
80 |
msgid "Title"
|
81 |
msgstr "Tytuł"
|
82 |
|
83 |
-
#: gallery-plugin.php:
|
84 |
msgid "Author"
|
85 |
msgstr "Autor"
|
86 |
|
87 |
-
#: gallery-plugin.php:
|
88 |
msgid "Photo's"
|
89 |
msgstr "Zdjęcie"
|
90 |
|
91 |
-
#: gallery-plugin.php:
|
92 |
msgid "Public"
|
93 |
msgstr "Publiczne"
|
94 |
|
95 |
-
#: gallery-plugin.php:
|
96 |
msgid "Date"
|
97 |
msgstr "Data"
|
98 |
|
99 |
-
#: gallery-plugin.php:
|
100 |
msgid "Activated plugins"
|
101 |
msgstr "Aktywny plugin"
|
102 |
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
-
#: gallery-plugin.php:
|
106 |
msgid "Read more"
|
107 |
msgstr "Czytaj dalej"
|
108 |
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
-
#: gallery-plugin.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Ustawienia"
|
114 |
|
115 |
-
#: gallery-plugin.php:
|
116 |
msgid "Installed plugins"
|
117 |
msgstr "Zainstalowane pluginy"
|
118 |
|
119 |
-
#: gallery-plugin.php:
|
120 |
msgid "Recommended plugins"
|
121 |
msgstr "Rekomendowane pluginy"
|
122 |
|
123 |
-
#: gallery-plugin.php:
|
124 |
msgid "Download"
|
125 |
msgstr "Pobierz"
|
126 |
|
127 |
-
#: gallery-plugin.php:
|
128 |
#, php-format
|
129 |
msgid "Install %s"
|
130 |
msgstr "Zainstaluj %s"
|
131 |
|
132 |
-
#: gallery-plugin.php:
|
133 |
msgid "Install now from wordpress.org"
|
134 |
msgstr "Zainstaluj teraz z wordpress.org"
|
135 |
|
136 |
-
#: gallery-plugin.php:
|
137 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
138 |
msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
|
139 |
|
140 |
-
#: gallery-plugin.php:
|
141 |
msgid "Options saved."
|
142 |
msgstr "Opcje zostały zapisane."
|
143 |
|
144 |
-
#: gallery-plugin.php:
|
145 |
msgid "Gallery Options"
|
146 |
msgstr "Opcje galerii."
|
147 |
|
148 |
-
#: gallery-plugin.php:
|
149 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: gallery-plugin.php:
|
153 |
msgid "The size of the cover album for gallery"
|
154 |
msgstr "Rozmiar okładki albumu"
|
155 |
|
156 |
-
#: gallery-plugin.php:
|
157 |
-
#: gallery-plugin.php:
|
158 |
msgid "Image size name"
|
159 |
msgstr "Nazwa rozmiaru obrazka"
|
160 |
|
161 |
-
#: gallery-plugin.php:
|
162 |
-
#: gallery-plugin.php:
|
163 |
msgid "Width (in px)"
|
164 |
msgstr "Szerokość (w px)"
|
165 |
|
166 |
-
#: gallery-plugin.php:
|
167 |
-
#: gallery-plugin.php:
|
168 |
msgid "Height (in px)"
|
169 |
msgstr "Wysokość (w px)"
|
170 |
|
171 |
-
#: gallery-plugin.php:
|
172 |
msgid "Size for gallery image"
|
173 |
msgstr "Rozmiar dla obrazka w galerii"
|
174 |
|
175 |
-
#: gallery-plugin.php:
|
176 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
177 |
msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
|
178 |
|
179 |
-
#: gallery-plugin.php:
|
180 |
msgid "Count images in row"
|
181 |
msgstr "Ilość obrazków w rzędzie"
|
182 |
|
183 |
-
#: gallery-plugin.php:
|
184 |
msgid "Start slideshow"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: gallery-plugin.php:
|
188 |
msgid "Slideshow interval"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: gallery-plugin.php:
|
192 |
msgid "Attachments order by"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: gallery-plugin.php:
|
196 |
msgid "attachment id"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: gallery-plugin.php:
|
200 |
msgid "attachment title"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: gallery-plugin.php:
|
204 |
#, fuzzy
|
205 |
msgid "date"
|
206 |
msgstr "Data"
|
207 |
|
208 |
-
#: gallery-plugin.php:
|
209 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: gallery-plugin.php:
|
213 |
msgid "random"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: gallery-plugin.php:
|
217 |
msgid "Attachments order"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: gallery-plugin.php:
|
221 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: gallery-plugin.php:
|
225 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: gallery-plugin.php:
|
229 |
msgid "Display Return link"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: gallery-plugin.php:
|
233 |
msgid "Display Return link in shortcode"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: gallery-plugin.php:
|
237 |
msgid "Label for Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: gallery-plugin.php:
|
241 |
msgid "Save Changes"
|
242 |
msgstr "Zapisz zmiany"
|
243 |
|
244 |
-
#: gallery-plugin.php:
|
245 |
msgid "FAQ"
|
246 |
msgstr "FAQ "
|
247 |
|
248 |
-
#: gallery-plugin.php:
|
249 |
msgid "Support"
|
250 |
msgstr "Wsparcie"
|
251 |
|
252 |
-
#: gallery-plugin.php:
|
253 |
#: template/gallery-single-template.php:60
|
254 |
msgid "Sorry - nothing to found."
|
255 |
msgstr "Przykro nam - nic nie znaleziono."
|
@@ -260,3 +270,4 @@ msgstr "Zobacz zdjęcia »"
|
|
260 |
|
261 |
#~ msgid "Size for gallery album cover"
|
262 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:56+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: BWS <bestwebsoft.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Galerie zdjęć"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Galeria zdjęć"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Dodaj nową"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Dodaj nową galerię"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Edytuj galerię"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Nowa galeria"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Zobacz galerię"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Szukaj galerii"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Nie znaleziono żadnej galerii"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Wgraj plik"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Opcje galerii."
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
#, fuzzy
|
78 |
msgid "Choose an image to upload:"
|
79 |
msgstr "Wybierz zrzut ekrany do wgrania na serwer"
|
80 |
|
81 |
+
#: gallery-plugin.php:167
|
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:231
|
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:372
|
90 |
msgid "Title"
|
91 |
msgstr "Tytuł"
|
92 |
|
93 |
+
#: gallery-plugin.php:373
|
94 |
msgid "Author"
|
95 |
msgstr "Autor"
|
96 |
|
97 |
+
#: gallery-plugin.php:374
|
98 |
msgid "Photo's"
|
99 |
msgstr "Zdjęcie"
|
100 |
|
101 |
+
#: gallery-plugin.php:375
|
102 |
msgid "Public"
|
103 |
msgstr "Publiczne"
|
104 |
|
105 |
+
#: gallery-plugin.php:376
|
106 |
msgid "Date"
|
107 |
msgstr "Data"
|
108 |
|
109 |
+
#: gallery-plugin.php:523
|
110 |
msgid "Activated plugins"
|
111 |
msgstr "Aktywny plugin"
|
112 |
|
113 |
+
#: gallery-plugin.php:525
|
114 |
+
#: gallery-plugin.php:533
|
115 |
+
#: gallery-plugin.php:541
|
116 |
msgid "Read more"
|
117 |
msgstr "Czytaj dalej"
|
118 |
|
119 |
+
#: gallery-plugin.php:525
|
120 |
+
#: gallery-plugin.php:752
|
121 |
+
#: gallery-plugin.php:767
|
122 |
msgid "Settings"
|
123 |
msgstr "Ustawienia"
|
124 |
|
125 |
+
#: gallery-plugin.php:531
|
126 |
msgid "Installed plugins"
|
127 |
msgstr "Zainstalowane pluginy"
|
128 |
|
129 |
+
#: gallery-plugin.php:539
|
130 |
msgid "Recommended plugins"
|
131 |
msgstr "Rekomendowane pluginy"
|
132 |
|
133 |
+
#: gallery-plugin.php:541
|
134 |
msgid "Download"
|
135 |
msgstr "Pobierz"
|
136 |
|
137 |
+
#: gallery-plugin.php:541
|
138 |
#, php-format
|
139 |
msgid "Install %s"
|
140 |
msgstr "Zainstaluj %s"
|
141 |
|
142 |
+
#: gallery-plugin.php:541
|
143 |
msgid "Install now from wordpress.org"
|
144 |
msgstr "Zainstaluj teraz z wordpress.org"
|
145 |
|
146 |
+
#: gallery-plugin.php:543
|
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:649
|
151 |
msgid "Options saved."
|
152 |
msgstr "Opcje zostały zapisane."
|
153 |
|
154 |
+
#: gallery-plugin.php:660
|
155 |
msgid "Gallery Options"
|
156 |
msgstr "Opcje galerii."
|
157 |
|
158 |
+
#: gallery-plugin.php:663
|
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:667
|
163 |
msgid "The size of the cover album for gallery"
|
164 |
msgstr "Rozmiar okładki albumu"
|
165 |
|
166 |
+
#: gallery-plugin.php:669
|
167 |
+
#: gallery-plugin.php:677
|
168 |
msgid "Image size name"
|
169 |
msgstr "Nazwa rozmiaru obrazka"
|
170 |
|
171 |
+
#: gallery-plugin.php:670
|
172 |
+
#: gallery-plugin.php:678
|
173 |
msgid "Width (in px)"
|
174 |
msgstr "Szerokość (w px)"
|
175 |
|
176 |
+
#: gallery-plugin.php:671
|
177 |
+
#: gallery-plugin.php:679
|
178 |
msgid "Height (in px)"
|
179 |
msgstr "Wysokość (w px)"
|
180 |
|
181 |
+
#: gallery-plugin.php:675
|
182 |
msgid "Size for gallery image"
|
183 |
msgstr "Rozmiar dla obrazka w galerii"
|
184 |
|
185 |
+
#: gallery-plugin.php:683
|
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:686
|
190 |
msgid "Count images in row"
|
191 |
msgstr "Ilość obrazków w rzędzie"
|
192 |
|
193 |
+
#: gallery-plugin.php:692
|
194 |
msgid "Start slideshow"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: gallery-plugin.php:698
|
198 |
msgid "Slideshow interval"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: gallery-plugin.php:704
|
202 |
msgid "Attachments order by"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: gallery-plugin.php:706
|
206 |
msgid "attachment id"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: gallery-plugin.php:707
|
210 |
msgid "attachment title"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: gallery-plugin.php:708
|
214 |
#, fuzzy
|
215 |
msgid "date"
|
216 |
msgstr "Data"
|
217 |
|
218 |
+
#: gallery-plugin.php:709
|
219 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: gallery-plugin.php:710
|
223 |
msgid "random"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: gallery-plugin.php:714
|
227 |
msgid "Attachments order"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: gallery-plugin.php:716
|
231 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: gallery-plugin.php:717
|
235 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: gallery-plugin.php:721
|
239 |
msgid "Display Return link"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: gallery-plugin.php:727
|
243 |
msgid "Display Return link in shortcode"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: gallery-plugin.php:733
|
247 |
msgid "Label for Return link"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: gallery-plugin.php:741
|
251 |
msgid "Save Changes"
|
252 |
msgstr "Zapisz zmiany"
|
253 |
|
254 |
+
#: gallery-plugin.php:753
|
255 |
msgid "FAQ"
|
256 |
msgstr "FAQ "
|
257 |
|
258 |
+
#: gallery-plugin.php:754
|
259 |
msgid "Support"
|
260 |
msgstr "Wsparcie"
|
261 |
|
262 |
+
#: gallery-plugin.php:865
|
263 |
#: template/gallery-single-template.php:60
|
264 |
msgid "Sorry - nothing to found."
|
265 |
msgstr "Przykro nam - nic nie znaleziono."
|
270 |
|
271 |
#~ msgid "Size for gallery album cover"
|
272 |
#~ msgstr "Размер для "
|
273 |
+
|
languages/gallery-ru_RU.mo
CHANGED
Binary file
|
languages/gallery-ru_RU.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,238 +17,246 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Галереи"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Добавить галерею"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "добавить новую галерею"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Редактировать галерею"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Новая галерея"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Просмотреть галерею"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Поиск галереи"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Ни одной галереи не найдено"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Загрузить файлы"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "Choose an image to upload:"
|
72 |
msgstr "Выбрать файлы для загрузки:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
79 |
msgid "Title"
|
80 |
msgstr "Название"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Автор"
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото"
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Опубликование"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Дата"
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активированные плагины"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Подробнее..."
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Настройки"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Установленные плагины"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Рекомендованные к установке плагины"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Скачать"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установлено %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установить с wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Опции сохранены"
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Настройки Галереи"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
149 |
msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
msgid "The size of the cover album for gallery"
|
153 |
msgstr "Размер изображения для обложки альбома галереи"
|
154 |
|
155 |
-
#: gallery-plugin.php:
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "Image size name"
|
158 |
msgstr "Название размера изображение"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Width (in px)"
|
163 |
msgstr "Ширина (в px)"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Height (in px)"
|
168 |
msgstr "Высота (в px)"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Size for gallery image"
|
172 |
msgstr "Размер изображений Галереи"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
176 |
msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Count images in row"
|
180 |
msgstr "Количество изображений в строке"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Start slideshow"
|
184 |
msgstr "Начать слайдшоу"
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Slideshow interval"
|
188 |
msgstr "Интервал времени при показе слайдшоу"
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Attachments order by"
|
192 |
msgstr "Изображения сортируются по"
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "attachment id"
|
196 |
msgstr "id изображения"
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
msgid "attachment title"
|
200 |
msgstr "названию изображения"
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "date"
|
204 |
msgstr "дате"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
208 |
msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "random"
|
212 |
msgstr "произвольно"
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Attachments order"
|
216 |
msgstr "Сортировать изображения"
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Display Return link"
|
228 |
msgstr "Отображать ссылку Вернуться"
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "Display Return link in shortcode"
|
232 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "Label for Return link"
|
236 |
msgstr "Текст для ссылки Вернуться"
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Save Changes"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "FAQ"
|
244 |
msgstr "FAQ"
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Support"
|
248 |
msgstr "Поддержка"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
#: template/gallery-single-template.php:60
|
252 |
msgid "Sorry - nothing to found."
|
253 |
msgstr "Извините, ничего не найдено."
|
@@ -258,6 +267,6 @@ msgstr "Смотреть фотографии »"
|
|
258 |
|
259 |
#~ msgid "Random order"
|
260 |
#~ msgstr "Произвольная сортировка"
|
261 |
-
|
262 |
#~ msgid "Size for gallery album cover"
|
263 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:57+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереи"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Добавить галерею"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "добавить новую галерею"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редактировать галерею"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Новая галерея"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Просмотреть галерею"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Поиск галереи"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Ни одной галереи не найдено"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Загрузить файлы"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
msgid "Gallery Shortcode"
|
69 |
+
msgstr "Шорткод Для Галереи"
|
70 |
+
|
71 |
+
#: gallery-plugin.php:158
|
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:162
|
76 |
msgid "Choose an image to upload:"
|
77 |
msgstr "Выбрать файлы для загрузки:"
|
78 |
|
79 |
+
#: gallery-plugin.php:167
|
80 |
msgid "Please enable JavaScript to use the file uploader."
|
81 |
msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
|
82 |
|
83 |
+
#: gallery-plugin.php:231
|
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:372
|
88 |
msgid "Title"
|
89 |
msgstr "Название"
|
90 |
|
91 |
+
#: gallery-plugin.php:373
|
92 |
msgid "Author"
|
93 |
msgstr "Автор"
|
94 |
|
95 |
+
#: gallery-plugin.php:374
|
96 |
msgid "Photo's"
|
97 |
msgstr "Фото"
|
98 |
|
99 |
+
#: gallery-plugin.php:375
|
100 |
msgid "Public"
|
101 |
msgstr "Опубликование"
|
102 |
|
103 |
+
#: gallery-plugin.php:376
|
104 |
msgid "Date"
|
105 |
msgstr "Дата"
|
106 |
|
107 |
+
#: gallery-plugin.php:523
|
108 |
msgid "Activated plugins"
|
109 |
msgstr "Активированные плагины"
|
110 |
|
111 |
+
#: gallery-plugin.php:525
|
112 |
+
#: gallery-plugin.php:533
|
113 |
+
#: gallery-plugin.php:541
|
114 |
msgid "Read more"
|
115 |
msgstr "Подробнее..."
|
116 |
|
117 |
+
#: gallery-plugin.php:525
|
118 |
+
#: gallery-plugin.php:752
|
119 |
+
#: gallery-plugin.php:767
|
120 |
msgid "Settings"
|
121 |
msgstr "Настройки"
|
122 |
|
123 |
+
#: gallery-plugin.php:531
|
124 |
msgid "Installed plugins"
|
125 |
msgstr "Установленные плагины"
|
126 |
|
127 |
+
#: gallery-plugin.php:539
|
128 |
msgid "Recommended plugins"
|
129 |
msgstr "Рекомендованные к установке плагины"
|
130 |
|
131 |
+
#: gallery-plugin.php:541
|
132 |
msgid "Download"
|
133 |
msgstr "Скачать"
|
134 |
|
135 |
+
#: gallery-plugin.php:541
|
136 |
#, php-format
|
137 |
msgid "Install %s"
|
138 |
msgstr "Установлено %s"
|
139 |
|
140 |
+
#: gallery-plugin.php:541
|
141 |
msgid "Install now from wordpress.org"
|
142 |
msgstr "Установить с wordpress.org"
|
143 |
|
144 |
+
#: gallery-plugin.php:543
|
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:649
|
149 |
msgid "Options saved."
|
150 |
msgstr "Опции сохранены"
|
151 |
|
152 |
+
#: gallery-plugin.php:660
|
153 |
msgid "Gallery Options"
|
154 |
msgstr "Настройки Галереи"
|
155 |
|
156 |
+
#: gallery-plugin.php:663
|
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:667
|
161 |
msgid "The size of the cover album for gallery"
|
162 |
msgstr "Размер изображения для обложки альбома галереи"
|
163 |
|
164 |
+
#: gallery-plugin.php:669
|
165 |
+
#: gallery-plugin.php:677
|
166 |
msgid "Image size name"
|
167 |
msgstr "Название размера изображение"
|
168 |
|
169 |
+
#: gallery-plugin.php:670
|
170 |
+
#: gallery-plugin.php:678
|
171 |
msgid "Width (in px)"
|
172 |
msgstr "Ширина (в px)"
|
173 |
|
174 |
+
#: gallery-plugin.php:671
|
175 |
+
#: gallery-plugin.php:679
|
176 |
msgid "Height (in px)"
|
177 |
msgstr "Высота (в px)"
|
178 |
|
179 |
+
#: gallery-plugin.php:675
|
180 |
msgid "Size for gallery image"
|
181 |
msgstr "Размер изображений Галереи"
|
182 |
|
183 |
+
#: gallery-plugin.php:683
|
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:686
|
188 |
msgid "Count images in row"
|
189 |
msgstr "Количество изображений в строке"
|
190 |
|
191 |
+
#: gallery-plugin.php:692
|
192 |
msgid "Start slideshow"
|
193 |
msgstr "Начать слайдшоу"
|
194 |
|
195 |
+
#: gallery-plugin.php:698
|
196 |
msgid "Slideshow interval"
|
197 |
msgstr "Интервал времени при показе слайдшоу"
|
198 |
|
199 |
+
#: gallery-plugin.php:704
|
200 |
msgid "Attachments order by"
|
201 |
msgstr "Изображения сортируются по"
|
202 |
|
203 |
+
#: gallery-plugin.php:706
|
204 |
msgid "attachment id"
|
205 |
msgstr "id изображения"
|
206 |
|
207 |
+
#: gallery-plugin.php:707
|
208 |
msgid "attachment title"
|
209 |
msgstr "названию изображения"
|
210 |
|
211 |
+
#: gallery-plugin.php:708
|
212 |
msgid "date"
|
213 |
msgstr "дате"
|
214 |
|
215 |
+
#: gallery-plugin.php:709
|
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:710
|
220 |
msgid "random"
|
221 |
msgstr "произвольно"
|
222 |
|
223 |
+
#: gallery-plugin.php:714
|
224 |
msgid "Attachments order"
|
225 |
msgstr "Сортировать изображения"
|
226 |
|
227 |
+
#: gallery-plugin.php:716
|
228 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: gallery-plugin.php:717
|
232 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: gallery-plugin.php:721
|
236 |
msgid "Display Return link"
|
237 |
msgstr "Отображать ссылку Вернуться"
|
238 |
|
239 |
+
#: gallery-plugin.php:727
|
240 |
msgid "Display Return link in shortcode"
|
241 |
msgstr "Отображаться ссылку Вернуться в шорткоде"
|
242 |
|
243 |
+
#: gallery-plugin.php:733
|
244 |
msgid "Label for Return link"
|
245 |
msgstr "Текст для ссылки Вернуться"
|
246 |
|
247 |
+
#: gallery-plugin.php:741
|
248 |
msgid "Save Changes"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: gallery-plugin.php:753
|
252 |
msgid "FAQ"
|
253 |
msgstr "FAQ"
|
254 |
|
255 |
+
#: gallery-plugin.php:754
|
256 |
msgid "Support"
|
257 |
msgstr "Поддержка"
|
258 |
|
259 |
+
#: gallery-plugin.php:865
|
260 |
#: template/gallery-single-template.php:60
|
261 |
msgid "Sorry - nothing to found."
|
262 |
msgstr "Извините, ничего не найдено."
|
267 |
|
268 |
#~ msgid "Random order"
|
269 |
#~ msgstr "Произвольная сортировка"
|
|
|
270 |
#~ msgid "Size for gallery album cover"
|
271 |
#~ msgstr "Размер для "
|
272 |
+
|
languages/gallery-uk.mo
CHANGED
Binary file
|
languages/gallery-uk.po
CHANGED
@@ -2,10 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,238 +17,247 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: gallery-plugin.php:
|
20 |
-
#: gallery-plugin.php:
|
21 |
msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: gallery-plugin.php:
|
25 |
-
#: gallery-plugin.php:
|
26 |
msgid "Galleries"
|
27 |
msgstr "Галереi"
|
28 |
|
29 |
-
#: gallery-plugin.php:
|
30 |
-
#: gallery-plugin.php:
|
31 |
msgid "Gallery"
|
32 |
msgstr "Галерея"
|
33 |
|
34 |
-
#: gallery-plugin.php:
|
35 |
msgid "Add New"
|
36 |
msgstr "Додати новий"
|
37 |
|
38 |
-
#: gallery-plugin.php:
|
39 |
msgid "Add New Gallery"
|
40 |
msgstr "Додати нову галерею"
|
41 |
|
42 |
-
#: gallery-plugin.php:
|
43 |
msgid "Edit Gallery"
|
44 |
msgstr "Редагування галерея"
|
45 |
|
46 |
-
#: gallery-plugin.php:
|
47 |
msgid "New Gallery"
|
48 |
msgstr "Нова галерея"
|
49 |
|
50 |
-
#: gallery-plugin.php:
|
51 |
msgid "View Gallery"
|
52 |
msgstr "Перегляд галереї"
|
53 |
|
54 |
-
#: gallery-plugin.php:
|
55 |
msgid "Search Galleries"
|
56 |
msgstr "Пошук галереї"
|
57 |
|
58 |
-
#: gallery-plugin.php:
|
59 |
msgid "No Galleries found"
|
60 |
msgstr "Галереї, не знайдено"
|
61 |
|
62 |
-
#: gallery-plugin.php:
|
63 |
msgid "Upload File"
|
64 |
msgstr "Завантажити файл"
|
65 |
|
66 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: gallery-plugin.php:
|
71 |
msgid "Choose an image to upload:"
|
72 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
73 |
|
74 |
-
#: gallery-plugin.php:
|
75 |
msgid "Please enable JavaScript to use the file uploader."
|
76 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
77 |
|
78 |
-
#: gallery-plugin.php:
|
|
|
|
|
|
|
|
|
79 |
msgid "Title"
|
80 |
msgstr "Назва"
|
81 |
|
82 |
-
#: gallery-plugin.php:
|
83 |
msgid "Author"
|
84 |
msgstr "Автор "
|
85 |
|
86 |
-
#: gallery-plugin.php:
|
87 |
msgid "Photo's"
|
88 |
msgstr "Фото "
|
89 |
|
90 |
-
#: gallery-plugin.php:
|
91 |
msgid "Public"
|
92 |
msgstr "Громадськості"
|
93 |
|
94 |
-
#: gallery-plugin.php:
|
95 |
msgid "Date"
|
96 |
msgstr "Дата "
|
97 |
|
98 |
-
#: gallery-plugin.php:
|
99 |
msgid "Activated plugins"
|
100 |
msgstr "Активоване плагіни"
|
101 |
|
102 |
-
#: gallery-plugin.php:
|
103 |
-
#: gallery-plugin.php:
|
104 |
-
#: gallery-plugin.php:
|
105 |
msgid "Read more"
|
106 |
msgstr "Читати далі"
|
107 |
|
108 |
-
#: gallery-plugin.php:
|
109 |
-
#: gallery-plugin.php:
|
110 |
-
#: gallery-plugin.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Параметри"
|
113 |
|
114 |
-
#: gallery-plugin.php:
|
115 |
msgid "Installed plugins"
|
116 |
msgstr "Встановлених модулів"
|
117 |
|
118 |
-
#: gallery-plugin.php:
|
119 |
msgid "Recommended plugins"
|
120 |
msgstr "Плагіни Рекомендовані"
|
121 |
|
122 |
-
#: gallery-plugin.php:
|
123 |
msgid "Download"
|
124 |
msgstr "Завантажити"
|
125 |
|
126 |
-
#: gallery-plugin.php:
|
127 |
#, php-format
|
128 |
msgid "Install %s"
|
129 |
msgstr "Установка %s"
|
130 |
|
131 |
-
#: gallery-plugin.php:
|
132 |
msgid "Install now from wordpress.org"
|
133 |
msgstr "Установити зараз від wordpress.org"
|
134 |
|
135 |
-
#: gallery-plugin.php:
|
136 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
137 |
msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
|
138 |
|
139 |
-
#: gallery-plugin.php:
|
140 |
msgid "Options saved."
|
141 |
msgstr "Параметри зберігаються."
|
142 |
|
143 |
-
#: gallery-plugin.php:
|
144 |
msgid "Gallery Options"
|
145 |
msgstr "Параметри галереї"
|
146 |
|
147 |
-
#: gallery-plugin.php:
|
148 |
msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: gallery-plugin.php:
|
152 |
msgid "The size of the cover album for gallery"
|
153 |
msgstr "Розмір обкладинки альбому для галереї"
|
154 |
|
155 |
-
#: gallery-plugin.php:
|
156 |
-
#: gallery-plugin.php:
|
157 |
msgid "Image size name"
|
158 |
msgstr "Ім'я розмір зображення"
|
159 |
|
160 |
-
#: gallery-plugin.php:
|
161 |
-
#: gallery-plugin.php:
|
162 |
msgid "Width (in px)"
|
163 |
msgstr "Ширина (в px)"
|
164 |
|
165 |
-
#: gallery-plugin.php:
|
166 |
-
#: gallery-plugin.php:
|
167 |
msgid "Height (in px)"
|
168 |
msgstr "Висота (в px)"
|
169 |
|
170 |
-
#: gallery-plugin.php:
|
171 |
msgid "Size for gallery image"
|
172 |
msgstr "Розмір зображення галерея"
|
173 |
|
174 |
-
#: gallery-plugin.php:
|
175 |
msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
|
176 |
msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
|
177 |
|
178 |
-
#: gallery-plugin.php:
|
179 |
msgid "Count images in row"
|
180 |
msgstr "Кількість зображень у рядку"
|
181 |
|
182 |
-
#: gallery-plugin.php:
|
183 |
msgid "Start slideshow"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: gallery-plugin.php:
|
187 |
msgid "Slideshow interval"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: gallery-plugin.php:
|
191 |
msgid "Attachments order by"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: gallery-plugin.php:
|
195 |
msgid "attachment id"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: gallery-plugin.php:
|
199 |
msgid "attachment title"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: gallery-plugin.php:
|
203 |
msgid "date"
|
204 |
msgstr "Дата"
|
205 |
|
206 |
-
#: gallery-plugin.php:
|
207 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: gallery-plugin.php:
|
211 |
msgid "random"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: gallery-plugin.php:
|
215 |
msgid "Attachments order"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: gallery-plugin.php:
|
219 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: gallery-plugin.php:
|
223 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: gallery-plugin.php:
|
227 |
msgid "Display Return link"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: gallery-plugin.php:
|
231 |
msgid "Display Return link in shortcode"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: gallery-plugin.php:
|
235 |
msgid "Label for Return link"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: gallery-plugin.php:
|
239 |
msgid "Save Changes"
|
240 |
msgstr "Зберегти зміни"
|
241 |
|
242 |
-
#: gallery-plugin.php:
|
243 |
msgid "FAQ"
|
244 |
msgstr "FAQ "
|
245 |
|
246 |
-
#: gallery-plugin.php:
|
247 |
msgid "Support"
|
248 |
msgstr "Підтримка"
|
249 |
|
250 |
-
#: gallery-plugin.php:
|
251 |
#: template/gallery-single-template.php:60
|
252 |
msgid "Sorry - nothing to found."
|
253 |
msgstr "Вибачте - нічого не знайдено."
|
@@ -258,3 +268,4 @@ msgstr "Дивитися фото »"
|
|
258 |
|
259 |
#~ msgid "Size for gallery album cover"
|
260 |
#~ msgstr "Размер для "
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-06-11 16:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-06-11 16:57+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
|
9 |
+
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: gallery-plugin.php:52
|
21 |
+
#: gallery-plugin.php:653
|
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:76
|
26 |
+
#: gallery-plugin.php:86
|
27 |
msgid "Galleries"
|
28 |
msgstr "Галереi"
|
29 |
|
30 |
+
#: gallery-plugin.php:77
|
31 |
+
#: gallery-plugin.php:554
|
32 |
msgid "Gallery"
|
33 |
msgstr "Галерея"
|
34 |
|
35 |
+
#: gallery-plugin.php:78
|
36 |
msgid "Add New"
|
37 |
msgstr "Додати новий"
|
38 |
|
39 |
+
#: gallery-plugin.php:79
|
40 |
msgid "Add New Gallery"
|
41 |
msgstr "Додати нову галерею"
|
42 |
|
43 |
+
#: gallery-plugin.php:80
|
44 |
msgid "Edit Gallery"
|
45 |
msgstr "Редагування галерея"
|
46 |
|
47 |
+
#: gallery-plugin.php:81
|
48 |
msgid "New Gallery"
|
49 |
msgstr "Нова галерея"
|
50 |
|
51 |
+
#: gallery-plugin.php:82
|
52 |
msgid "View Gallery"
|
53 |
msgstr "Перегляд галереї"
|
54 |
|
55 |
+
#: gallery-plugin.php:83
|
56 |
msgid "Search Galleries"
|
57 |
msgstr "Пошук галереї"
|
58 |
|
59 |
+
#: gallery-plugin.php:84
|
60 |
msgid "No Galleries found"
|
61 |
msgstr "Галереї, не знайдено"
|
62 |
|
63 |
+
#: gallery-plugin.php:141
|
64 |
msgid "Upload File"
|
65 |
msgstr "Завантажити файл"
|
66 |
|
67 |
+
#: gallery-plugin.php:142
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Gallery Shortcode"
|
70 |
+
msgstr "Параметри галереї"
|
71 |
+
|
72 |
+
#: gallery-plugin.php:158
|
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:162
|
77 |
msgid "Choose an image to upload:"
|
78 |
msgstr "Вибрати скріншот, щоб завантажити:"
|
79 |
|
80 |
+
#: gallery-plugin.php:167
|
81 |
msgid "Please enable JavaScript to use the file uploader."
|
82 |
msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
|
83 |
|
84 |
+
#: gallery-plugin.php:231
|
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:372
|
89 |
msgid "Title"
|
90 |
msgstr "Назва"
|
91 |
|
92 |
+
#: gallery-plugin.php:373
|
93 |
msgid "Author"
|
94 |
msgstr "Автор "
|
95 |
|
96 |
+
#: gallery-plugin.php:374
|
97 |
msgid "Photo's"
|
98 |
msgstr "Фото "
|
99 |
|
100 |
+
#: gallery-plugin.php:375
|
101 |
msgid "Public"
|
102 |
msgstr "Громадськості"
|
103 |
|
104 |
+
#: gallery-plugin.php:376
|
105 |
msgid "Date"
|
106 |
msgstr "Дата "
|
107 |
|
108 |
+
#: gallery-plugin.php:523
|
109 |
msgid "Activated plugins"
|
110 |
msgstr "Активоване плагіни"
|
111 |
|
112 |
+
#: gallery-plugin.php:525
|
113 |
+
#: gallery-plugin.php:533
|
114 |
+
#: gallery-plugin.php:541
|
115 |
msgid "Read more"
|
116 |
msgstr "Читати далі"
|
117 |
|
118 |
+
#: gallery-plugin.php:525
|
119 |
+
#: gallery-plugin.php:752
|
120 |
+
#: gallery-plugin.php:767
|
121 |
msgid "Settings"
|
122 |
msgstr "Параметри"
|
123 |
|
124 |
+
#: gallery-plugin.php:531
|
125 |
msgid "Installed plugins"
|
126 |
msgstr "Встановлених модулів"
|
127 |
|
128 |
+
#: gallery-plugin.php:539
|
129 |
msgid "Recommended plugins"
|
130 |
msgstr "Плагіни Рекомендовані"
|
131 |
|
132 |
+
#: gallery-plugin.php:541
|
133 |
msgid "Download"
|
134 |
msgstr "Завантажити"
|
135 |
|
136 |
+
#: gallery-plugin.php:541
|
137 |
#, php-format
|
138 |
msgid "Install %s"
|
139 |
msgstr "Установка %s"
|
140 |
|
141 |
+
#: gallery-plugin.php:541
|
142 |
msgid "Install now from wordpress.org"
|
143 |
msgstr "Установити зараз від wordpress.org"
|
144 |
|
145 |
+
#: gallery-plugin.php:543
|
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:649
|
150 |
msgid "Options saved."
|
151 |
msgstr "Параметри зберігаються."
|
152 |
|
153 |
+
#: gallery-plugin.php:660
|
154 |
msgid "Gallery Options"
|
155 |
msgstr "Параметри галереї"
|
156 |
|
157 |
+
#: gallery-plugin.php:663
|
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:667
|
162 |
msgid "The size of the cover album for gallery"
|
163 |
msgstr "Розмір обкладинки альбому для галереї"
|
164 |
|
165 |
+
#: gallery-plugin.php:669
|
166 |
+
#: gallery-plugin.php:677
|
167 |
msgid "Image size name"
|
168 |
msgstr "Ім'я розмір зображення"
|
169 |
|
170 |
+
#: gallery-plugin.php:670
|
171 |
+
#: gallery-plugin.php:678
|
172 |
msgid "Width (in px)"
|
173 |
msgstr "Ширина (в px)"
|
174 |
|
175 |
+
#: gallery-plugin.php:671
|
176 |
+
#: gallery-plugin.php:679
|
177 |
msgid "Height (in px)"
|
178 |
msgstr "Висота (в px)"
|
179 |
|
180 |
+
#: gallery-plugin.php:675
|
181 |
msgid "Size for gallery image"
|
182 |
msgstr "Розмір зображення галерея"
|
183 |
|
184 |
+
#: gallery-plugin.php:683
|
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:686
|
189 |
msgid "Count images in row"
|
190 |
msgstr "Кількість зображень у рядку"
|
191 |
|
192 |
+
#: gallery-plugin.php:692
|
193 |
msgid "Start slideshow"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: gallery-plugin.php:698
|
197 |
msgid "Slideshow interval"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: gallery-plugin.php:704
|
201 |
msgid "Attachments order by"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: gallery-plugin.php:706
|
205 |
msgid "attachment id"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: gallery-plugin.php:707
|
209 |
msgid "attachment title"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: gallery-plugin.php:708
|
213 |
msgid "date"
|
214 |
msgstr "Дата"
|
215 |
|
216 |
+
#: gallery-plugin.php:709
|
217 |
msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: gallery-plugin.php:710
|
221 |
msgid "random"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: gallery-plugin.php:714
|
225 |
msgid "Attachments order"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: gallery-plugin.php:716
|
229 |
msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: gallery-plugin.php:717
|
233 |
msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: gallery-plugin.php:721
|
237 |
msgid "Display Return link"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: gallery-plugin.php:727
|
241 |
msgid "Display Return link in shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: gallery-plugin.php:733
|
245 |
msgid "Label for Return link"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: gallery-plugin.php:741
|
249 |
msgid "Save Changes"
|
250 |
msgstr "Зберегти зміни"
|
251 |
|
252 |
+
#: gallery-plugin.php:753
|
253 |
msgid "FAQ"
|
254 |
msgstr "FAQ "
|
255 |
|
256 |
+
#: gallery-plugin.php:754
|
257 |
msgid "Support"
|
258 |
msgstr "Підтримка"
|
259 |
|
260 |
+
#: gallery-plugin.php:865
|
261 |
#: template/gallery-single-template.php:60
|
262 |
msgid "Sorry - nothing to found."
|
263 |
msgstr "Вибачте - нічого не знайдено."
|
268 |
|
269 |
#~ msgid "Size for gallery album cover"
|
270 |
#~ msgstr "Размер для "
|
271 |
+
|
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.3.2
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
@@ -48,6 +48,8 @@ If you create your own language pack or update an existing one, you can send <a
|
|
48 |
|
49 |
Dear users, if you have any questions or propositions regarding our plugins (current options, new options, current issues) please feel free to contact us. Please note that we accept requests in English only. All messages on another languages wouldn't be accepted.
|
50 |
|
|
|
|
|
51 |
== Installation ==
|
52 |
|
53 |
1. Upload `Gallery` folder to the directory `/wp-content/plugins/`.
|
@@ -110,6 +112,10 @@ Just setup a necessary order and click 'Save' button.
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
|
|
113 |
= V3.06 - 01.06.2012 =
|
114 |
* Bugfix : The bug with gallery appears above text content was fixed.
|
115 |
|
@@ -185,6 +191,9 @@ Just setup a necessary order and click 'Save' button.
|
|
185 |
|
186 |
== Upgrade Notice ==
|
187 |
|
|
|
|
|
|
|
188 |
= V3.06 =
|
189 |
The bug with gallery appears above text content was fixed.
|
190 |
|
@@ -243,4 +252,4 @@ A possibility to add a caption to each photo of the album is added. A possibilit
|
|
243 |
noConflict for jQuery is added.
|
244 |
|
245 |
= V1.01 =
|
246 |
-
The file uploader is added to the Galleries page in admin section.
|
4 |
Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.2
|
7 |
+
Stable tag: 3.1
|
8 |
|
9 |
This plugin allows you to implement gallery page into your web site.
|
10 |
|
48 |
|
49 |
Dear users, if you have any questions or propositions regarding our plugins (current options, new options, current issues) please feel free to contact us. Please note that we accept requests in English only. All messages on another languages wouldn't be accepted.
|
50 |
|
51 |
+
Also, emails which are reporting about plugin's bugs are accepted for investigation and fixing. Your request must contain URL of the website, issues description and WordPress admin panel access. Plugin customization based on your Wordpress theme is a paid service (standard price is $10, but it could be higer and depends on the complexity of requested changes). We will analize existing issue and make necessary changes after 100% pre-payment.All these paid changes and modifications could be included to the next version of plugin and will be shared for all users like an integral part of the plugin. Free fixing services will be provided for user who send translation on their native language (this should be a new translation of a certain plugin, and you can check available translations on the official plugin page).
|
52 |
+
|
53 |
== Installation ==
|
54 |
|
55 |
1. Upload `Gallery` folder to the directory `/wp-content/plugins/`.
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= V3.1 - 11.06.2012 =
|
116 |
+
* New : Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post.
|
117 |
+
* Bugfix : The bug with gallery shortcode was fixed.
|
118 |
+
|
119 |
= V3.06 - 01.06.2012 =
|
120 |
* Bugfix : The bug with gallery appears above text content was fixed.
|
121 |
|
191 |
|
192 |
== Upgrade Notice ==
|
193 |
|
194 |
+
= V3.1 =
|
195 |
+
Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post. The bug with gallery shortcode was fixed.
|
196 |
+
|
197 |
= V3.06 =
|
198 |
The bug with gallery appears above text content was fixed.
|
199 |
|
252 |
noConflict for jQuery is added.
|
253 |
|
254 |
= V1.01 =
|
255 |
+
The file uploader is added to the Galleries page in admin section.
|
screenshot-3.jpg
CHANGED
File without changes
|
template/gallery-single-template.php
CHANGED
File without changes
|