Gallery by BestWebSoft - Version 3.04

Version Description

  • 27.04.2012 =
  • NEW : Added slideshow for lightbox on single gallery page.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Gallery by BestWebSoft
Version 3.04
Comparing to
See all releases

Code changes from version 3.03 to 3.04

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.03
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -158,7 +158,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
158
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) )
159
  @chmod( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/", 0777 );
160
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) ) {
161
- $error = "The gallery temp directory not writeable by your webserver. Пожалуйста, используйте стандартный функционал wp для загрузки изобюражений (медиа библиотеку)";
162
  $uploader = false;
163
  }
164
  ?>
@@ -346,7 +346,7 @@ if ( ! function_exists( 'gllr_template_redirect' ) ) {
346
  function gllr_template_redirect() {
347
  global $wp_query, $post, $posts;
348
  if( 'gallery' == get_post_type() && "" == $wp_query->query_vars["s"] ) {
349
- include( TEMPLATEPATH . '/gallery-single-template.php' );
350
  exit();
351
  }
352
  }
@@ -556,7 +556,9 @@ if( ! function_exists( 'register_gllr_settings' ) ) {
556
  $gllr_option_defaults = array(
557
  'gllr_custom_size_name' => array( 'album-thumb', 'photo-thumb' ),
558
  'gllr_custom_size_px' => array( array(120, 80), array(160, 120) ),
559
- 'custom_image_row_count' => 3
 
 
560
  );
561
 
562
  // install the option defaults
@@ -603,6 +605,12 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
603
  if( $gllr_request_options["custom_image_row_count"] == "" || $gllr_request_options["custom_image_row_count"] < 1 )
604
  $gllr_request_options["custom_image_row_count"] = 1;
605
 
 
 
 
 
 
 
606
  // array merge incase this version has added new options
607
  $gllr_options = array_merge( $gllr_options, $gllr_request_options );
608
 
@@ -649,6 +657,18 @@ if( ! function_exists( 'gllr_settings_page' ) ) {
649
  <input type="text" name="custom_image_row_count" value="<?php echo $gllr_options["custom_image_row_count"]; ?>" />
650
  </td>
651
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
652
  </table>
653
  <input type="hidden" name="gllr_form_submit" value="submit" />
654
  <p class="submit">
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.04
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
158
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) )
159
  @chmod( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/", 0777 );
160
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) ) {
161
+ $error = __( "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)", 'gallery' );
162
  $uploader = false;
163
  }
164
  ?>
346
  function gllr_template_redirect() {
347
  global $wp_query, $post, $posts;
348
  if( 'gallery' == get_post_type() && "" == $wp_query->query_vars["s"] ) {
349
+ include( STYLESHEETPATH . '/gallery-single-template.php' );
350
  exit();
351
  }
352
  }
556
  $gllr_option_defaults = array(
557
  'gllr_custom_size_name' => array( 'album-thumb', 'photo-thumb' ),
558
  'gllr_custom_size_px' => array( array(120, 80), array(160, 120) ),
559
+ 'custom_image_row_count' => 3,
560
+ 'start_slideshow' => 0,
561
+ 'slideshow_interval' => 2000
562
  );
563
 
564
  // install the option defaults
605
  if( $gllr_request_options["custom_image_row_count"] == "" || $gllr_request_options["custom_image_row_count"] < 1 )
606
  $gllr_request_options["custom_image_row_count"] = 1;
607
 
608
+ if( isset( $_REQUEST['start_slideshow'] ) )
609
+ $gllr_request_options["start_slideshow"] = 1;
610
+ else
611
+ $gllr_request_options["start_slideshow"] = 0;
612
+ $gllr_request_options["slideshow_interval"] = $_REQUEST['slideshow_interval'];
613
+
614
  // array merge incase this version has added new options
615
  $gllr_options = array_merge( $gllr_options, $gllr_request_options );
616
 
657
  <input type="text" name="custom_image_row_count" value="<?php echo $gllr_options["custom_image_row_count"]; ?>" />
658
  </td>
659
  </tr>
660
+ <tr valign="top">
661
+ <th scope="row"><?php _e('Start slideshow', 'gallery' ); ?> </th>
662
+ <td>
663
+ <input type="checkbox" name="start_slideshow" value="1" <?php if( $gllr_options["start_slideshow"] == 1 ) echo 'checked="checked"'; ?> />
664
+ </td>
665
+ </tr>
666
+ <tr valign="top">
667
+ <th scope="row"><?php _e('Slideshow interval', 'gallery' ); ?> </th>
668
+ <td>
669
+ <input type="text" name="slideshow_interval" value="<?php echo $gllr_options["slideshow_interval"]; ?>" />
670
+ </td>
671
+ </tr>
672
  </table>
673
  <input type="hidden" name="gllr_form_submit" value="submit" />
674
  <p class="submit">
languages/gallery-cs_CZ.mo CHANGED
Binary file
languages/gallery-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:42+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:42+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:57
21
- #: gallery-plugin.php:616
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galerie"
29
 
30
  #: gallery-plugin.php:82
31
- #: gallery-plugin.php:544
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
@@ -64,6 +64,10 @@ msgstr "Nebyla nalezena žádná galerie"
64
  msgid "Upload File"
65
  msgstr "Nahrát soubor"
66
 
 
 
 
 
67
  #: gallery-plugin.php:165
68
  msgid "Choose a screenshot to upload:"
69
  msgstr "Vyberte náhled pro nahrání:"
@@ -72,115 +76,123 @@ msgstr "Vyberte náhled pro nahrání:"
72
  msgid "Please enable JavaScript to use the file uploader."
73
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
74
 
75
- #: gallery-plugin.php:362
76
  msgid "Title"
77
  msgstr "Název"
78
 
79
- #: gallery-plugin.php:363
80
  msgid "Author"
81
  msgstr "Autor"
82
 
83
- #: gallery-plugin.php:364
84
  msgid "Photo's"
85
  msgstr "Fotky"
86
 
87
- #: gallery-plugin.php:365
88
  msgid "Public"
89
  msgstr "Veřejné"
90
 
91
- #: gallery-plugin.php:366
92
  msgid "Date"
93
  msgstr "Datum"
94
 
95
- #: gallery-plugin.php:513
96
  msgid "Activated plugins"
97
  msgstr "Aktivní pluginy"
98
 
99
- #: gallery-plugin.php:515
100
- #: gallery-plugin.php:523
101
- #: gallery-plugin.php:531
102
  msgid "Read more"
103
  msgstr "Další informace"
104
 
105
- #: gallery-plugin.php:515
106
- #: gallery-plugin.php:667
107
- #: gallery-plugin.php:682
108
  msgid "Settings"
109
  msgstr "Nastavení"
110
 
111
- #: gallery-plugin.php:521
112
  msgid "Installed plugins"
113
  msgstr "Nainstalované pluginy"
114
 
115
- #: gallery-plugin.php:529
116
  msgid "Recommended plugins"
117
  msgstr "Doporučené pluginy"
118
 
119
- #: gallery-plugin.php:531
120
  msgid "Download"
121
  msgstr "Stáhnout"
122
 
123
- #: gallery-plugin.php:531
124
  #, php-format
125
  msgid "Install %s"
126
  msgstr "Instaluj %s"
127
 
128
- #: gallery-plugin.php:531
129
  msgid "Install now from wordpress.org"
130
  msgstr "Instaluj ihned z wordpress.org"
131
 
132
- #: gallery-plugin.php:533
133
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
134
  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."
135
 
136
- #: gallery-plugin.php:612
137
  msgid "Options saved."
138
  msgstr "Nastavení uložena."
139
 
140
- #: gallery-plugin.php:623
141
  msgid "Gallery Options"
142
  msgstr "Nastavení galerie"
143
 
144
- #: gallery-plugin.php:629
145
  msgid "The size of the cover album for gallery"
146
  msgstr "Rozměry náhledu alba v galerii"
147
 
148
- #: gallery-plugin.php:631
149
- #: gallery-plugin.php:639
150
  msgid "Image size name"
151
  msgstr "Název rozměru"
152
 
153
- #: gallery-plugin.php:632
154
- #: gallery-plugin.php:640
155
  msgid "Width (in px)"
156
  msgstr "Šířka (v px)"
157
 
158
- #: gallery-plugin.php:633
159
- #: gallery-plugin.php:641
160
  msgid "Height (in px)"
161
  msgstr "Výška (v px)"
162
 
163
- #: gallery-plugin.php:637
164
  msgid "Size for gallery image"
165
  msgstr "Rozměry náhledu obrázku v albu"
166
 
167
- #: gallery-plugin.php:645
168
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
169
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
170
 
171
- #: gallery-plugin.php:648
172
  msgid "Count images in row"
173
  msgstr "Počet náhledů zobrazených v jedné řádce"
174
 
175
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
176
  msgid "Save Changes"
177
  msgstr "Uložit změny"
178
 
179
- #: gallery-plugin.php:668
180
  msgid "FAQ"
181
  msgstr "FAQ "
182
 
183
- #: gallery-plugin.php:669
184
  msgid "Support"
185
  msgstr "Podpora"
186
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:09+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:09+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:57
21
+ #: gallery-plugin.php:623
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Galerie"
29
 
30
  #: gallery-plugin.php:82
31
+ #: gallery-plugin.php:543
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
64
  msgid "Upload File"
65
  msgstr "Nahrát soubor"
66
 
67
+ #: gallery-plugin.php:161
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:165
72
  msgid "Choose a screenshot to upload:"
73
  msgstr "Vyberte náhled pro nahrání:"
76
  msgid "Please enable JavaScript to use the file uploader."
77
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
78
 
79
+ #: gallery-plugin.php:361
80
  msgid "Title"
81
  msgstr "Název"
82
 
83
+ #: gallery-plugin.php:362
84
  msgid "Author"
85
  msgstr "Autor"
86
 
87
+ #: gallery-plugin.php:363
88
  msgid "Photo's"
89
  msgstr "Fotky"
90
 
91
+ #: gallery-plugin.php:364
92
  msgid "Public"
93
  msgstr "Veřejné"
94
 
95
+ #: gallery-plugin.php:365
96
  msgid "Date"
97
  msgstr "Datum"
98
 
99
+ #: gallery-plugin.php:512
100
  msgid "Activated plugins"
101
  msgstr "Aktivní pluginy"
102
 
103
+ #: gallery-plugin.php:514
104
+ #: gallery-plugin.php:522
105
+ #: gallery-plugin.php:530
106
  msgid "Read more"
107
  msgstr "Další informace"
108
 
109
+ #: gallery-plugin.php:514
110
+ #: gallery-plugin.php:686
111
+ #: gallery-plugin.php:701
112
  msgid "Settings"
113
  msgstr "Nastavení"
114
 
115
+ #: gallery-plugin.php:520
116
  msgid "Installed plugins"
117
  msgstr "Nainstalované pluginy"
118
 
119
+ #: gallery-plugin.php:528
120
  msgid "Recommended plugins"
121
  msgstr "Doporučené pluginy"
122
 
123
+ #: gallery-plugin.php:530
124
  msgid "Download"
125
  msgstr "Stáhnout"
126
 
127
+ #: gallery-plugin.php:530
128
  #, php-format
129
  msgid "Install %s"
130
  msgstr "Instaluj %s"
131
 
132
+ #: gallery-plugin.php:530
133
  msgid "Install now from wordpress.org"
134
  msgstr "Instaluj ihned z wordpress.org"
135
 
136
+ #: gallery-plugin.php:532
137
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
138
  msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
139
 
140
+ #: gallery-plugin.php:619
141
  msgid "Options saved."
142
  msgstr "Nastavení uložena."
143
 
144
+ #: gallery-plugin.php:630
145
  msgid "Gallery Options"
146
  msgstr "Nastavení galerie"
147
 
148
+ #: gallery-plugin.php:636
149
  msgid "The size of the cover album for gallery"
150
  msgstr "Rozměry náhledu alba v galerii"
151
 
152
+ #: gallery-plugin.php:638
153
+ #: gallery-plugin.php:646
154
  msgid "Image size name"
155
  msgstr "Název rozměru"
156
 
157
+ #: gallery-plugin.php:639
158
+ #: gallery-plugin.php:647
159
  msgid "Width (in px)"
160
  msgstr "Šířka (v px)"
161
 
162
+ #: gallery-plugin.php:640
163
+ #: gallery-plugin.php:648
164
  msgid "Height (in px)"
165
  msgstr "Výška (v px)"
166
 
167
+ #: gallery-plugin.php:644
168
  msgid "Size for gallery image"
169
  msgstr "Rozměry náhledu obrázku v albu"
170
 
171
+ #: gallery-plugin.php:652
172
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
173
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
174
 
175
+ #: gallery-plugin.php:655
176
  msgid "Count images in row"
177
  msgstr "Počet náhledů zobrazených v jedné řádce"
178
 
179
+ #: gallery-plugin.php:661
180
+ msgid "Start slideshow"
181
+ msgstr ""
182
+
183
+ #: gallery-plugin.php:667
184
+ msgid "Slideshow interval"
185
+ msgstr ""
186
+
187
+ #: gallery-plugin.php:675
188
  msgid "Save Changes"
189
  msgstr "Uložit změny"
190
 
191
+ #: gallery-plugin.php:687
192
  msgid "FAQ"
193
  msgstr "FAQ "
194
 
195
+ #: gallery-plugin.php:688
196
  msgid "Support"
197
  msgstr "Podpora"
198
 
languages/gallery-de_DE.mo CHANGED
Binary file
languages/gallery-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:42+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerien"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -63,6 +63,10 @@ msgstr "Keine Galerien gefunden"
63
  msgid "Upload File"
64
  msgstr "Datei hochladen"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Screenshot zum hochladen auswählen:"
@@ -71,115 +75,123 @@ msgstr "Screenshot zum hochladen auswählen:"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Titel"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Author"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Fotos"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Öffentlich"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Datum"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Aktivierte Plugins"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Mehr erfahren"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Einstellungen"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Installierte Plugins"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Benötigte Plugins"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Download"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Installiere %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Direkt von wordpress.org installieren"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Einstellungen gespeichert."
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Galerie Einstellungen"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Die Größe der Bilder in der Albumansicht"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Name der Bilder"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Breite (in px)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Höhe (in px)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Die Größe der Bilder in der Galerie"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Anzahl Bilder in der Reihe"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Einstellungen speichern"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ"
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Support"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galerien"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
63
  msgid "Upload File"
64
  msgstr "Datei hochladen"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Screenshot zum hochladen auswählen:"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Titel"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Author"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Fotos"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Öffentlich"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Datum"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Aktivierte Plugins"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Mehr erfahren"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Einstellungen"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Installierte Plugins"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Benötigte Plugins"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Download"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Installiere %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Direkt von wordpress.org installieren"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Einstellungen gespeichert."
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Galerie Einstellungen"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Die Größe der Bilder in der Albumansicht"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Name der Bilder"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Breite (in px)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Höhe (in px)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Die Größe der Bilder in der Galerie"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Anzahl Bilder in der Reihe"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Einstellungen speichern"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ"
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Support"
197
 
languages/gallery-fr_FR.mo CHANGED
Binary file
languages/gallery-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galeries"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
@@ -63,6 +63,10 @@ msgstr "Pas de galeries trouvées"
63
  msgid "Upload File"
64
  msgstr "Envoi de fichier"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Choix de la capture d'écran à envoyer :"
@@ -71,115 +75,123 @@ msgstr "Choix de la capture d'écran à envoyer :"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Titre"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Auteur"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Photo's"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Public"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Date"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Extensions activées"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Lire plus..."
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Paramètres"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Extensions installées"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Extensions recommandées"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Télécharger"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Installation %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Installation à partir via wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Options sauvegardées"
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Options de galerie"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Taille de Couverture de la galerie"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Nom de la taille"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Largeur (en pixels)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Hauteur (en pixels)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Taille de la galerie"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Nombre d'image par ligne"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Sauvegarder"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ"
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Soutien"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galeries"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Galerie"
33
 
63
  msgid "Upload File"
64
  msgstr "Envoi de fichier"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Choix de la capture d'écran à envoyer :"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Titre"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Auteur"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Photo's"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Public"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Date"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Extensions activées"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Lire plus..."
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Paramètres"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Extensions installées"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Extensions recommandées"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Télécharger"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Installation %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Installation à partir via wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Options sauvegardées"
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Options de galerie"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Taille de Couverture de la galerie"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Nom de la taille"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Largeur (en pixels)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Hauteur (en pixels)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Taille de la galerie"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Nombre d'image par ligne"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Sauvegarder"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ"
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Soutien"
197
 
languages/gallery-hu_HU.mo CHANGED
Binary file
languages/gallery-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galériák"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Galéria"
33
 
@@ -63,6 +63,10 @@ msgstr "Galéria nem található"
63
  msgid "Upload File"
64
  msgstr "Fájl feltöltése"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Nézőkép kiválasztása a feltöltéshez"
@@ -71,115 +75,123 @@ msgstr "Nézőkép kiválasztása a feltöltéshez"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Cím"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Szerző"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Fotók"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Publikus"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Dátum"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Aktivált bővítmények"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Bővebben"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Beállítások"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Telepített bővítmények"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Javasolt bővítmények"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Letöltés"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Telepítés %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Telepítés a wordpress.org -ról"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Beállítások elmentve."
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Galéria beállítások"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Az Album borítójának mérete a Galériában"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Kép méret neve"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Szélesség (px-ben)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Magasság (px-ben)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "A Galéria képeinek mérete"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Képek száma egy sorban"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Változások mentése"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "Gy.I.K."
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Támogatás"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galériák"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Galéria"
33
 
63
  msgid "Upload File"
64
  msgstr "Fájl feltöltése"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Nézőkép kiválasztása a feltöltéshez"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Cím"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Szerző"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Fotók"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Publikus"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Dátum"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Aktivált bővítmények"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Bővebben"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Beállítások"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Telepített bővítmények"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Javasolt bővítmények"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Letöltés"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Telepítés %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Telepítés a wordpress.org -ról"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Beállítások elmentve."
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Galéria beállítások"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Az Album borítójának mérete a Galériában"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Kép méret neve"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Szélesség (px-ben)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Magasság (px-ben)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "A Galéria képeinek mérete"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Képek száma egy sorban"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Változások mentése"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "Gy.I.K."
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Támogatás"
197
 
languages/gallery-it_IT.mo CHANGED
Binary file
languages/gallery-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Gallerie"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Galleria"
33
 
@@ -63,6 +63,10 @@ msgstr "Nessuna galleria trovata"
63
  msgid "Upload File"
64
  msgstr "Carica file"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Sceli uno screenshoot da caricare:"
@@ -71,115 +75,123 @@ msgstr "Sceli uno screenshoot da caricare:"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Per favore abilita JavaScript per usare il file uploadr."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Titolo"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Autore"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Foto"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Pubblico"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Data"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Attivare plugin"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Leggi altro"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Impostazioni"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Plugin installati"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Plugin consigliati"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Download"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Installа %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Installa ora da wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Opzioni salvate."
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Opzioni gallerie"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "La grandezza della copertina dall'album per la galleria"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Image size name"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Larghezza in px"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Altezza in px"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Grandezza per le immagini della galleria"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Conta immagini"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Salva cambiamenti"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ "
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Supporto"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Gallerie"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Galleria"
33
 
63
  msgid "Upload File"
64
  msgstr "Carica file"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Sceli uno screenshoot da caricare:"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Per favore abilita JavaScript per usare il file uploadr."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Titolo"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Autore"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Foto"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Pubblico"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Data"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Attivare plugin"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Leggi altro"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Impostazioni"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Plugin installati"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Plugin consigliati"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Download"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Installа %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Installa ora da wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Opzioni salvate."
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Opzioni gallerie"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "La grandezza della copertina dall'album per la galleria"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Image size name"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Larghezza in px"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Altezza in px"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Grandezza per le immagini della galleria"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Conta immagini"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Salva cambiamenti"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ "
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Supporto"
197
 
languages/gallery-ka_GE.mo CHANGED
Binary file
languages/gallery-ka_GE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "გალერეა"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "გალერეა"
33
 
@@ -63,6 +63,10 @@ msgstr "გალერეა არ მოძებნა"
63
  msgid "Upload File"
64
  msgstr "ფაილის ატვირთვა"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "აირჩიეთ სურათი ასატვირთად:"
@@ -71,115 +75,123 @@ msgstr "აირჩიეთ სურათი ასატვირთად:
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "სათაური"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "ავტორი"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "ფოტო"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "საჯარო"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "თარიღი"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "გააქტიურებული დანამატები:"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "სრულად ნახვა"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "პარამეტრები"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "დაყენებული დანამატები"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "რეკომენდირებული დანამატები"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "გადმოტვირთვა"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "დაყენებულია %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "დააყენეთ wordpress.org-იდან"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "პარამეტრები შენახულია"
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "გალერეის პარამეტრები"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "ზომის სახელი"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "სიგანე(პიქსელებში)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "სიმაღლე(პიქსელებში)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "ზომა გალერეის სურათისთვის"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "სურათების რაოდენობა მწკრივში"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "ცვლილებების შენახვა"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ"
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Support"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "გალერეა"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "გალერეა"
33
 
63
  msgid "Upload File"
64
  msgstr "ფაილის ატვირთვა"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "აირჩიეთ სურათი ასატვირთად:"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "სათაური"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "ავტორი"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "ფოტო"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "საჯარო"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "თარიღი"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "გააქტიურებული დანამატები:"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "სრულად ნახვა"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "პარამეტრები"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "დაყენებული დანამატები"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "რეკომენდირებული დანამატები"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "გადმოტვირთვა"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "დაყენებულია %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "დააყენეთ wordpress.org-იდან"
134
 
135
+ #: gallery-plugin.php:532
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:619
140
  msgid "Options saved."
141
  msgstr "პარამეტრები შენახულია"
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "გალერეის პარამეტრები"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "ზომის სახელი"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "სიგანე(პიქსელებში)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "სიმაღლე(პიქსელებში)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "ზომა გალერეის სურათისთვის"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "სურათების რაოდენობა მწკრივში"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "ცვლილებების შენახვა"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ"
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Support"
197
 
languages/gallery-nl_NL.mo CHANGED
Binary file
languages/gallery-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Fotoalbum's"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Fotoalbum"
33
 
@@ -63,6 +63,10 @@ msgstr "Niets gevonden"
63
  msgid "Upload File"
64
  msgstr "Foto's uploaden"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Foto's uploaden: "
@@ -71,115 +75,123 @@ msgstr "Foto's uploaden: "
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Titel"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Auteur"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Foto's"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Gepubliceerd"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Datum"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Geactiveerde plugins"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Lees verder"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Instellingen"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Geinstalleerde plugins"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Aanbevolen plugins"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Download"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Install %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Installeer nu vanaf wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Opties opgeslagen"
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Fotoalbum opties"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "De afmetingen voor de cover van het album"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Afbeelding grootte"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Breedte (in px)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Hoogte (in px)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Grootte voor album afbeelding"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Aantal afbeeldingen op een rij"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Bewaar veranderingen"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ"
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Support"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Fotoalbum's"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Fotoalbum"
33
 
63
  msgid "Upload File"
64
  msgstr "Foto's uploaden"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Foto's uploaden: "
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Titel"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Auteur"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Foto's"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Gepubliceerd"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Datum"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Geactiveerde plugins"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Lees verder"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Instellingen"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Geinstalleerde plugins"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Aanbevolen plugins"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Download"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Install %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Installeer nu vanaf wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Opties opgeslagen"
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Fotoalbum opties"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "De afmetingen voor de cover van het album"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Afbeelding grootte"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Breedte (in px)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Hoogte (in px)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Grootte voor album afbeelding"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Aantal afbeeldingen op een rij"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Bewaar veranderingen"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ"
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Support"
197
 
languages/gallery-pl_PL.mo CHANGED
Binary file
languages/gallery-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Galerie zdjęć"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Galeria zdjęć"
33
 
@@ -63,6 +63,10 @@ msgstr "Nie znaleziono żadnej galerii"
63
  msgid "Upload File"
64
  msgstr "Wgraj plik"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
@@ -71,115 +75,123 @@ msgstr "Wybierz zrzut ekrany do wgrania na serwer"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Tytuł"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Autor"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Zdjęcie"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Publiczne"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Data"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Aktywny plugin"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Czytaj dalej"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Ustawienia"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Zainstalowane pluginy"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Rekomendowane pluginy"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Pobierz"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Zainstaluj %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Zainstaluj teraz z wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Opcje zostały zapisane."
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Opcje galerii."
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Rozmiar okładki albumu"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Nazwa rozmiaru obrazka"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Szerokość (w px)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Wysokość (w px)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Rozmiar dla obrazka w galerii"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Ilość obrazków w rzędzie"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Zapisz zmiany"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ "
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Wsparcie"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Galerie zdjęć"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Galeria zdjęć"
33
 
63
  msgid "Upload File"
64
  msgstr "Wgraj plik"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Tytuł"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Autor"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Zdjęcie"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Publiczne"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Data"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Aktywny plugin"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Czytaj dalej"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Ustawienia"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Zainstalowane pluginy"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Rekomendowane pluginy"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Pobierz"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Zainstaluj %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Zainstaluj teraz z wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
136
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
137
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
138
 
139
+ #: gallery-plugin.php:619
140
  msgid "Options saved."
141
  msgstr "Opcje zostały zapisane."
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Opcje galerii."
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Rozmiar okładki albumu"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Nazwa rozmiaru obrazka"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Szerokość (w px)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Wysokość (w px)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Rozmiar dla obrazka w galerii"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Ilość obrazków w rzędzie"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Zapisz zmiany"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ "
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Wsparcie"
197
 
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Галереи"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
@@ -63,6 +63,10 @@ msgstr "Ни одной галереи не найдено"
63
  msgid "Upload File"
64
  msgstr "Загрузить файлы"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Выбрать файлы для загрузки: "
@@ -71,115 +75,123 @@ msgstr "Выбрать файлы для загрузки: "
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Название"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Автор"
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Фото"
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Опубликование"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Дата"
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Активированные плагины"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Подробнее..."
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Настройки"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Установленные плагины"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Рекомендованные к установке плагины"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Скачать"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Установлено %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Установить с wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Опции сохранены"
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Настройки Галереи"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Размер изображения для обложки альбома галереи"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Название размера изображение"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Ширина (в px)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Высота (в px)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Размер изображений Галереи"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Количество изображений в строке"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr ""
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ"
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Поддержка"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Галереи"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
63
  msgid "Upload File"
64
  msgstr "Загрузить файлы"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Выбрать файлы для загрузки: "
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Название"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Автор"
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Фото"
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Опубликование"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Дата"
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Активированные плагины"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Подробнее..."
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Настройки"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Установленные плагины"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Рекомендованные к установке плагины"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Скачать"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Установлено %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Установить с wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
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:619
140
  msgid "Options saved."
141
  msgstr "Опции сохранены"
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Настройки Галереи"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Размер изображения для обложки альбома галереи"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Название размера изображение"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Ширина (в px)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Высота (в px)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Размер изображений Галереи"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Количество изображений в строке"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr ""
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ"
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Поддержка"
197
 
languages/gallery-uk.mo CHANGED
Binary file
languages/gallery-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-13 13:43+0200\n"
6
- "PO-Revision-Date: 2012-04-13 13:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
- #: gallery-plugin.php:616
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
@@ -27,7 +27,7 @@ msgid "Galleries"
27
  msgstr "Галереi"
28
 
29
  #: gallery-plugin.php:82
30
- #: gallery-plugin.php:544
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
@@ -63,6 +63,10 @@ msgstr "Галереї, не знайдено"
63
  msgid "Upload File"
64
  msgstr "Завантажити файл"
65
 
 
 
 
 
66
  #: gallery-plugin.php:165
67
  msgid "Choose a screenshot to upload:"
68
  msgstr "Вибрати скріншот, щоб завантажити:"
@@ -71,115 +75,123 @@ msgstr "Вибрати скріншот, щоб завантажити:"
71
  msgid "Please enable JavaScript to use the file uploader."
72
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
73
 
74
- #: gallery-plugin.php:362
75
  msgid "Title"
76
  msgstr "Назва"
77
 
78
- #: gallery-plugin.php:363
79
  msgid "Author"
80
  msgstr "Автор "
81
 
82
- #: gallery-plugin.php:364
83
  msgid "Photo's"
84
  msgstr "Фото "
85
 
86
- #: gallery-plugin.php:365
87
  msgid "Public"
88
  msgstr "Громадськості"
89
 
90
- #: gallery-plugin.php:366
91
  msgid "Date"
92
  msgstr "Дата "
93
 
94
- #: gallery-plugin.php:513
95
  msgid "Activated plugins"
96
  msgstr "Активоване плагіни"
97
 
98
- #: gallery-plugin.php:515
99
- #: gallery-plugin.php:523
100
- #: gallery-plugin.php:531
101
  msgid "Read more"
102
  msgstr "Читати далі"
103
 
104
- #: gallery-plugin.php:515
105
- #: gallery-plugin.php:667
106
- #: gallery-plugin.php:682
107
  msgid "Settings"
108
  msgstr "Параметри"
109
 
110
- #: gallery-plugin.php:521
111
  msgid "Installed plugins"
112
  msgstr "Встановлених модулів"
113
 
114
- #: gallery-plugin.php:529
115
  msgid "Recommended plugins"
116
  msgstr "Плагіни Рекомендовані"
117
 
118
- #: gallery-plugin.php:531
119
  msgid "Download"
120
  msgstr "Завантажити"
121
 
122
- #: gallery-plugin.php:531
123
  #, php-format
124
  msgid "Install %s"
125
  msgstr "Установка %s"
126
 
127
- #: gallery-plugin.php:531
128
  msgid "Install now from wordpress.org"
129
  msgstr "Установити зараз від wordpress.org"
130
 
131
- #: gallery-plugin.php:533
132
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
133
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
134
 
135
- #: gallery-plugin.php:612
136
  msgid "Options saved."
137
  msgstr "Параметри зберігаються."
138
 
139
- #: gallery-plugin.php:623
140
  msgid "Gallery Options"
141
  msgstr "Параметри галереї"
142
 
143
- #: gallery-plugin.php:629
144
  msgid "The size of the cover album for gallery"
145
  msgstr "Розмір обкладинки альбому для галереї"
146
 
147
- #: gallery-plugin.php:631
148
- #: gallery-plugin.php:639
149
  msgid "Image size name"
150
  msgstr "Ім'я розмір зображення"
151
 
152
- #: gallery-plugin.php:632
153
- #: gallery-plugin.php:640
154
  msgid "Width (in px)"
155
  msgstr "Ширина (в px)"
156
 
157
- #: gallery-plugin.php:633
158
- #: gallery-plugin.php:641
159
  msgid "Height (in px)"
160
  msgstr "Висота (в px)"
161
 
162
- #: gallery-plugin.php:637
163
  msgid "Size for gallery image"
164
  msgstr "Розмір зображення галерея"
165
 
166
- #: gallery-plugin.php:645
167
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
168
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
169
 
170
- #: gallery-plugin.php:648
171
  msgid "Count images in row"
172
  msgstr "Кількість зображень у рядку"
173
 
174
- #: gallery-plugin.php:656
 
 
 
 
 
 
 
 
175
  msgid "Save Changes"
176
  msgstr "Зберегти зміни"
177
 
178
- #: gallery-plugin.php:668
179
  msgid "FAQ"
180
  msgstr "FAQ "
181
 
182
- #: gallery-plugin.php:669
183
  msgid "Support"
184
  msgstr "Підтримка"
185
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-27 11:10+0200\n"
6
+ "PO-Revision-Date: 2012-04-27 11:10+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: gallery-plugin.php:57
20
+ #: gallery-plugin.php:623
21
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
22
  msgstr ""
23
 
27
  msgstr "Галереi"
28
 
29
  #: gallery-plugin.php:82
30
+ #: gallery-plugin.php:543
31
  msgid "Gallery"
32
  msgstr "Галерея"
33
 
63
  msgid "Upload File"
64
  msgstr "Завантажити файл"
65
 
66
+ #: gallery-plugin.php:161
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:165
71
  msgid "Choose a screenshot to upload:"
72
  msgstr "Вибрати скріншот, щоб завантажити:"
75
  msgid "Please enable JavaScript to use the file uploader."
76
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
77
 
78
+ #: gallery-plugin.php:361
79
  msgid "Title"
80
  msgstr "Назва"
81
 
82
+ #: gallery-plugin.php:362
83
  msgid "Author"
84
  msgstr "Автор "
85
 
86
+ #: gallery-plugin.php:363
87
  msgid "Photo's"
88
  msgstr "Фото "
89
 
90
+ #: gallery-plugin.php:364
91
  msgid "Public"
92
  msgstr "Громадськості"
93
 
94
+ #: gallery-plugin.php:365
95
  msgid "Date"
96
  msgstr "Дата "
97
 
98
+ #: gallery-plugin.php:512
99
  msgid "Activated plugins"
100
  msgstr "Активоване плагіни"
101
 
102
+ #: gallery-plugin.php:514
103
+ #: gallery-plugin.php:522
104
+ #: gallery-plugin.php:530
105
  msgid "Read more"
106
  msgstr "Читати далі"
107
 
108
+ #: gallery-plugin.php:514
109
+ #: gallery-plugin.php:686
110
+ #: gallery-plugin.php:701
111
  msgid "Settings"
112
  msgstr "Параметри"
113
 
114
+ #: gallery-plugin.php:520
115
  msgid "Installed plugins"
116
  msgstr "Встановлених модулів"
117
 
118
+ #: gallery-plugin.php:528
119
  msgid "Recommended plugins"
120
  msgstr "Плагіни Рекомендовані"
121
 
122
+ #: gallery-plugin.php:530
123
  msgid "Download"
124
  msgstr "Завантажити"
125
 
126
+ #: gallery-plugin.php:530
127
  #, php-format
128
  msgid "Install %s"
129
  msgstr "Установка %s"
130
 
131
+ #: gallery-plugin.php:530
132
  msgid "Install now from wordpress.org"
133
  msgstr "Установити зараз від wordpress.org"
134
 
135
+ #: gallery-plugin.php:532
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:619
140
  msgid "Options saved."
141
  msgstr "Параметри зберігаються."
142
 
143
+ #: gallery-plugin.php:630
144
  msgid "Gallery Options"
145
  msgstr "Параметри галереї"
146
 
147
+ #: gallery-plugin.php:636
148
  msgid "The size of the cover album for gallery"
149
  msgstr "Розмір обкладинки альбому для галереї"
150
 
151
+ #: gallery-plugin.php:638
152
+ #: gallery-plugin.php:646
153
  msgid "Image size name"
154
  msgstr "Ім'я розмір зображення"
155
 
156
+ #: gallery-plugin.php:639
157
+ #: gallery-plugin.php:647
158
  msgid "Width (in px)"
159
  msgstr "Ширина (в px)"
160
 
161
+ #: gallery-plugin.php:640
162
+ #: gallery-plugin.php:648
163
  msgid "Height (in px)"
164
  msgstr "Висота (в px)"
165
 
166
+ #: gallery-plugin.php:644
167
  msgid "Size for gallery image"
168
  msgstr "Розмір зображення галерея"
169
 
170
+ #: gallery-plugin.php:652
171
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
172
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
173
 
174
+ #: gallery-plugin.php:655
175
  msgid "Count images in row"
176
  msgstr "Кількість зображень у рядку"
177
 
178
+ #: gallery-plugin.php:661
179
+ msgid "Start slideshow"
180
+ msgstr ""
181
+
182
+ #: gallery-plugin.php:667
183
+ msgid "Slideshow interval"
184
+ msgstr ""
185
+
186
+ #: gallery-plugin.php:675
187
  msgid "Save Changes"
188
  msgstr "Зберегти зміни"
189
 
190
+ #: gallery-plugin.php:687
191
  msgid "FAQ"
192
  msgstr "FAQ "
193
 
194
+ #: gallery-plugin.php:688
195
  msgid "Support"
196
  msgstr "Підтримка"
197
 
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.1
7
- Stable tag: 3.03
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
@@ -86,6 +86,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
86
 
87
  == Changelog ==
88
 
 
 
 
89
  = V3.03 - 19.04.2012 =
90
  * Bugfix : The bug related with the upload of the photos on the multisite network was fixed.
91
 
@@ -149,6 +152,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
149
 
150
  == Upgrade Notice ==
151
 
 
 
 
152
  = V3.03 =
153
  The bug related with the upload of the photos on the multisite network was fixed.
154
 
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.1
7
+ Stable tag: 3.04
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
86
 
87
  == Changelog ==
88
 
89
+ = V3.04 - 27.04.2012 =
90
+ * NEW : Added slideshow for lightbox on single gallery page.
91
+
92
  = V3.03 - 19.04.2012 =
93
  * Bugfix : The bug related with the upload of the photos on the multisite network was fixed.
94
 
152
 
153
  == Upgrade Notice ==
154
 
155
+ = V3.04 =
156
+ Added slideshow for lightbox on single gallery page.
157
+
158
  = V3.03 =
159
  The bug related with the upload of the photos on the multisite network was fixed.
160
 
screenshot-3.jpg CHANGED
Binary file
template/gallery-single-template.php CHANGED
@@ -74,7 +74,11 @@
74
  'speedOut' : 300,
75
  'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
76
  return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
77
- }
 
 
 
 
78
  });
79
  });
80
  })(jQuery);
74
  'speedOut' : 300,
75
  'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
76
  return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + 'Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
77
+ }<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>,
78
+ 'onComplete': function() {
79
+ clearTimeout(jQuery.fancybox.slider);
80
+ jQuery.fancybox.slider=setTimeout("jQuery.fancybox.next()",<?php echo empty( $gllr_options['slideshow_interval'] )? 2000 : $gllr_options['slideshow_interval'] ; ?>);
81
+ }<?php } ?>
82
  });
83
  });
84
  })(jQuery);