Gallery by BestWebSoft - Version 2.10

Version Description

  • 20.03.2012 =
  • NEW : Polish language files are added to the plugin.
Download this release

Release Info

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

Code changes from version 2.09 to 2.10

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: 2.09
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -131,14 +131,21 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
131
  function gllr_post_custom_box( $obj = '', $box = '' ) {
132
  global $post;
133
  $key = "gllr_image_text";
 
 
134
 
135
  $post_types = get_post_types( array( '_builtin' => false ) );
136
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) )
137
- chmod( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/", 0777 );
 
 
 
 
138
  ?>
139
  <div style="padding-top:10px;"><label for="uploadscreen"><?php echo __( 'Choose a screenshot to upload:', 'gallery' ); ?></label>
140
  <input name="MAX_FILE_SIZE" value="1048576" type="hidden" />
141
- <div id="file-uploader-demo1" style="padding-top:10px;">
 
142
  <noscript>
143
  <p><?php echo __( 'Please enable JavaScript to use the file uploader.', 'gallery' ); ?></p>
144
  </noscript>
@@ -147,6 +154,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
147
  <div id="hidden"></div>
148
  <div style="clear:both;"></div></div>
149
  <script type="text/javascript">
 
150
  jQuery(document).ready(function()
151
  {
152
  var uploader = new qq.FileUploader({
@@ -166,7 +174,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
166
  jQuery('#images_albumdiv').remove();
167
 
168
  });
169
-
170
  function img_delete(id) {
171
  jQuery('#'+id).hide();
172
  jQuery('#delete_images').append('<input type="hidden" name="delete_images[]" value="'+id+'" />');
@@ -301,6 +309,10 @@ if( ! function_exists( 'gllr_custom_permalinks' ) ) {
301
  $wp_rewrite->add_rule( '(.+)/'.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1', 'top' );
302
  $wp_rewrite->add_rule( ''.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
303
  }
 
 
 
 
304
 
305
  $wp_rewrite->flush_rules();
306
  }
@@ -697,6 +709,4 @@ add_action( 'manage_gallery_posts_custom_column', 'gllr_custom_columns', 10, 2 )
697
  add_action( 'wp_head', 'gllr_add_script' );
698
  add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
699
  add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
700
-
701
-
702
  ?>
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: 2.10
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
131
  function gllr_post_custom_box( $obj = '', $box = '' ) {
132
  global $post;
133
  $key = "gllr_image_text";
134
+ $error = "";
135
+ $uploader = true;
136
 
137
  $post_types = get_post_types( array( '_builtin' => false ) );
138
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) )
139
+ @chmod( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/", 0777 );
140
+ if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) ) {
141
+ $error = "The gallery temp directory not writeable by your webserver. Пожалуйста, используйте стандартный функционал wp для загрузки изобюражений (медиа библиотеку)";
142
+ $uploader = false;
143
+ }
144
  ?>
145
  <div style="padding-top:10px;"><label for="uploadscreen"><?php echo __( 'Choose a screenshot to upload:', 'gallery' ); ?></label>
146
  <input name="MAX_FILE_SIZE" value="1048576" type="hidden" />
147
+ <div id="file-uploader-demo1" style="padding-top:10px;">
148
+ <?php echo $error; ?>
149
  <noscript>
150
  <p><?php echo __( 'Please enable JavaScript to use the file uploader.', 'gallery' ); ?></p>
151
  </noscript>
154
  <div id="hidden"></div>
155
  <div style="clear:both;"></div></div>
156
  <script type="text/javascript">
157
+ <?php if ($uploader === true) { ?>
158
  jQuery(document).ready(function()
159
  {
160
  var uploader = new qq.FileUploader({
174
  jQuery('#images_albumdiv').remove();
175
 
176
  });
177
+ <?php } ?>
178
  function img_delete(id) {
179
  jQuery('#'+id).hide();
180
  jQuery('#delete_images').append('<input type="hidden" name="delete_images[]" value="'+id+'" />');
309
  $wp_rewrite->add_rule( '(.+)/'.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1', 'top' );
310
  $wp_rewrite->add_rule( ''.$parent.'/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
311
  }
312
+ else {
313
+ $wp_rewrite->add_rule( '(.+)/gallery/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[2]&posts_per_page=-1', 'top' );
314
+ $wp_rewrite->add_rule( 'gallery/([^/]+)/?$', 'index.php?post_type=gallery&title=$matches[1]&posts_per_page=-1', 'top' );
315
+ }
316
 
317
  $wp_rewrite->flush_rules();
318
  }
709
  add_action( 'wp_head', 'gllr_add_script' );
710
  add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
711
  add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
 
 
712
  ?>
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-03-12 19:35+0200\n"
6
- "PO-Revision-Date: 2012-03-12 19:35+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgid "Galleries"
22
  msgstr "Galeries"
23
 
24
  #: gallery-plugin.php:76
25
- #: gallery-plugin.php:506
26
  msgid "Gallery"
27
  msgstr "Galerie"
28
 
@@ -58,123 +58,123 @@ msgstr "Pas de galeries trouvées"
58
  msgid "Upload File"
59
  msgstr "Envoi de fichier"
60
 
61
- #: gallery-plugin.php:139
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Choix de la capture d'écran à envoyer :"
64
 
65
- #: gallery-plugin.php:143
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
68
 
69
- #: gallery-plugin.php:325
70
  msgid "Title"
71
  msgstr "Titre"
72
 
73
- #: gallery-plugin.php:326
74
  msgid "Author"
75
  msgstr "Auteur"
76
 
77
- #: gallery-plugin.php:327
78
  msgid "Photo's"
79
  msgstr "Photo's"
80
 
81
- #: gallery-plugin.php:328
82
  msgid "Public"
83
  msgstr "Public"
84
 
85
- #: gallery-plugin.php:329
86
  msgid "Date"
87
  msgstr "Date"
88
 
89
- #: gallery-plugin.php:475
90
  msgid "Activated plugins"
91
  msgstr "Extensions activées"
92
 
93
- #: gallery-plugin.php:477
94
- #: gallery-plugin.php:485
95
- #: gallery-plugin.php:493
96
  msgid "Read more"
97
  msgstr "Lire plus..."
98
 
99
- #: gallery-plugin.php:477
100
- #: gallery-plugin.php:625
101
- #: gallery-plugin.php:640
102
  msgid "Settings"
103
  msgstr "Paramètres"
104
 
105
- #: gallery-plugin.php:483
106
  msgid "Installed plugins"
107
  msgstr "Extensions installées"
108
 
109
- #: gallery-plugin.php:491
110
  msgid "Recommended plugins"
111
  msgstr "Extensions recommandées"
112
 
113
- #: gallery-plugin.php:493
114
  msgid "Download"
115
  msgstr "Télécharger"
116
 
117
- #: gallery-plugin.php:493
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Installation %s"
121
 
122
- #: gallery-plugin.php:493
123
  msgid "Install now from wordpress.org"
124
  msgstr "Installation à partir via wordpress.org"
125
 
126
- #: gallery-plugin.php:495
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
129
 
130
- #: gallery-plugin.php:574
131
  msgid "Options saved."
132
  msgstr "Options sauvegardées"
133
 
134
- #: gallery-plugin.php:581
135
  msgid "Gallery Options"
136
  msgstr "Options de galerie"
137
 
138
- #: gallery-plugin.php:587
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Taille de Couverture de la galerie"
141
 
142
- #: gallery-plugin.php:589
143
- #: gallery-plugin.php:597
144
  msgid "Image size name"
145
  msgstr "Nom de la taille"
146
 
147
- #: gallery-plugin.php:590
148
- #: gallery-plugin.php:598
149
  msgid "Width (in px)"
150
  msgstr "Largeur (en pixels)"
151
 
152
- #: gallery-plugin.php:591
153
- #: gallery-plugin.php:599
154
  msgid "Height (in px)"
155
  msgstr "Hauteur (en pixels)"
156
 
157
- #: gallery-plugin.php:595
158
  msgid "Size for gallery image"
159
  msgstr "Taille de la galerie"
160
 
161
- #: gallery-plugin.php:603
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
164
 
165
- #: gallery-plugin.php:606
166
  msgid "Count images in row"
167
  msgstr "Nombre d'image par ligne"
168
 
169
- #: gallery-plugin.php:614
170
  msgid "Save Changes"
171
  msgstr "Sauvegarder"
172
 
173
- #: gallery-plugin.php:626
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
- #: gallery-plugin.php:627
178
  msgid "Support"
179
  msgstr "Soutien"
180
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20: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"
22
  msgstr "Galeries"
23
 
24
  #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
  msgid "Gallery"
27
  msgstr "Galerie"
28
 
58
  msgid "Upload File"
59
  msgstr "Envoi de fichier"
60
 
61
+ #: gallery-plugin.php:145
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Choix de la capture d'écran à envoyer :"
64
 
65
+ #: gallery-plugin.php:150
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
68
 
69
+ #: gallery-plugin.php:337
70
  msgid "Title"
71
  msgstr "Titre"
72
 
73
+ #: gallery-plugin.php:338
74
  msgid "Author"
75
  msgstr "Auteur"
76
 
77
+ #: gallery-plugin.php:339
78
  msgid "Photo's"
79
  msgstr "Photo's"
80
 
81
+ #: gallery-plugin.php:340
82
  msgid "Public"
83
  msgstr "Public"
84
 
85
+ #: gallery-plugin.php:341
86
  msgid "Date"
87
  msgstr "Date"
88
 
89
+ #: gallery-plugin.php:487
90
  msgid "Activated plugins"
91
  msgstr "Extensions activées"
92
 
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
  msgid "Read more"
97
  msgstr "Lire plus..."
98
 
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
  msgid "Settings"
103
  msgstr "Paramètres"
104
 
105
+ #: gallery-plugin.php:495
106
  msgid "Installed plugins"
107
  msgstr "Extensions installées"
108
 
109
+ #: gallery-plugin.php:503
110
  msgid "Recommended plugins"
111
  msgstr "Extensions recommandées"
112
 
113
+ #: gallery-plugin.php:505
114
  msgid "Download"
115
  msgstr "Télécharger"
116
 
117
+ #: gallery-plugin.php:505
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Installation %s"
121
 
122
+ #: gallery-plugin.php:505
123
  msgid "Install now from wordpress.org"
124
  msgstr "Installation à partir via wordpress.org"
125
 
126
+ #: gallery-plugin.php:507
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
129
 
130
+ #: gallery-plugin.php:586
131
  msgid "Options saved."
132
  msgstr "Options sauvegardées"
133
 
134
+ #: gallery-plugin.php:593
135
  msgid "Gallery Options"
136
  msgstr "Options de galerie"
137
 
138
+ #: gallery-plugin.php:599
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Taille de Couverture de la galerie"
141
 
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
  msgid "Image size name"
145
  msgstr "Nom de la taille"
146
 
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
  msgid "Width (in px)"
150
  msgstr "Largeur (en pixels)"
151
 
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
  msgid "Height (in px)"
155
  msgstr "Hauteur (en pixels)"
156
 
157
+ #: gallery-plugin.php:607
158
  msgid "Size for gallery image"
159
  msgstr "Taille de la galerie"
160
 
161
+ #: gallery-plugin.php:615
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
164
 
165
+ #: gallery-plugin.php:618
166
  msgid "Count images in row"
167
  msgstr "Nombre d'image par ligne"
168
 
169
+ #: gallery-plugin.php:626
170
  msgid "Save Changes"
171
  msgstr "Sauvegarder"
172
 
173
+ #: gallery-plugin.php:638
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
+ #: gallery-plugin.php:639
178
  msgid "Support"
179
  msgstr "Soutien"
180
 
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-03-12 19:35+0200\n"
6
- "PO-Revision-Date: 2012-03-12 19:35+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"
@@ -22,7 +22,7 @@ msgid "Galleries"
22
  msgstr "გალერეა"
23
 
24
  #: gallery-plugin.php:76
25
- #: gallery-plugin.php:506
26
  msgid "Gallery"
27
  msgstr "გალერეა"
28
 
@@ -58,123 +58,123 @@ msgstr "გალერეა არ მოძებნა"
58
  msgid "Upload File"
59
  msgstr "ფაილის ატვირთვა"
60
 
61
- #: gallery-plugin.php:139
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "აირჩიეთ სურათი ასატვირთად:"
64
 
65
- #: gallery-plugin.php:143
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
68
 
69
- #: gallery-plugin.php:325
70
  msgid "Title"
71
  msgstr "სათაური"
72
 
73
- #: gallery-plugin.php:326
74
  msgid "Author"
75
  msgstr "ავტორი"
76
 
77
- #: gallery-plugin.php:327
78
  msgid "Photo's"
79
  msgstr "ფოტო"
80
 
81
- #: gallery-plugin.php:328
82
  msgid "Public"
83
  msgstr "საჯარო"
84
 
85
- #: gallery-plugin.php:329
86
  msgid "Date"
87
  msgstr "თარიღი"
88
 
89
- #: gallery-plugin.php:475
90
  msgid "Activated plugins"
91
  msgstr "გააქტიურებული დანამატები:"
92
 
93
- #: gallery-plugin.php:477
94
- #: gallery-plugin.php:485
95
- #: gallery-plugin.php:493
96
  msgid "Read more"
97
  msgstr "სრულად ნახვა"
98
 
99
- #: gallery-plugin.php:477
100
- #: gallery-plugin.php:625
101
- #: gallery-plugin.php:640
102
  msgid "Settings"
103
  msgstr "პარამეტრები"
104
 
105
- #: gallery-plugin.php:483
106
  msgid "Installed plugins"
107
  msgstr "დაყენებული დანამატები"
108
 
109
- #: gallery-plugin.php:491
110
  msgid "Recommended plugins"
111
  msgstr "რეკომენდირებული დანამატები"
112
 
113
- #: gallery-plugin.php:493
114
  msgid "Download"
115
  msgstr "გადმოტვირთვა"
116
 
117
- #: gallery-plugin.php:493
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "დაყენებულია %s"
121
 
122
- #: gallery-plugin.php:493
123
  msgid "Install now from wordpress.org"
124
  msgstr "დააყენეთ wordpress.org-იდან"
125
 
126
- #: gallery-plugin.php:495
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
129
 
130
- #: gallery-plugin.php:574
131
  msgid "Options saved."
132
  msgstr "პარამეტრები შენახულია"
133
 
134
- #: gallery-plugin.php:581
135
  msgid "Gallery Options"
136
  msgstr "გალერეის პარამეტრები"
137
 
138
- #: gallery-plugin.php:587
139
  msgid "The size of the cover album for gallery"
140
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
141
 
142
- #: gallery-plugin.php:589
143
- #: gallery-plugin.php:597
144
  msgid "Image size name"
145
  msgstr "ზომის სახელი"
146
 
147
- #: gallery-plugin.php:590
148
- #: gallery-plugin.php:598
149
  msgid "Width (in px)"
150
  msgstr "სიგანე(პიქსელებში)"
151
 
152
- #: gallery-plugin.php:591
153
- #: gallery-plugin.php:599
154
  msgid "Height (in px)"
155
  msgstr "სიმაღლე(პიქსელებში)"
156
 
157
- #: gallery-plugin.php:595
158
  msgid "Size for gallery image"
159
  msgstr "ზომა გალერეის სურათისთვის"
160
 
161
- #: gallery-plugin.php:603
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
164
 
165
- #: gallery-plugin.php:606
166
  msgid "Count images in row"
167
  msgstr "სურათების რაოდენობა მწკრივში"
168
 
169
- #: gallery-plugin.php:614
170
  msgid "Save Changes"
171
  msgstr "ცვლილებების შენახვა"
172
 
173
- #: gallery-plugin.php:626
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
- #: gallery-plugin.php:627
178
  msgid "Support"
179
  msgstr "Support"
180
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20: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"
22
  msgstr "გალერეა"
23
 
24
  #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
  msgid "Gallery"
27
  msgstr "გალერეა"
28
 
58
  msgid "Upload File"
59
  msgstr "ფაილის ატვირთვა"
60
 
61
+ #: gallery-plugin.php:145
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "აირჩიეთ სურათი ასატვირთად:"
64
 
65
+ #: gallery-plugin.php:150
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
68
 
69
+ #: gallery-plugin.php:337
70
  msgid "Title"
71
  msgstr "სათაური"
72
 
73
+ #: gallery-plugin.php:338
74
  msgid "Author"
75
  msgstr "ავტორი"
76
 
77
+ #: gallery-plugin.php:339
78
  msgid "Photo's"
79
  msgstr "ფოტო"
80
 
81
+ #: gallery-plugin.php:340
82
  msgid "Public"
83
  msgstr "საჯარო"
84
 
85
+ #: gallery-plugin.php:341
86
  msgid "Date"
87
  msgstr "თარიღი"
88
 
89
+ #: gallery-plugin.php:487
90
  msgid "Activated plugins"
91
  msgstr "გააქტიურებული დანამატები:"
92
 
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
  msgid "Read more"
97
  msgstr "სრულად ნახვა"
98
 
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
  msgid "Settings"
103
  msgstr "პარამეტრები"
104
 
105
+ #: gallery-plugin.php:495
106
  msgid "Installed plugins"
107
  msgstr "დაყენებული დანამატები"
108
 
109
+ #: gallery-plugin.php:503
110
  msgid "Recommended plugins"
111
  msgstr "რეკომენდირებული დანამატები"
112
 
113
+ #: gallery-plugin.php:505
114
  msgid "Download"
115
  msgstr "გადმოტვირთვა"
116
 
117
+ #: gallery-plugin.php:505
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "დაყენებულია %s"
121
 
122
+ #: gallery-plugin.php:505
123
  msgid "Install now from wordpress.org"
124
  msgstr "დააყენეთ wordpress.org-იდან"
125
 
126
+ #: gallery-plugin.php:507
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
129
 
130
+ #: gallery-plugin.php:586
131
  msgid "Options saved."
132
  msgstr "პარამეტრები შენახულია"
133
 
134
+ #: gallery-plugin.php:593
135
  msgid "Gallery Options"
136
  msgstr "გალერეის პარამეტრები"
137
 
138
+ #: gallery-plugin.php:599
139
  msgid "The size of the cover album for gallery"
140
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
141
 
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
  msgid "Image size name"
145
  msgstr "ზომის სახელი"
146
 
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
  msgid "Width (in px)"
150
  msgstr "სიგანე(პიქსელებში)"
151
 
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
  msgid "Height (in px)"
155
  msgstr "სიმაღლე(პიქსელებში)"
156
 
157
+ #: gallery-plugin.php:607
158
  msgid "Size for gallery image"
159
  msgstr "ზომა გალერეის სურათისთვის"
160
 
161
+ #: gallery-plugin.php:615
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
164
 
165
+ #: gallery-plugin.php:618
166
  msgid "Count images in row"
167
  msgstr "სურათების რაოდენობა მწკრივში"
168
 
169
+ #: gallery-plugin.php:626
170
  msgid "Save Changes"
171
  msgstr "ცვლილებების შენახვა"
172
 
173
+ #: gallery-plugin.php:638
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
+ #: gallery-plugin.php:639
178
  msgid "Support"
179
  msgstr "Support"
180
 
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-03-12 19:34+0200\n"
6
- "PO-Revision-Date: 2012-03-12 19:34+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgid "Galleries"
22
  msgstr "Fotoalbum's"
23
 
24
  #: gallery-plugin.php:76
25
- #: gallery-plugin.php:506
26
  msgid "Gallery"
27
  msgstr "Fotoalbum"
28
 
@@ -58,123 +58,123 @@ msgstr "Niets gevonden"
58
  msgid "Upload File"
59
  msgstr "Foto's uploaden"
60
 
61
- #: gallery-plugin.php:139
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Foto's uploaden: "
64
 
65
- #: gallery-plugin.php:143
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
68
 
69
- #: gallery-plugin.php:325
70
  msgid "Title"
71
  msgstr "Titel"
72
 
73
- #: gallery-plugin.php:326
74
  msgid "Author"
75
  msgstr "Auteur"
76
 
77
- #: gallery-plugin.php:327
78
  msgid "Photo's"
79
  msgstr "Foto's"
80
 
81
- #: gallery-plugin.php:328
82
  msgid "Public"
83
  msgstr "Gepubliceerd"
84
 
85
- #: gallery-plugin.php:329
86
  msgid "Date"
87
  msgstr "Datum"
88
 
89
- #: gallery-plugin.php:475
90
  msgid "Activated plugins"
91
  msgstr "Geactiveerde plugins"
92
 
93
- #: gallery-plugin.php:477
94
- #: gallery-plugin.php:485
95
- #: gallery-plugin.php:493
96
  msgid "Read more"
97
  msgstr "Lees verder"
98
 
99
- #: gallery-plugin.php:477
100
- #: gallery-plugin.php:625
101
- #: gallery-plugin.php:640
102
  msgid "Settings"
103
  msgstr "Instellingen"
104
 
105
- #: gallery-plugin.php:483
106
  msgid "Installed plugins"
107
  msgstr "Geinstalleerde plugins"
108
 
109
- #: gallery-plugin.php:491
110
  msgid "Recommended plugins"
111
  msgstr "Aanbevolen plugins"
112
 
113
- #: gallery-plugin.php:493
114
  msgid "Download"
115
  msgstr "Download"
116
 
117
- #: gallery-plugin.php:493
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Install %s"
121
 
122
- #: gallery-plugin.php:493
123
  msgid "Install now from wordpress.org"
124
  msgstr "Installeer nu vanaf wordpress.org"
125
 
126
- #: gallery-plugin.php:495
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
129
 
130
- #: gallery-plugin.php:574
131
  msgid "Options saved."
132
  msgstr "Opties opgeslagen"
133
 
134
- #: gallery-plugin.php:581
135
  msgid "Gallery Options"
136
  msgstr "Fotoalbum opties"
137
 
138
- #: gallery-plugin.php:587
139
  msgid "The size of the cover album for gallery"
140
  msgstr "De afmetingen voor de cover van het album"
141
 
142
- #: gallery-plugin.php:589
143
- #: gallery-plugin.php:597
144
  msgid "Image size name"
145
  msgstr "Afbeelding grootte"
146
 
147
- #: gallery-plugin.php:590
148
- #: gallery-plugin.php:598
149
  msgid "Width (in px)"
150
  msgstr "Breedte (in px)"
151
 
152
- #: gallery-plugin.php:591
153
- #: gallery-plugin.php:599
154
  msgid "Height (in px)"
155
  msgstr "Hoogte (in px)"
156
 
157
- #: gallery-plugin.php:595
158
  msgid "Size for gallery image"
159
  msgstr "Grootte voor album afbeelding"
160
 
161
- #: gallery-plugin.php:603
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
164
 
165
- #: gallery-plugin.php:606
166
  msgid "Count images in row"
167
  msgstr "Aantal afbeeldingen op een rij"
168
 
169
- #: gallery-plugin.php:614
170
  msgid "Save Changes"
171
  msgstr "Bewaar veranderingen"
172
 
173
- #: gallery-plugin.php:626
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
- #: gallery-plugin.php:627
178
  msgid "Support"
179
  msgstr "Support"
180
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20: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"
22
  msgstr "Fotoalbum's"
23
 
24
  #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
  msgid "Gallery"
27
  msgstr "Fotoalbum"
28
 
58
  msgid "Upload File"
59
  msgstr "Foto's uploaden"
60
 
61
+ #: gallery-plugin.php:145
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Foto's uploaden: "
64
 
65
+ #: gallery-plugin.php:150
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
68
 
69
+ #: gallery-plugin.php:337
70
  msgid "Title"
71
  msgstr "Titel"
72
 
73
+ #: gallery-plugin.php:338
74
  msgid "Author"
75
  msgstr "Auteur"
76
 
77
+ #: gallery-plugin.php:339
78
  msgid "Photo's"
79
  msgstr "Foto's"
80
 
81
+ #: gallery-plugin.php:340
82
  msgid "Public"
83
  msgstr "Gepubliceerd"
84
 
85
+ #: gallery-plugin.php:341
86
  msgid "Date"
87
  msgstr "Datum"
88
 
89
+ #: gallery-plugin.php:487
90
  msgid "Activated plugins"
91
  msgstr "Geactiveerde plugins"
92
 
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
  msgid "Read more"
97
  msgstr "Lees verder"
98
 
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
  msgid "Settings"
103
  msgstr "Instellingen"
104
 
105
+ #: gallery-plugin.php:495
106
  msgid "Installed plugins"
107
  msgstr "Geinstalleerde plugins"
108
 
109
+ #: gallery-plugin.php:503
110
  msgid "Recommended plugins"
111
  msgstr "Aanbevolen plugins"
112
 
113
+ #: gallery-plugin.php:505
114
  msgid "Download"
115
  msgstr "Download"
116
 
117
+ #: gallery-plugin.php:505
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Install %s"
121
 
122
+ #: gallery-plugin.php:505
123
  msgid "Install now from wordpress.org"
124
  msgstr "Installeer nu vanaf wordpress.org"
125
 
126
+ #: gallery-plugin.php:507
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
129
 
130
+ #: gallery-plugin.php:586
131
  msgid "Options saved."
132
  msgstr "Opties opgeslagen"
133
 
134
+ #: gallery-plugin.php:593
135
  msgid "Gallery Options"
136
  msgstr "Fotoalbum opties"
137
 
138
+ #: gallery-plugin.php:599
139
  msgid "The size of the cover album for gallery"
140
  msgstr "De afmetingen voor de cover van het album"
141
 
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
  msgid "Image size name"
145
  msgstr "Afbeelding grootte"
146
 
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
  msgid "Width (in px)"
150
  msgstr "Breedte (in px)"
151
 
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
  msgid "Height (in px)"
155
  msgstr "Hoogte (in px)"
156
 
157
+ #: gallery-plugin.php:607
158
  msgid "Size for gallery image"
159
  msgstr "Grootte voor album afbeelding"
160
 
161
+ #: gallery-plugin.php:615
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
164
 
165
+ #: gallery-plugin.php:618
166
  msgid "Count images in row"
167
  msgstr "Aantal afbeeldingen op een rij"
168
 
169
+ #: gallery-plugin.php:626
170
  msgid "Save Changes"
171
  msgstr "Bewaar veranderingen"
172
 
173
+ #: gallery-plugin.php:638
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
+ #: gallery-plugin.php:639
178
  msgid "Support"
179
  msgstr "Support"
180
 
languages/gallery-pl_PL.mo ADDED
Binary file
languages/gallery-pl_PL.po ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: gallery\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20:43+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
+ "Language-Team: BWS <bestwebsoft.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-Language: Polish\n"
15
+ "X-Poedit-Country: POLAND\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: gallery-plugin.php:75
20
+ #: gallery-plugin.php:85
21
+ msgid "Galleries"
22
+ msgstr "Galerie zdjęć"
23
+
24
+ #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
+ msgid "Gallery"
27
+ msgstr "Galeria zdjęć"
28
+
29
+ #: gallery-plugin.php:77
30
+ msgid "Add New"
31
+ msgstr "Dodaj nową"
32
+
33
+ #: gallery-plugin.php:78
34
+ msgid "Add New Gallery"
35
+ msgstr "Dodaj nową galerię"
36
+
37
+ #: gallery-plugin.php:79
38
+ msgid "Edit Gallery"
39
+ msgstr "Edytuj galerię"
40
+
41
+ #: gallery-plugin.php:80
42
+ msgid "New Gallery"
43
+ msgstr "Nowa galeria"
44
+
45
+ #: gallery-plugin.php:81
46
+ msgid "View Gallery"
47
+ msgstr "Zobacz galerię"
48
+
49
+ #: gallery-plugin.php:82
50
+ msgid "Search Galleries"
51
+ msgstr "Szukaj galerii"
52
+
53
+ #: gallery-plugin.php:83
54
+ msgid "No Galleries found"
55
+ msgstr "Nie znaleziono żadnej galerii"
56
+
57
+ #: gallery-plugin.php:126
58
+ msgid "Upload File"
59
+ msgstr "Wgraj plik"
60
+
61
+ #: gallery-plugin.php:145
62
+ msgid "Choose a screenshot to upload:"
63
+ msgstr "Wybierz zrzut ekrany do wgrania na serwer"
64
+
65
+ #: gallery-plugin.php:150
66
+ msgid "Please enable JavaScript to use the file uploader."
67
+ msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
68
+
69
+ #: gallery-plugin.php:337
70
+ msgid "Title"
71
+ msgstr "Tytuł"
72
+
73
+ #: gallery-plugin.php:338
74
+ msgid "Author"
75
+ msgstr "Autor"
76
+
77
+ #: gallery-plugin.php:339
78
+ msgid "Photo's"
79
+ msgstr "Zdjęcie"
80
+
81
+ #: gallery-plugin.php:340
82
+ msgid "Public"
83
+ msgstr "Publiczne"
84
+
85
+ #: gallery-plugin.php:341
86
+ msgid "Date"
87
+ msgstr "Data"
88
+
89
+ #: gallery-plugin.php:487
90
+ msgid "Activated plugins"
91
+ msgstr "Aktywny plugin"
92
+
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
+ msgid "Read more"
97
+ msgstr "Czytaj dalej"
98
+
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
+ msgid "Settings"
103
+ msgstr "Ustawienia"
104
+
105
+ #: gallery-plugin.php:495
106
+ msgid "Installed plugins"
107
+ msgstr "Zainstalowane pluginy"
108
+
109
+ #: gallery-plugin.php:503
110
+ msgid "Recommended plugins"
111
+ msgstr "Rekomendowane pluginy"
112
+
113
+ #: gallery-plugin.php:505
114
+ msgid "Download"
115
+ msgstr "Pobierz"
116
+
117
+ #: gallery-plugin.php:505
118
+ #, php-format
119
+ msgid "Install %s"
120
+ msgstr "Zainstaluj %s"
121
+
122
+ #: gallery-plugin.php:505
123
+ msgid "Install now from wordpress.org"
124
+ msgstr "Zainstaluj teraz z wordpress.org"
125
+
126
+ #: gallery-plugin.php:507
127
+ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
+ msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
129
+
130
+ #: gallery-plugin.php:586
131
+ msgid "Options saved."
132
+ msgstr "Opcje zostały zapisane."
133
+
134
+ #: gallery-plugin.php:593
135
+ msgid "Gallery Options"
136
+ msgstr "Opcje galerii."
137
+
138
+ #: gallery-plugin.php:599
139
+ msgid "The size of the cover album for gallery"
140
+ msgstr "Rozmiar okładki albumu"
141
+
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
+ msgid "Image size name"
145
+ msgstr "Nazwa rozmiaru obrazka"
146
+
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
+ msgid "Width (in px)"
150
+ msgstr "Szerokość (w px)"
151
+
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
+ msgid "Height (in px)"
155
+ msgstr "Wysokość (w px)"
156
+
157
+ #: gallery-plugin.php:607
158
+ msgid "Size for gallery image"
159
+ msgstr "Rozmiar dla obrazka w galerii"
160
+
161
+ #: gallery-plugin.php:615
162
+ msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
+ msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
164
+
165
+ #: gallery-plugin.php:618
166
+ msgid "Count images in row"
167
+ msgstr "Ilość obrazków w rzędzie"
168
+
169
+ #: gallery-plugin.php:626
170
+ msgid "Save Changes"
171
+ msgstr "Zapisz zmiany"
172
+
173
+ #: gallery-plugin.php:638
174
+ msgid "FAQ"
175
+ msgstr "FAQ "
176
+
177
+ #: gallery-plugin.php:639
178
+ msgid "Support"
179
+ msgstr "Wsparcie"
180
+
181
+ #: template/gallery-single-template.php:60
182
+ msgid "Sorry - nothing to found."
183
+ msgstr "Przykro nam - nic nie znaleziono."
184
+
185
+ #: template/gallery-template.php:61
186
+ msgid "See photo &raquo;"
187
+ msgstr "Zobacz zdjęcia &raquo;"
188
+
189
+ #~ msgid "Size for gallery album cover"
190
+ #~ msgstr "Размер для "
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-12 19:34+0200\n"
6
- "PO-Revision-Date: 2012-03-12 19:34+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgid "Galleries"
22
  msgstr "Галереи"
23
 
24
  #: gallery-plugin.php:76
25
- #: gallery-plugin.php:506
26
  msgid "Gallery"
27
  msgstr "Галерея"
28
 
@@ -58,123 +58,123 @@ msgstr "Ни одной галереи не найдено"
58
  msgid "Upload File"
59
  msgstr "Загрузить файлы"
60
 
61
- #: gallery-plugin.php:139
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Выбрать файлы для загрузки: "
64
 
65
- #: gallery-plugin.php:143
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
68
 
69
- #: gallery-plugin.php:325
70
  msgid "Title"
71
  msgstr "Название"
72
 
73
- #: gallery-plugin.php:326
74
  msgid "Author"
75
  msgstr "Автор"
76
 
77
- #: gallery-plugin.php:327
78
  msgid "Photo's"
79
  msgstr "Фото"
80
 
81
- #: gallery-plugin.php:328
82
  msgid "Public"
83
  msgstr "Опубликование"
84
 
85
- #: gallery-plugin.php:329
86
  msgid "Date"
87
  msgstr "Дата"
88
 
89
- #: gallery-plugin.php:475
90
  msgid "Activated plugins"
91
  msgstr "Активированные плагины"
92
 
93
- #: gallery-plugin.php:477
94
- #: gallery-plugin.php:485
95
- #: gallery-plugin.php:493
96
  msgid "Read more"
97
  msgstr "Подробнее..."
98
 
99
- #: gallery-plugin.php:477
100
- #: gallery-plugin.php:625
101
- #: gallery-plugin.php:640
102
  msgid "Settings"
103
  msgstr "Настройки"
104
 
105
- #: gallery-plugin.php:483
106
  msgid "Installed plugins"
107
  msgstr "Установленные плагины"
108
 
109
- #: gallery-plugin.php:491
110
  msgid "Recommended plugins"
111
  msgstr "Рекомендованные к установке плагины"
112
 
113
- #: gallery-plugin.php:493
114
  msgid "Download"
115
  msgstr "Скачать"
116
 
117
- #: gallery-plugin.php:493
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Установлено %s"
121
 
122
- #: gallery-plugin.php:493
123
  msgid "Install now from wordpress.org"
124
  msgstr "Установить с wordpress.org"
125
 
126
- #: gallery-plugin.php:495
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
129
 
130
- #: gallery-plugin.php:574
131
  msgid "Options saved."
132
  msgstr "Опции сохранены"
133
 
134
- #: gallery-plugin.php:581
135
  msgid "Gallery Options"
136
  msgstr "Настройки Галереи"
137
 
138
- #: gallery-plugin.php:587
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Размер изображения для обложки альбома галереи"
141
 
142
- #: gallery-plugin.php:589
143
- #: gallery-plugin.php:597
144
  msgid "Image size name"
145
  msgstr "Название размера изображение"
146
 
147
- #: gallery-plugin.php:590
148
- #: gallery-plugin.php:598
149
  msgid "Width (in px)"
150
  msgstr "Ширина (в px)"
151
 
152
- #: gallery-plugin.php:591
153
- #: gallery-plugin.php:599
154
  msgid "Height (in px)"
155
  msgstr "Высота (в px)"
156
 
157
- #: gallery-plugin.php:595
158
  msgid "Size for gallery image"
159
  msgstr "Размер изображений Галереи"
160
 
161
- #: gallery-plugin.php:603
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
164
 
165
- #: gallery-plugin.php:606
166
  msgid "Count images in row"
167
  msgstr "Количество изображений в строке"
168
 
169
- #: gallery-plugin.php:614
170
  msgid "Save Changes"
171
  msgstr ""
172
 
173
- #: gallery-plugin.php:626
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
- #: gallery-plugin.php:627
178
  msgid "Support"
179
  msgstr "Поддержка"
180
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20:43+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
22
  msgstr "Галереи"
23
 
24
  #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
  msgid "Gallery"
27
  msgstr "Галерея"
28
 
58
  msgid "Upload File"
59
  msgstr "Загрузить файлы"
60
 
61
+ #: gallery-plugin.php:145
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Выбрать файлы для загрузки: "
64
 
65
+ #: gallery-plugin.php:150
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
68
 
69
+ #: gallery-plugin.php:337
70
  msgid "Title"
71
  msgstr "Название"
72
 
73
+ #: gallery-plugin.php:338
74
  msgid "Author"
75
  msgstr "Автор"
76
 
77
+ #: gallery-plugin.php:339
78
  msgid "Photo's"
79
  msgstr "Фото"
80
 
81
+ #: gallery-plugin.php:340
82
  msgid "Public"
83
  msgstr "Опубликование"
84
 
85
+ #: gallery-plugin.php:341
86
  msgid "Date"
87
  msgstr "Дата"
88
 
89
+ #: gallery-plugin.php:487
90
  msgid "Activated plugins"
91
  msgstr "Активированные плагины"
92
 
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
  msgid "Read more"
97
  msgstr "Подробнее..."
98
 
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
  msgid "Settings"
103
  msgstr "Настройки"
104
 
105
+ #: gallery-plugin.php:495
106
  msgid "Installed plugins"
107
  msgstr "Установленные плагины"
108
 
109
+ #: gallery-plugin.php:503
110
  msgid "Recommended plugins"
111
  msgstr "Рекомендованные к установке плагины"
112
 
113
+ #: gallery-plugin.php:505
114
  msgid "Download"
115
  msgstr "Скачать"
116
 
117
+ #: gallery-plugin.php:505
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Установлено %s"
121
 
122
+ #: gallery-plugin.php:505
123
  msgid "Install now from wordpress.org"
124
  msgstr "Установить с wordpress.org"
125
 
126
+ #: gallery-plugin.php:507
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
129
 
130
+ #: gallery-plugin.php:586
131
  msgid "Options saved."
132
  msgstr "Опции сохранены"
133
 
134
+ #: gallery-plugin.php:593
135
  msgid "Gallery Options"
136
  msgstr "Настройки Галереи"
137
 
138
+ #: gallery-plugin.php:599
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Размер изображения для обложки альбома галереи"
141
 
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
  msgid "Image size name"
145
  msgstr "Название размера изображение"
146
 
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
  msgid "Width (in px)"
150
  msgstr "Ширина (в px)"
151
 
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
  msgid "Height (in px)"
155
  msgstr "Высота (в px)"
156
 
157
+ #: gallery-plugin.php:607
158
  msgid "Size for gallery image"
159
  msgstr "Размер изображений Галереи"
160
 
161
+ #: gallery-plugin.php:615
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
164
 
165
+ #: gallery-plugin.php:618
166
  msgid "Count images in row"
167
  msgstr "Количество изображений в строке"
168
 
169
+ #: gallery-plugin.php:626
170
  msgid "Save Changes"
171
  msgstr ""
172
 
173
+ #: gallery-plugin.php:638
174
  msgid "FAQ"
175
  msgstr "FAQ"
176
 
177
+ #: gallery-plugin.php:639
178
  msgid "Support"
179
  msgstr "Поддержка"
180
 
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-03-12 19:34+0200\n"
6
- "PO-Revision-Date: 2012-03-12 19:34+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"
@@ -22,7 +22,7 @@ msgid "Galleries"
22
  msgstr "Галереi"
23
 
24
  #: gallery-plugin.php:76
25
- #: gallery-plugin.php:506
26
  msgid "Gallery"
27
  msgstr "Галерея"
28
 
@@ -58,123 +58,123 @@ msgstr "Галереї, не знайдено"
58
  msgid "Upload File"
59
  msgstr "Завантажити файл"
60
 
61
- #: gallery-plugin.php:139
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Вибрати скріншот, щоб завантажити:"
64
 
65
- #: gallery-plugin.php:143
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
68
 
69
- #: gallery-plugin.php:325
70
  msgid "Title"
71
  msgstr "Назва"
72
 
73
- #: gallery-plugin.php:326
74
  msgid "Author"
75
  msgstr "Автор "
76
 
77
- #: gallery-plugin.php:327
78
  msgid "Photo's"
79
  msgstr "Фото "
80
 
81
- #: gallery-plugin.php:328
82
  msgid "Public"
83
  msgstr "Громадськості"
84
 
85
- #: gallery-plugin.php:329
86
  msgid "Date"
87
  msgstr "Дата "
88
 
89
- #: gallery-plugin.php:475
90
  msgid "Activated plugins"
91
  msgstr "Активоване плагіни"
92
 
93
- #: gallery-plugin.php:477
94
- #: gallery-plugin.php:485
95
- #: gallery-plugin.php:493
96
  msgid "Read more"
97
  msgstr "Читати далі"
98
 
99
- #: gallery-plugin.php:477
100
- #: gallery-plugin.php:625
101
- #: gallery-plugin.php:640
102
  msgid "Settings"
103
  msgstr "Параметри"
104
 
105
- #: gallery-plugin.php:483
106
  msgid "Installed plugins"
107
  msgstr "Встановлених модулів"
108
 
109
- #: gallery-plugin.php:491
110
  msgid "Recommended plugins"
111
  msgstr "Плагіни Рекомендовані"
112
 
113
- #: gallery-plugin.php:493
114
  msgid "Download"
115
  msgstr "Завантажити"
116
 
117
- #: gallery-plugin.php:493
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Установка %s"
121
 
122
- #: gallery-plugin.php:493
123
  msgid "Install now from wordpress.org"
124
  msgstr "Установити зараз від wordpress.org"
125
 
126
- #: gallery-plugin.php:495
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
129
 
130
- #: gallery-plugin.php:574
131
  msgid "Options saved."
132
  msgstr "Параметри зберігаються."
133
 
134
- #: gallery-plugin.php:581
135
  msgid "Gallery Options"
136
  msgstr "Параметри галереї"
137
 
138
- #: gallery-plugin.php:587
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Розмір обкладинки альбому для галереї"
141
 
142
- #: gallery-plugin.php:589
143
- #: gallery-plugin.php:597
144
  msgid "Image size name"
145
  msgstr "Ім'я розмір зображення"
146
 
147
- #: gallery-plugin.php:590
148
- #: gallery-plugin.php:598
149
  msgid "Width (in px)"
150
  msgstr "Ширина (в px)"
151
 
152
- #: gallery-plugin.php:591
153
- #: gallery-plugin.php:599
154
  msgid "Height (in px)"
155
  msgstr "Висота (в px)"
156
 
157
- #: gallery-plugin.php:595
158
  msgid "Size for gallery image"
159
  msgstr "Розмір зображення галерея"
160
 
161
- #: gallery-plugin.php:603
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
164
 
165
- #: gallery-plugin.php:606
166
  msgid "Count images in row"
167
  msgstr "Кількість зображень у рядку"
168
 
169
- #: gallery-plugin.php:614
170
  msgid "Save Changes"
171
  msgstr "Зберегти зміни"
172
 
173
- #: gallery-plugin.php:626
174
  msgid "FAQ"
175
  msgstr "FAQ "
176
 
177
- #: gallery-plugin.php:627
178
  msgid "Support"
179
  msgstr "Підтримка"
180
 
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 20:43+0200\n"
6
+ "PO-Revision-Date: 2012-03-20 20: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"
22
  msgstr "Галереi"
23
 
24
  #: gallery-plugin.php:76
25
+ #: gallery-plugin.php:518
26
  msgid "Gallery"
27
  msgstr "Галерея"
28
 
58
  msgid "Upload File"
59
  msgstr "Завантажити файл"
60
 
61
+ #: gallery-plugin.php:145
62
  msgid "Choose a screenshot to upload:"
63
  msgstr "Вибрати скріншот, щоб завантажити:"
64
 
65
+ #: gallery-plugin.php:150
66
  msgid "Please enable JavaScript to use the file uploader."
67
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
68
 
69
+ #: gallery-plugin.php:337
70
  msgid "Title"
71
  msgstr "Назва"
72
 
73
+ #: gallery-plugin.php:338
74
  msgid "Author"
75
  msgstr "Автор "
76
 
77
+ #: gallery-plugin.php:339
78
  msgid "Photo's"
79
  msgstr "Фото "
80
 
81
+ #: gallery-plugin.php:340
82
  msgid "Public"
83
  msgstr "Громадськості"
84
 
85
+ #: gallery-plugin.php:341
86
  msgid "Date"
87
  msgstr "Дата "
88
 
89
+ #: gallery-plugin.php:487
90
  msgid "Activated plugins"
91
  msgstr "Активоване плагіни"
92
 
93
+ #: gallery-plugin.php:489
94
+ #: gallery-plugin.php:497
95
+ #: gallery-plugin.php:505
96
  msgid "Read more"
97
  msgstr "Читати далі"
98
 
99
+ #: gallery-plugin.php:489
100
+ #: gallery-plugin.php:637
101
+ #: gallery-plugin.php:652
102
  msgid "Settings"
103
  msgstr "Параметри"
104
 
105
+ #: gallery-plugin.php:495
106
  msgid "Installed plugins"
107
  msgstr "Встановлених модулів"
108
 
109
+ #: gallery-plugin.php:503
110
  msgid "Recommended plugins"
111
  msgstr "Плагіни Рекомендовані"
112
 
113
+ #: gallery-plugin.php:505
114
  msgid "Download"
115
  msgstr "Завантажити"
116
 
117
+ #: gallery-plugin.php:505
118
  #, php-format
119
  msgid "Install %s"
120
  msgstr "Установка %s"
121
 
122
+ #: gallery-plugin.php:505
123
  msgid "Install now from wordpress.org"
124
  msgstr "Установити зараз від wordpress.org"
125
 
126
+ #: gallery-plugin.php:507
127
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
128
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
129
 
130
+ #: gallery-plugin.php:586
131
  msgid "Options saved."
132
  msgstr "Параметри зберігаються."
133
 
134
+ #: gallery-plugin.php:593
135
  msgid "Gallery Options"
136
  msgstr "Параметри галереї"
137
 
138
+ #: gallery-plugin.php:599
139
  msgid "The size of the cover album for gallery"
140
  msgstr "Розмір обкладинки альбому для галереї"
141
 
142
+ #: gallery-plugin.php:601
143
+ #: gallery-plugin.php:609
144
  msgid "Image size name"
145
  msgstr "Ім'я розмір зображення"
146
 
147
+ #: gallery-plugin.php:602
148
+ #: gallery-plugin.php:610
149
  msgid "Width (in px)"
150
  msgstr "Ширина (в px)"
151
 
152
+ #: gallery-plugin.php:603
153
+ #: gallery-plugin.php:611
154
  msgid "Height (in px)"
155
  msgstr "Висота (в px)"
156
 
157
+ #: gallery-plugin.php:607
158
  msgid "Size for gallery image"
159
  msgstr "Розмір зображення галерея"
160
 
161
+ #: gallery-plugin.php:615
162
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
163
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
164
 
165
+ #: gallery-plugin.php:618
166
  msgid "Count images in row"
167
  msgstr "Кількість зображень у рядку"
168
 
169
+ #: gallery-plugin.php:626
170
  msgid "Save Changes"
171
  msgstr "Зберегти зміни"
172
 
173
+ #: gallery-plugin.php:638
174
  msgid "FAQ"
175
  msgstr "FAQ "
176
 
177
+ #: gallery-plugin.php:639
178
  msgid "Support"
179
  msgstr "Підтримка"
180
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Gallery ===
2
  Contributors: bestwebsoft
3
- Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=13
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
7
- Stable tag: 2.09
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
@@ -30,6 +30,7 @@ This plugin makes it possible to implement as many galleries as you want into yo
30
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>)
31
  * French (fr_FR) (thanks to Didier)
32
  * Georgian (ka_GE) (thanks to Vako Patashuri)
 
33
  * Russian (ru_RU)
34
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
35
 
@@ -76,6 +77,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
76
 
77
  == Changelog ==
78
 
 
 
 
79
  = V2.09 - 12.03.2012 =
80
  * Changed : BWS plugins section.
81
 
@@ -118,6 +122,9 @@ The multiple files upload is supported by all modern browsers except Internet Ex
118
 
119
  == Upgrade Notice ==
120
 
 
 
 
121
  = V2.09 - 07.03.2012 =
122
  BWS plugins section has been changed.
123
 
1
  === Gallery ===
2
  Contributors: bestwebsoft
3
+ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
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: 2.10
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
30
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>)
31
  * French (fr_FR) (thanks to Didier)
32
  * Georgian (ka_GE) (thanks to Vako Patashuri)
33
+ * Polish (pl_PL) (thanks to Janusz Janczy, Bezcennyczas.pl)
34
  * Russian (ru_RU)
35
  * Ukrainian (uk_UA)(thanks to Ted Mosby)
36
 
77
 
78
  == Changelog ==
79
 
80
+ = V2.10 - 20.03.2012 =
81
+ * NEW : Polish language files are added to the plugin.
82
+
83
  = V2.09 - 12.03.2012 =
84
  * Changed : BWS plugins section.
85
 
122
 
123
  == Upgrade Notice ==
124
 
125
+ = V2.10 =
126
+ Polish language files are added to the plugin.
127
+
128
  = V2.09 - 07.03.2012 =
129
  BWS plugins section has been changed.
130