Gallery by BestWebSoft - Version 3.1.1

Version Description

  • 13.06.2012 =
  • Bugfix : The bug with gallery uploader was fixed.
Download this release

Release Info

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

Code changes from version 3.1 to 3.1.1

gallery-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Gallery Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
- Version: 3.1
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -152,8 +152,6 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
152
  $uploader = true;
153
 
154
  $post_types = get_post_types( array( '_builtin' => false ) );
155
- if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) )
156
- @chmod( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/", 0777 );
157
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) ) {
158
  $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' );
159
  $uploader = false;
@@ -176,7 +174,7 @@ if ( ! function_exists( 'gllr_post_custom_box' ) ) {
176
  {
177
  var uploader = new qq.FileUploader({
178
  element: document.getElementById('file-uploader-demo1'),
179
- action: '<?php echo plugins_url( "upload/php.php" , __FILE__ ); ?>',
180
  debug: false,
181
  onComplete: function(id, fileName, result) {
182
  if(result.error) {
@@ -898,6 +896,171 @@ if ( ! function_exists ( 'gllr_shortcode' ) ) {
898
  }
899
  }
900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
902
  register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
903
 
@@ -929,4 +1092,6 @@ add_action( 'admin_enqueue_scripts', 'gllr_admin_head' );
929
  add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
930
 
931
  add_shortcode( 'print_gllr', 'gllr_shortcode' );
 
 
932
  ?>
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: This plugin allows you to implement gallery page into web site.
6
  Author: BestWebSoft
7
+ Version: 3.1.1
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
152
  $uploader = true;
153
 
154
  $post_types = get_post_types( array( '_builtin' => false ) );
 
 
155
  if( ! is_writable ( ABSPATH ."wp-content/plugins/gallery-plugin/upload/files/" ) ) {
156
  $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' );
157
  $uploader = false;
174
  {
175
  var uploader = new qq.FileUploader({
176
  element: document.getElementById('file-uploader-demo1'),
177
+ action: '../wp-admin/admin-ajax.php?action=upload_gallery_image',
178
  debug: false,
179
  onComplete: function(id, fileName, result) {
180
  if(result.error) {
896
  }
897
  }
898
 
899
+ if( ! function_exists( 'gllr_add_script' ) ){
900
+ function upload_gallery_image() {
901
+ class qqUploadedFileXhr {
902
+ /**
903
+ * Save the file to the specified path
904
+ * @return boolean TRUE on success
905
+ */
906
+ function save($path) {
907
+ $input = fopen("php://input", "r");
908
+ $temp = tmpfile();
909
+ $realSize = stream_copy_to_stream($input, $temp);
910
+ fclose($input);
911
+
912
+ if ($realSize != $this->getSize()){
913
+ return false;
914
+ }
915
+
916
+ $target = fopen($path, "w");
917
+ fseek($temp, 0, SEEK_SET);
918
+ stream_copy_to_stream($temp, $target);
919
+ fclose($target);
920
+
921
+ return true;
922
+ }
923
+ function getName() {
924
+ return $_GET['qqfile'];
925
+ }
926
+ function getSize() {
927
+ if (isset($_SERVER["CONTENT_LENGTH"])){
928
+ return (int)$_SERVER["CONTENT_LENGTH"];
929
+ } else {
930
+ throw new Exception('Getting content length is not supported.');
931
+ }
932
+ }
933
+ }
934
+
935
+ /**
936
+ * Handle file uploads via regular form post (uses the $_FILES array)
937
+ */
938
+ class qqUploadedFileForm {
939
+ /**
940
+ * Save the file to the specified path
941
+ * @return boolean TRUE on success
942
+ */
943
+ function save($path) {
944
+ if(!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path)){
945
+ return false;
946
+ }
947
+ return true;
948
+ }
949
+ function getName() {
950
+ return $_FILES['qqfile']['name'];
951
+ }
952
+ function getSize() {
953
+ return $_FILES['qqfile']['size'];
954
+ }
955
+ }
956
+
957
+ class qqFileUploader {
958
+ private $allowedExtensions = array();
959
+ private $sizeLimit = 10485760;
960
+ private $file;
961
+
962
+ function __construct(array $allowedExtensions = array(), $sizeLimit = 10485760){
963
+ $allowedExtensions = array_map("strtolower", $allowedExtensions);
964
+
965
+ $this->allowedExtensions = $allowedExtensions;
966
+ $this->sizeLimit = $sizeLimit;
967
+
968
+ //$this->checkServerSettings();
969
+
970
+ if (isset($_GET['qqfile'])) {
971
+ $this->file = new qqUploadedFileXhr();
972
+ } elseif (isset($_FILES['qqfile'])) {
973
+ $this->file = new qqUploadedFileForm();
974
+ } else {
975
+ $this->file = false;
976
+ }
977
+ }
978
+
979
+ private function checkServerSettings(){
980
+ $postSize = $this->toBytes(ini_get('post_max_size'));
981
+ $uploadSize = $this->toBytes(ini_get('upload_max_filesize'));
982
+
983
+ if ($postSize < $this->sizeLimit || $uploadSize < $this->sizeLimit){
984
+ $size = max(1, $this->sizeLimit / 1024 / 1024) . 'M';
985
+ die("{error:'increase post_max_size and upload_max_filesize to $size'}");
986
+ }
987
+ }
988
+
989
+ private function toBytes($str){
990
+ $val = trim($str);
991
+ $last = strtolower($str[strlen($str)-1]);
992
+ switch($last) {
993
+ case 'g': $val *= 1024;
994
+ case 'm': $val *= 1024;
995
+ case 'k': $val *= 1024;
996
+ }
997
+ return $val;
998
+ }
999
+
1000
+ /**
1001
+ * Returns array('success'=>true) or array('error'=>'error message')
1002
+ */
1003
+ function handleUpload($uploadDirectory, $replaceOldFile = FALSE){
1004
+ if (!is_writable($uploadDirectory)){
1005
+ return "{error:'Server error. Upload directory isn't writable.'}";
1006
+ }
1007
+
1008
+ if (!$this->file){
1009
+ return "{error:'No files were uploaded.'}";
1010
+ }
1011
+
1012
+ $size = $this->file->getSize();
1013
+
1014
+ if ($size == 0) {
1015
+ return "{error:'File is empty'}";
1016
+ }
1017
+
1018
+ if ($size > $this->sizeLimit) {
1019
+ return "{error:'File is too large'}";
1020
+ }
1021
+
1022
+ $pathinfo = pathinfo($this->file->getName());
1023
+ $ext = $pathinfo['extension'];
1024
+ $filename = str_replace(".".$ext, "", $pathinfo['basename']);
1025
+ //$filename = md5(uniqid());
1026
+
1027
+ if($this->allowedExtensions && !in_array(strtolower($ext), $this->allowedExtensions)){
1028
+ $these = implode(', ', $this->allowedExtensions);
1029
+ return "{error:'File has an invalid extension, it should be one of $these .'}";
1030
+ }
1031
+
1032
+ if(!$replaceOldFile){
1033
+ /// don't overwrite previous files that were uploaded
1034
+ while (file_exists($uploadDirectory . $filename . '.' . $ext)) {
1035
+ $filename .= rand(10, 99);
1036
+ }
1037
+ }
1038
+
1039
+ if ($this->file->save($uploadDirectory . $filename . '.' . $ext)){
1040
+
1041
+ list($width, $height, $type, $attr) = getimagesize($uploadDirectory . $filename . '.' . $ext);
1042
+ return "{success:true,width:".$width.",height:".$height."}";
1043
+ } else {
1044
+ return "{error:'Could not save uploaded file. The upload was cancelled, or server error encountered'}";
1045
+ }
1046
+
1047
+ }
1048
+ }
1049
+
1050
+ // list of valid extensions, ex. array("jpeg", "xml", "bmp")
1051
+ $allowedExtensions = array("jpeg", "jpg", "gif", "png");
1052
+ // max file size in bytes
1053
+ $sizeLimit = 10 * 1024 * 1024;
1054
+
1055
+ $uploader = new qqFileUploader( $allowedExtensions, $sizeLimit );
1056
+ $result = $uploader->handleUpload( plugin_dir_path( __FILE__ ).'upload/files/' );
1057
+
1058
+ // to pass data through iframe you will need to encode all html tags
1059
+ echo $result;
1060
+ die(); // this is required to return a proper result
1061
+ }
1062
+ }
1063
+
1064
  register_activation_hook( __FILE__, 'gllr_plugin_install' ); // activate plugin
1065
  register_uninstall_hook( __FILE__, 'gllr_plugin_uninstall' ); // deactivate plugin
1066
 
1092
  add_action( 'wp_enqueue_scripts', 'gllr_wp_head' );
1093
 
1094
  add_shortcode( 'print_gllr', 'gllr_shortcode' );
1095
+
1096
+ add_action('wp_ajax_upload_gallery_image', 'upload_gallery_image');
1097
  ?>
languages/gallery-cs_CZ.mo CHANGED
Binary file
languages/gallery-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:55+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:55+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galerie"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
@@ -69,197 +69,197 @@ msgstr "Nahrát soubor"
69
  msgid "Gallery Shortcode"
70
  msgstr "Nastavení galerie"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Vyberte náhled pro nahrání:"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Název"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Fotky"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Veřejné"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Aktivní pluginy"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Další informace"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Nastavení"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Nainstalované pluginy"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Doporučené pluginy"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Stáhnout"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Instaluj %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Instaluj ihned z wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Nastavení uložena."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Nastavení galerie"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Rozměry náhledu alba v galerii"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Název rozměru"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Šířka (v px)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Výška (v px)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Rozměry náhledu obrázku v albu"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Počet náhledů zobrazených v jedné řádce"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Uložit změny"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Podpora"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Omlouvám se - nic nenalezeno."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:08+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:08+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Josef Sukdol <josef.sukdol@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
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:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Nastavení galerie"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Vyberte náhled pro nahrání:"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Prosím aktivujte JavaScript pro použití nahrávacího apletu."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Název"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Fotky"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Veřejné"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Aktivní pluginy"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Další informace"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Nastavení"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Nainstalované pluginy"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Doporučené pluginy"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Stáhnout"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Instaluj %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Instaluj ihned z wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Pokud máte jakékoliv dotazy, prosím kontaktujte nás na plugin@bestwebsoft.com a nebo vyplňte kontaktní formulář na našich stránkách."
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Nastavení uložena."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Nastavení galerie"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Rozměry náhledu alba v galerii"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Název rozměru"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Šířka (v px)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Výška (v px)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Rozměry náhledu obrázku v albu"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress vytvoří kopii náhledu obrázku v zadaných rozměrech při nahrání nového obrázku."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Počet náhledů zobrazených v jedné řádce"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Uložit změny"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Podpora"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Omlouvám se - nic nenalezeno."
languages/gallery-de_DE.mo CHANGED
Binary file
languages/gallery-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:55+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:55+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galerien"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
@@ -69,197 +69,197 @@ msgstr "Datei hochladen"
69
  msgid "Gallery Shortcode"
70
  msgstr "Galerie Einstellungen"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Screenshot zum hochladen auswählen:"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Titel"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Author"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Fotos"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Öffentlich"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Aktivierte Plugins"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Mehr erfahren"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Einstellungen"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Installierte Plugins"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Benötigte Plugins"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installiere %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Direkt von wordpress.org installieren"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Einstellungen gespeichert."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Galerie Einstellungen"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Die Größe der Bilder in der Albumansicht"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Name der Bilder"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Breite (in px)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Höhe (in px)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Die Größe der Bilder in der Galerie"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Anzahl Bilder in der Reihe"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Einstellungen speichern"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Leider nichts gefunden."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:08+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:08+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Galerien"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Galerie Einstellungen"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Screenshot zum hochladen auswählen:"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Please enable JavaScript um den File-Uploader zu benutzen."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Titel"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Author"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Fotos"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Öffentlich"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Aktivierte Plugins"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Mehr erfahren"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Einstellungen"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Installierte Plugins"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Benötigte Plugins"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installiere %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Direkt von wordpress.org installieren"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Wenn Sie Fragen haben, kontaktieren Sie uns über plugin@bestwebsoft.com, oder füllen Sie das Kontakt Formular auf unserer Website aus."
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Einstellungen gespeichert."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Galerie Einstellungen"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Die Größe der Bilder in der Albumansicht"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Name der Bilder"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Breite (in px)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Höhe (in px)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Die Größe der Bilder in der Galerie"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Anzahl Bilder in der Reihe"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Einstellungen speichern"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Leider nichts gefunden."
languages/gallery-es.mo CHANGED
Binary file
languages/gallery-es.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:55+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:55+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galerías"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galería"
34
 
@@ -69,196 +69,196 @@ msgstr "Subir Archivo"
69
  msgid "Gallery Shortcode"
70
  msgstr "Opciones de Galería"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Escoger una imagen para subir:"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Título"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Foto de"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Pública"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Fecha"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Plugins Activados"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Leer más"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Configuración"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Plugins instalados"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Plugins recomendados"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Descargar"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Instalar %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Instalar ahora desde wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Opciones guardadas."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Opciones de Galería"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "El tamaño de la cubierta del álbum de la galería"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Nombre del tamaño de la imagen"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Ancho (en px)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Alto (en px)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Tamaño de la galería de imágenes"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Contar las imágenes en la fila"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr "Comenzar presentación diapositivas"
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr "Intervalo de presentación diapositivas"
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  msgid "date"
215
  msgstr ""
216
 
217
- #: gallery-plugin.php:709
218
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
219
  msgstr ""
220
 
221
- #: gallery-plugin.php:710
222
  msgid "random"
223
  msgstr ""
224
 
225
- #: gallery-plugin.php:714
226
  msgid "Attachments order"
227
  msgstr ""
228
 
229
- #: gallery-plugin.php:716
230
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
231
  msgstr ""
232
 
233
- #: gallery-plugin.php:717
234
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
235
  msgstr ""
236
 
237
- #: gallery-plugin.php:721
238
  msgid "Display Return link"
239
  msgstr ""
240
 
241
- #: gallery-plugin.php:727
242
  msgid "Display Return link in shortcode"
243
  msgstr ""
244
 
245
- #: gallery-plugin.php:733
246
  msgid "Label for Return link"
247
  msgstr ""
248
 
249
- #: gallery-plugin.php:741
250
  msgid "Save Changes"
251
  msgstr "Guardar Cambios"
252
 
253
- #: gallery-plugin.php:753
254
  msgid "FAQ"
255
  msgstr "FAQ "
256
 
257
- #: gallery-plugin.php:754
258
  msgid "Support"
259
  msgstr "Soporte"
260
 
261
- #: gallery-plugin.php:865
262
  #: template/gallery-single-template.php:60
263
  msgid "Sorry - nothing to found."
264
  msgstr "Lo sentimos - nada que encontrar."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:08+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:08+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Victor Garcia <\\tvgarcias@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr "Los siguientes archivos /gallery-template.php / y /gallery-single-template.php/ no se encuentra en el directorio de tu tema. Por favor, copiarlos desde el directorio /wp-content/plugins/gallery-plugin/template/ en el directorio de su tema para el correcto funcionamiento del plugin de la Galería"
24
 
28
  msgstr "Galerías"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galería"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Opciones de Galería"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr "El directorio temporal galería (gallery-plugin/upload/files) no puede ser escrito por su servidor web. Por favor, use la forma estandár de WP para subir las imágenes (librería multimedia)"
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Escoger una imagen para subir:"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Favor de habilitar JavaScript para usar el cargador de archivos"
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Título"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Foto de"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Pública"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Fecha"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Plugins Activados"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Leer más"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Configuración"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Plugins instalados"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Plugins recomendados"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Descargar"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Instalar %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Instalar ahora desde wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Si usted tiene alguna pregunta, póngase en contacto con nosotros a través de plugin@bestwebsoft.com o rellenar nuestro formulario de contacto en nuestro sitio"
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Opciones guardadas."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Opciones de Galería"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "El tamaño de la cubierta del álbum de la galería"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Nombre del tamaño de la imagen"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Ancho (en px)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Alto (en px)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Tamaño de la galería de imágenes"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress creará una copia de la miniatura de la entrada con las dimensiones especificadas, cuando se suba una foto nueva."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Contar las imágenes en la fila"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr "Comenzar presentación diapositivas"
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr "Intervalo de presentación diapositivas"
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  msgid "date"
215
  msgstr ""
216
 
217
+ #: gallery-plugin.php:707
218
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
219
  msgstr ""
220
 
221
+ #: gallery-plugin.php:708
222
  msgid "random"
223
  msgstr ""
224
 
225
+ #: gallery-plugin.php:712
226
  msgid "Attachments order"
227
  msgstr ""
228
 
229
+ #: gallery-plugin.php:714
230
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
231
  msgstr ""
232
 
233
+ #: gallery-plugin.php:715
234
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
235
  msgstr ""
236
 
237
+ #: gallery-plugin.php:719
238
  msgid "Display Return link"
239
  msgstr ""
240
 
241
+ #: gallery-plugin.php:725
242
  msgid "Display Return link in shortcode"
243
  msgstr ""
244
 
245
+ #: gallery-plugin.php:731
246
  msgid "Label for Return link"
247
  msgstr ""
248
 
249
+ #: gallery-plugin.php:739
250
  msgid "Save Changes"
251
  msgstr "Guardar Cambios"
252
 
253
+ #: gallery-plugin.php:751
254
  msgid "FAQ"
255
  msgstr "FAQ "
256
 
257
+ #: gallery-plugin.php:752
258
  msgid "Support"
259
  msgstr "Soporte"
260
 
261
+ #: gallery-plugin.php:863
262
  #: template/gallery-single-template.php:60
263
  msgid "Sorry - nothing to found."
264
  msgstr "Lo sentimos - nada que encontrar."
languages/gallery-fr_FR.mo CHANGED
Binary file
languages/gallery-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:55+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:55+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galeries"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
@@ -69,197 +69,197 @@ msgstr "Envoi de fichier"
69
  msgid "Gallery Shortcode"
70
  msgstr "Options de galerie"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Choix de la capture d'écran à envoyer :"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Titre"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Auteur"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Photo's"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Public"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Date"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Extensions activées"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Lire plus..."
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Paramètres"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Extensions installées"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Extensions recommandées"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Télécharger"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installation %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installation à partir via wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Options sauvegardées"
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Options de galerie"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Taille de Couverture de la galerie"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Nom de la taille"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Largeur (en pixels)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Hauteur (en pixels)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Taille de la galerie"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Nombre d'image par ligne"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Date"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Sauvegarder"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Soutien"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Désolé, rien de trouvé"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:08+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:08+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Wolforg <contact@wolforg.eu>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
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 "Galeries"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galerie"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Options de galerie"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Choix de la capture d'écran à envoyer :"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Merci d'activer JavaScript pour utiliser l'envoi de fichiers."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Titre"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Auteur"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Photo's"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Public"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Date"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Extensions activées"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Lire plus..."
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Paramètres"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Extensions installées"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Extensions recommandées"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Télécharger"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installation %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installation à partir via wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Si vous avez des questions, merci de nous contacter via plugin@bestwebsoft.com ou remplissez le formulaire de contact sur notre site"
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Options sauvegardées"
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Options de galerie"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Taille de Couverture de la galerie"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Nom de la taille"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Largeur (en pixels)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Hauteur (en pixels)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Taille de la galerie"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress créera une copie de la miniature d'article avec les dimensions spécifiées quand vous envoyez une nouvelle photo."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Nombre d'image par ligne"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Date"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Sauvegarder"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Soutien"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Désolé, rien de trouvé"
languages/gallery-hu_HU.mo CHANGED
Binary file
languages/gallery-hu_HU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:55+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:55+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galériák"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galéria"
34
 
@@ -69,197 +69,197 @@ msgstr "Fájl feltöltése"
69
  msgid "Gallery Shortcode"
70
  msgstr "Galéria beállítások"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Nézőkép kiválasztása a feltöltéshez"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Cím"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Szerző"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Fotók"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Publikus"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Dátum"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Aktivált bővítmények"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Bővebben"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Beállítások"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Telepített bővítmények"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Javasolt bővítmények"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Letöltés"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Telepítés %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Telepítés a wordpress.org -ról"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Beállítások elmentve."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Galéria beállítások"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Az Album borítójának mérete a Galériában"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Kép méret neve"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Szélesség (px-ben)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Magasság (px-ben)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "A Galéria képeinek mérete"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Képek száma egy sorban"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Dátum"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Változások mentése"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "Gy.I.K."
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Támogatás"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Galériák"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galéria"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Galéria beállítások"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Nézőkép kiválasztása a feltöltéshez"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Kérem, engedéjezze a Javascript használatát a fájl feltöltéshez."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Cím"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Szerző"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Fotók"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Publikus"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Dátum"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Aktivált bővítmények"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Bővebben"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Beállítások"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Telepített bővítmények"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Javasolt bővítmények"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Letöltés"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Telepítés %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Telepítés a wordpress.org -ról"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Amennyiben kérdése van, kérem keressen meg minket a plugin@bestwebsoft.com e-mail címen, vagy töltse ki űrlapunkat"
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Beállítások elmentve."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Galéria beállítások"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Az Album borítójának mérete a Galériában"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Kép méret neve"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Szélesség (px-ben)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Magasság (px-ben)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "A Galéria képeinek mérete"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "A Wordpress elkészíti a megadott dimenziókban a nézőképeket a képek feltöltésekor."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Képek száma egy sorban"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Dátum"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Változások mentése"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "Gy.I.K."
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Támogatás"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Sajnáljuk - nincs megjelenítendő elem."
languages/gallery-it_IT.mo CHANGED
Binary file
languages/gallery-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:56+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:56+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Gallerie"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galleria"
34
 
@@ -69,197 +69,197 @@ msgstr "Carica file"
69
  msgid "Gallery Shortcode"
70
  msgstr "Opzioni gallerie"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Sceli uno screenshoot da caricare:"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Per favore abilita JavaScript per usare il file uploadr."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Titolo"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Autore"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Foto"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Pubblico"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Data"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Attivare plugin"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Leggi altro"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Impostazioni"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Plugin installati"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Plugin consigliati"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installа %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installa ora da wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Opzioni salvate."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Opzioni gallerie"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "La grandezza della copertina dall'album per la galleria"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Image size name"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Larghezza in px"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Altezza in px"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Grandezza per le immagini della galleria"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Conta immagini"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Data"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Salva cambiamenti"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Supporto"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Spiacente - non è stato trovato nulla."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Stefano Ferruggiara <ferruggiarastefano@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
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 "Gallerie"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galleria"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Opzioni gallerie"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Sceli uno screenshoot da caricare:"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Per favore abilita JavaScript per usare il file uploadr."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Titolo"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Autore"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Foto"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Pubblico"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Data"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Attivare plugin"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Leggi altro"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Impostazioni"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Plugin installati"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Plugin consigliati"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Installа %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installa ora da wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Per qualunque domanda contattaci via plugin@bestwebsoft.com o compila il Form sul nostro sito."
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Opzioni salvate."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Opzioni gallerie"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "La grandezza della copertina dall'album per la galleria"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Image size name"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Larghezza in px"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Altezza in px"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Grandezza per le immagini della galleria"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WP creerà una copia delle icone immagine con una specifica dimensione quando carichi una nuova foto."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Conta immagini"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Data"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Salva cambiamenti"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Supporto"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Spiacente - non è stato trovato nulla."
languages/gallery-ka_GE.mo CHANGED
Binary file
languages/gallery-ka_GE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:56+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:56+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "გალერეა"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "გალერეა"
34
 
@@ -69,197 +69,197 @@ msgstr "ფაილის ატვირთვა"
69
  msgid "Gallery Shortcode"
70
  msgstr "გალერეის პარამეტრები"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "აირჩიეთ სურათი ასატვირთად:"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "სათაური"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "ავტორი"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "ფოტო"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "საჯარო"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "თარიღი"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "გააქტიურებული დანამატები:"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "სრულად ნახვა"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "პარამეტრები"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "დაყენებული დანამატები"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "რეკომენდირებული დანამატები"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "გადმოტვირთვა"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "დაყენებულია %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "დააყენეთ wordpress.org-იდან"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "პარამეტრები შენახულია"
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "გალერეის პარამეტრები"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "ზომის სახელი"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "სიგანე(პიქსელებში)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "სიმაღლე(პიქსელებში)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "ზომა გალერეის სურათისთვის"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "სურათების რაოდენობა მწკრივში"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "თარიღი"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "ცვლილებების შენახვა"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Vako Patashuri <vpatashuri@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "გალერეა"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "გალერეა"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "გალერეის პარამეტრები"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "აირჩიეთ სურათი ასატვირთად:"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "გთხოვთ ჩართეთ JavaScript რომ გამოიყენოთ ფაილების ამტვირთავი."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "სათაური"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "ავტორი"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "ფოტო"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "საჯარო"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "თარიღი"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "გააქტიურებული დანამატები:"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "სრულად ნახვა"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "პარამეტრები"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "დაყენებული დანამატები"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "რეკომენდირებული დანამატები"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "გადმოტვირთვა"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "დაყენებულია %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "დააყენეთ wordpress.org-იდან"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "თუ თქვენ გაქვთ რაიმე შეკითხვა, გთხოვთ მოგვწერეთ ელფოსტაზე plugin@bestwebsoft.com ან შეავსეთ საკონტაქტო ფორმა გამოსაგზავნად"
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "პარამეტრები შენახულია"
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "გალერეის პარამეტრები"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "ალბომის ყდის ზომა გალერეისთვის"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "ზომის სახელი"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "სიგანე(პიქსელებში)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "სიმაღლე(პიქსელებში)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "ზომა გალერეის სურათისთვის"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "ვორდპრესი შექმნის მინიატურული პოსტის კოპიას განსაზღვრულ ზომებში, როდესაც ატვირთავთ სურათს."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "სურათების რაოდენობა მწკრივში"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "თარიღი"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "ცვლილებების შენახვა"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "მაპატიეთ - არაფერია ნაპოვნი."
languages/gallery-nl_NL.mo CHANGED
Binary file
languages/gallery-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:56+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:56+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Fotoalbum's"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Fotoalbum"
34
 
@@ -69,197 +69,197 @@ msgstr "Foto's uploaden"
69
  msgid "Gallery Shortcode"
70
  msgstr "Fotoalbum opties"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Foto's uploaden: "
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Titel"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Auteur"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Foto's"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Gepubliceerd"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Geactiveerde plugins"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Lees verder"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Instellingen"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Geinstalleerde plugins"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Aanbevolen plugins"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Install %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installeer nu vanaf wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Opties opgeslagen"
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Fotoalbum opties"
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "De afmetingen voor de cover van het album"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Afbeelding grootte"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Breedte (in px)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Hoogte (in px)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Grootte voor album afbeelding"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Aantal afbeeldingen op een rij"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Bewaar veranderingen"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Helaas - niets gevonden"
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ronald <ronald@bhi.nl>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Fotoalbum's"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Fotoalbum"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Fotoalbum opties"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Foto's uploaden: "
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Activeer JavaScript om foto's te kunnen uploaden."
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Titel"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Auteur"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Foto's"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Gepubliceerd"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Datum"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Geactiveerde plugins"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Lees verder"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Instellingen"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Geinstalleerde plugins"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Aanbevolen plugins"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Download"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Install %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Installeer nu vanaf wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Indien u nog vragen heeft, neem contact op via plugin@bestwebsoft.com of vul het contactformulier in op onze website"
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Opties opgeslagen"
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Fotoalbum opties"
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "De afmetingen voor de cover van het album"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Afbeelding grootte"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Breedte (in px)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Hoogte (in px)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Grootte voor album afbeelding"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "Wordpress zal een kopie maken van de thumbnail in de opgegeven afmetingen als u een nieuwe foto upload."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Aantal afbeeldingen op een rij"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Datum"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Bewaar veranderingen"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ"
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Support"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Helaas - niets gevonden"
languages/gallery-pl_PL.mo CHANGED
Binary file
languages/gallery-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:56+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:56+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Galerie zdjęć"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Galeria zdjęć"
34
 
@@ -69,197 +69,197 @@ msgstr "Wgraj plik"
69
  msgid "Gallery Shortcode"
70
  msgstr "Opcje galerii."
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
80
 
81
- #: gallery-plugin.php:167
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
84
 
85
- #: gallery-plugin.php:231
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
- #: gallery-plugin.php:372
90
  msgid "Title"
91
  msgstr "Tytuł"
92
 
93
- #: gallery-plugin.php:373
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
- #: gallery-plugin.php:374
98
  msgid "Photo's"
99
  msgstr "Zdjęcie"
100
 
101
- #: gallery-plugin.php:375
102
  msgid "Public"
103
  msgstr "Publiczne"
104
 
105
- #: gallery-plugin.php:376
106
  msgid "Date"
107
  msgstr "Data"
108
 
109
- #: gallery-plugin.php:523
110
  msgid "Activated plugins"
111
  msgstr "Aktywny plugin"
112
 
113
- #: gallery-plugin.php:525
114
- #: gallery-plugin.php:533
115
- #: gallery-plugin.php:541
116
  msgid "Read more"
117
  msgstr "Czytaj dalej"
118
 
119
- #: gallery-plugin.php:525
120
- #: gallery-plugin.php:752
121
- #: gallery-plugin.php:767
122
  msgid "Settings"
123
  msgstr "Ustawienia"
124
 
125
- #: gallery-plugin.php:531
126
  msgid "Installed plugins"
127
  msgstr "Zainstalowane pluginy"
128
 
129
- #: gallery-plugin.php:539
130
  msgid "Recommended plugins"
131
  msgstr "Rekomendowane pluginy"
132
 
133
- #: gallery-plugin.php:541
134
  msgid "Download"
135
  msgstr "Pobierz"
136
 
137
- #: gallery-plugin.php:541
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Zainstaluj %s"
141
 
142
- #: gallery-plugin.php:541
143
  msgid "Install now from wordpress.org"
144
  msgstr "Zainstaluj teraz z wordpress.org"
145
 
146
- #: gallery-plugin.php:543
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
149
 
150
- #: gallery-plugin.php:649
151
  msgid "Options saved."
152
  msgstr "Opcje zostały zapisane."
153
 
154
- #: gallery-plugin.php:660
155
  msgid "Gallery Options"
156
  msgstr "Opcje galerii."
157
 
158
- #: gallery-plugin.php:663
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
- #: gallery-plugin.php:667
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Rozmiar okładki albumu"
165
 
166
- #: gallery-plugin.php:669
167
- #: gallery-plugin.php:677
168
  msgid "Image size name"
169
  msgstr "Nazwa rozmiaru obrazka"
170
 
171
- #: gallery-plugin.php:670
172
- #: gallery-plugin.php:678
173
  msgid "Width (in px)"
174
  msgstr "Szerokość (w px)"
175
 
176
- #: gallery-plugin.php:671
177
- #: gallery-plugin.php:679
178
  msgid "Height (in px)"
179
  msgstr "Wysokość (w px)"
180
 
181
- #: gallery-plugin.php:675
182
  msgid "Size for gallery image"
183
  msgstr "Rozmiar dla obrazka w galerii"
184
 
185
- #: gallery-plugin.php:683
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
188
 
189
- #: gallery-plugin.php:686
190
  msgid "Count images in row"
191
  msgstr "Ilość obrazków w rzędzie"
192
 
193
- #: gallery-plugin.php:692
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
- #: gallery-plugin.php:698
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
- #: gallery-plugin.php:704
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
- #: gallery-plugin.php:706
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
- #: gallery-plugin.php:707
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
- #: gallery-plugin.php:708
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Data"
217
 
218
- #: gallery-plugin.php:709
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
- #: gallery-plugin.php:710
223
  msgid "random"
224
  msgstr ""
225
 
226
- #: gallery-plugin.php:714
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
- #: gallery-plugin.php:716
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
- #: gallery-plugin.php:717
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
- #: gallery-plugin.php:721
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
- #: gallery-plugin.php:727
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
- #: gallery-plugin.php:733
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
- #: gallery-plugin.php:741
251
  msgid "Save Changes"
252
  msgstr "Zapisz zmiany"
253
 
254
- #: gallery-plugin.php:753
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
- #: gallery-plugin.php:754
259
  msgid "Support"
260
  msgstr "Wsparcie"
261
 
262
- #: gallery-plugin.php:865
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Przykro nam - nic nie znaleziono."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: BWS <bestwebsoft.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Galerie zdjęć"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Galeria zdjęć"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Opcje galerii."
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  #, fuzzy
78
  msgid "Choose an image to upload:"
79
  msgstr "Wybierz zrzut ekrany do wgrania na serwer"
80
 
81
+ #: gallery-plugin.php:165
82
  msgid "Please enable JavaScript to use the file uploader."
83
  msgstr "Proszę właczyć osbługę JavaScript by skorzystać z opcji wgrywania plików na serwer"
84
 
85
+ #: gallery-plugin.php:229
86
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
87
  msgstr ""
88
 
89
+ #: gallery-plugin.php:370
90
  msgid "Title"
91
  msgstr "Tytuł"
92
 
93
+ #: gallery-plugin.php:371
94
  msgid "Author"
95
  msgstr "Autor"
96
 
97
+ #: gallery-plugin.php:372
98
  msgid "Photo's"
99
  msgstr "Zdjęcie"
100
 
101
+ #: gallery-plugin.php:373
102
  msgid "Public"
103
  msgstr "Publiczne"
104
 
105
+ #: gallery-plugin.php:374
106
  msgid "Date"
107
  msgstr "Data"
108
 
109
+ #: gallery-plugin.php:521
110
  msgid "Activated plugins"
111
  msgstr "Aktywny plugin"
112
 
113
+ #: gallery-plugin.php:523
114
+ #: gallery-plugin.php:531
115
+ #: gallery-plugin.php:539
116
  msgid "Read more"
117
  msgstr "Czytaj dalej"
118
 
119
+ #: gallery-plugin.php:523
120
+ #: gallery-plugin.php:750
121
+ #: gallery-plugin.php:765
122
  msgid "Settings"
123
  msgstr "Ustawienia"
124
 
125
+ #: gallery-plugin.php:529
126
  msgid "Installed plugins"
127
  msgstr "Zainstalowane pluginy"
128
 
129
+ #: gallery-plugin.php:537
130
  msgid "Recommended plugins"
131
  msgstr "Rekomendowane pluginy"
132
 
133
+ #: gallery-plugin.php:539
134
  msgid "Download"
135
  msgstr "Pobierz"
136
 
137
+ #: gallery-plugin.php:539
138
  #, php-format
139
  msgid "Install %s"
140
  msgstr "Zainstaluj %s"
141
 
142
+ #: gallery-plugin.php:539
143
  msgid "Install now from wordpress.org"
144
  msgstr "Zainstaluj teraz z wordpress.org"
145
 
146
+ #: gallery-plugin.php:541
147
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
148
  msgstr "Jeśli masz jakiekolwiek pytania, proszę napisz do nas na adres plugin@bestwebsoft.com albo wypełnij formularz kontaktowy na naszej stronie."
149
 
150
+ #: gallery-plugin.php:647
151
  msgid "Options saved."
152
  msgstr "Opcje zostały zapisane."
153
 
154
+ #: gallery-plugin.php:658
155
  msgid "Gallery Options"
156
  msgstr "Opcje galerii."
157
 
158
+ #: gallery-plugin.php:661
159
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
160
  msgstr ""
161
 
162
+ #: gallery-plugin.php:665
163
  msgid "The size of the cover album for gallery"
164
  msgstr "Rozmiar okładki albumu"
165
 
166
+ #: gallery-plugin.php:667
167
+ #: gallery-plugin.php:675
168
  msgid "Image size name"
169
  msgstr "Nazwa rozmiaru obrazka"
170
 
171
+ #: gallery-plugin.php:668
172
+ #: gallery-plugin.php:676
173
  msgid "Width (in px)"
174
  msgstr "Szerokość (w px)"
175
 
176
+ #: gallery-plugin.php:669
177
+ #: gallery-plugin.php:677
178
  msgid "Height (in px)"
179
  msgstr "Wysokość (w px)"
180
 
181
+ #: gallery-plugin.php:673
182
  msgid "Size for gallery image"
183
  msgstr "Rozmiar dla obrazka w galerii"
184
 
185
+ #: gallery-plugin.php:681
186
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
187
  msgstr "WordPress stworzy kopię miniaturki notki według podanych rozmiarów podczas wgrywania nowego zdjęcia na serwer."
188
 
189
+ #: gallery-plugin.php:684
190
  msgid "Count images in row"
191
  msgstr "Ilość obrazków w rzędzie"
192
 
193
+ #: gallery-plugin.php:690
194
  msgid "Start slideshow"
195
  msgstr ""
196
 
197
+ #: gallery-plugin.php:696
198
  msgid "Slideshow interval"
199
  msgstr ""
200
 
201
+ #: gallery-plugin.php:702
202
  msgid "Attachments order by"
203
  msgstr ""
204
 
205
+ #: gallery-plugin.php:704
206
  msgid "attachment id"
207
  msgstr ""
208
 
209
+ #: gallery-plugin.php:705
210
  msgid "attachment title"
211
  msgstr ""
212
 
213
+ #: gallery-plugin.php:706
214
  #, fuzzy
215
  msgid "date"
216
  msgstr "Data"
217
 
218
+ #: gallery-plugin.php:707
219
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
220
  msgstr ""
221
 
222
+ #: gallery-plugin.php:708
223
  msgid "random"
224
  msgstr ""
225
 
226
+ #: gallery-plugin.php:712
227
  msgid "Attachments order"
228
  msgstr ""
229
 
230
+ #: gallery-plugin.php:714
231
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
232
  msgstr ""
233
 
234
+ #: gallery-plugin.php:715
235
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
236
  msgstr ""
237
 
238
+ #: gallery-plugin.php:719
239
  msgid "Display Return link"
240
  msgstr ""
241
 
242
+ #: gallery-plugin.php:725
243
  msgid "Display Return link in shortcode"
244
  msgstr ""
245
 
246
+ #: gallery-plugin.php:731
247
  msgid "Label for Return link"
248
  msgstr ""
249
 
250
+ #: gallery-plugin.php:739
251
  msgid "Save Changes"
252
  msgstr "Zapisz zmiany"
253
 
254
+ #: gallery-plugin.php:751
255
  msgid "FAQ"
256
  msgstr "FAQ "
257
 
258
+ #: gallery-plugin.php:752
259
  msgid "Support"
260
  msgstr "Wsparcie"
261
 
262
+ #: gallery-plugin.php:863
263
  #: template/gallery-single-template.php:60
264
  msgid "Sorry - nothing to found."
265
  msgstr "Przykro nam - nic nie znaleziono."
languages/gallery-ru_RU.mo CHANGED
Binary file
languages/gallery-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:56+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:57+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Галереи"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Галерея"
34
 
@@ -68,195 +68,195 @@ msgstr "Загрузить файлы"
68
  msgid "Gallery Shortcode"
69
  msgstr "Шорткод Для Галереи"
70
 
71
- #: gallery-plugin.php:158
72
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
73
  msgstr ""
74
 
75
- #: gallery-plugin.php:162
76
  msgid "Choose an image to upload:"
77
  msgstr "Выбрать файлы для загрузки:"
78
 
79
- #: gallery-plugin.php:167
80
  msgid "Please enable JavaScript to use the file uploader."
81
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
82
 
83
- #: gallery-plugin.php:231
84
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
85
  msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
86
 
87
- #: gallery-plugin.php:372
88
  msgid "Title"
89
  msgstr "Название"
90
 
91
- #: gallery-plugin.php:373
92
  msgid "Author"
93
  msgstr "Автор"
94
 
95
- #: gallery-plugin.php:374
96
  msgid "Photo's"
97
  msgstr "Фото"
98
 
99
- #: gallery-plugin.php:375
100
  msgid "Public"
101
  msgstr "Опубликование"
102
 
103
- #: gallery-plugin.php:376
104
  msgid "Date"
105
  msgstr "Дата"
106
 
107
- #: gallery-plugin.php:523
108
  msgid "Activated plugins"
109
  msgstr "Активированные плагины"
110
 
111
- #: gallery-plugin.php:525
112
- #: gallery-plugin.php:533
113
- #: gallery-plugin.php:541
114
  msgid "Read more"
115
  msgstr "Подробнее..."
116
 
117
- #: gallery-plugin.php:525
118
- #: gallery-plugin.php:752
119
- #: gallery-plugin.php:767
120
  msgid "Settings"
121
  msgstr "Настройки"
122
 
123
- #: gallery-plugin.php:531
124
  msgid "Installed plugins"
125
  msgstr "Установленные плагины"
126
 
127
- #: gallery-plugin.php:539
128
  msgid "Recommended plugins"
129
  msgstr "Рекомендованные к установке плагины"
130
 
131
- #: gallery-plugin.php:541
132
  msgid "Download"
133
  msgstr "Скачать"
134
 
135
- #: gallery-plugin.php:541
136
  #, php-format
137
  msgid "Install %s"
138
  msgstr "Установлено %s"
139
 
140
- #: gallery-plugin.php:541
141
  msgid "Install now from wordpress.org"
142
  msgstr "Установить с wordpress.org"
143
 
144
- #: gallery-plugin.php:543
145
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
146
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
147
 
148
- #: gallery-plugin.php:649
149
  msgid "Options saved."
150
  msgstr "Опции сохранены"
151
 
152
- #: gallery-plugin.php:660
153
  msgid "Gallery Options"
154
  msgstr "Настройки Галереи"
155
 
156
- #: gallery-plugin.php:663
157
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
158
  msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
159
 
160
- #: gallery-plugin.php:667
161
  msgid "The size of the cover album for gallery"
162
  msgstr "Размер изображения для обложки альбома галереи"
163
 
164
- #: gallery-plugin.php:669
165
- #: gallery-plugin.php:677
166
  msgid "Image size name"
167
  msgstr "Название размера изображение"
168
 
169
- #: gallery-plugin.php:670
170
- #: gallery-plugin.php:678
171
  msgid "Width (in px)"
172
  msgstr "Ширина (в px)"
173
 
174
- #: gallery-plugin.php:671
175
- #: gallery-plugin.php:679
176
  msgid "Height (in px)"
177
  msgstr "Высота (в px)"
178
 
179
- #: gallery-plugin.php:675
180
  msgid "Size for gallery image"
181
  msgstr "Размер изображений Галереи"
182
 
183
- #: gallery-plugin.php:683
184
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
185
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
186
 
187
- #: gallery-plugin.php:686
188
  msgid "Count images in row"
189
  msgstr "Количество изображений в строке"
190
 
191
- #: gallery-plugin.php:692
192
  msgid "Start slideshow"
193
  msgstr "Начать слайдшоу"
194
 
195
- #: gallery-plugin.php:698
196
  msgid "Slideshow interval"
197
  msgstr "Интервал времени при показе слайдшоу"
198
 
199
- #: gallery-plugin.php:704
200
  msgid "Attachments order by"
201
  msgstr "Изображения сортируются по"
202
 
203
- #: gallery-plugin.php:706
204
  msgid "attachment id"
205
  msgstr "id изображения"
206
 
207
- #: gallery-plugin.php:707
208
  msgid "attachment title"
209
  msgstr "названию изображения"
210
 
211
- #: gallery-plugin.php:708
212
  msgid "date"
213
  msgstr "дате"
214
 
215
- #: gallery-plugin.php:709
216
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
217
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
218
 
219
- #: gallery-plugin.php:710
220
  msgid "random"
221
  msgstr "произвольно"
222
 
223
- #: gallery-plugin.php:714
224
  msgid "Attachments order"
225
  msgstr "Сортировать изображения"
226
 
227
- #: gallery-plugin.php:716
228
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
229
  msgstr ""
230
 
231
- #: gallery-plugin.php:717
232
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
233
  msgstr ""
234
 
235
- #: gallery-plugin.php:721
236
  msgid "Display Return link"
237
  msgstr "Отображать ссылку Вернуться"
238
 
239
- #: gallery-plugin.php:727
240
  msgid "Display Return link in shortcode"
241
  msgstr "Отображаться ссылку Вернуться в шорткоде"
242
 
243
- #: gallery-plugin.php:733
244
  msgid "Label for Return link"
245
  msgstr "Текст для ссылки Вернуться"
246
 
247
- #: gallery-plugin.php:741
248
  msgid "Save Changes"
249
  msgstr ""
250
 
251
- #: gallery-plugin.php:753
252
  msgid "FAQ"
253
  msgstr "FAQ"
254
 
255
- #: gallery-plugin.php:754
256
  msgid "Support"
257
  msgstr "Поддержка"
258
 
259
- #: gallery-plugin.php:865
260
  #: template/gallery-single-template.php:60
261
  msgid "Sorry - nothing to found."
262
  msgstr "Извините, ничего не найдено."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Галереи"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Галерея"
34
 
68
  msgid "Gallery Shortcode"
69
  msgstr "Шорткод Для Галереи"
70
 
71
+ #: gallery-plugin.php:156
72
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
73
  msgstr ""
74
 
75
+ #: gallery-plugin.php:160
76
  msgid "Choose an image to upload:"
77
  msgstr "Выбрать файлы для загрузки:"
78
 
79
+ #: gallery-plugin.php:165
80
  msgid "Please enable JavaScript to use the file uploader."
81
  msgstr "Пожалуйста, включите javascript для использования загрузчика файлов."
82
 
83
+ #: gallery-plugin.php:229
84
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
85
  msgstr "Вы можете добавить Галерею на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
86
 
87
+ #: gallery-plugin.php:370
88
  msgid "Title"
89
  msgstr "Название"
90
 
91
+ #: gallery-plugin.php:371
92
  msgid "Author"
93
  msgstr "Автор"
94
 
95
+ #: gallery-plugin.php:372
96
  msgid "Photo's"
97
  msgstr "Фото"
98
 
99
+ #: gallery-plugin.php:373
100
  msgid "Public"
101
  msgstr "Опубликование"
102
 
103
+ #: gallery-plugin.php:374
104
  msgid "Date"
105
  msgstr "Дата"
106
 
107
+ #: gallery-plugin.php:521
108
  msgid "Activated plugins"
109
  msgstr "Активированные плагины"
110
 
111
+ #: gallery-plugin.php:523
112
+ #: gallery-plugin.php:531
113
+ #: gallery-plugin.php:539
114
  msgid "Read more"
115
  msgstr "Подробнее..."
116
 
117
+ #: gallery-plugin.php:523
118
+ #: gallery-plugin.php:750
119
+ #: gallery-plugin.php:765
120
  msgid "Settings"
121
  msgstr "Настройки"
122
 
123
+ #: gallery-plugin.php:529
124
  msgid "Installed plugins"
125
  msgstr "Установленные плагины"
126
 
127
+ #: gallery-plugin.php:537
128
  msgid "Recommended plugins"
129
  msgstr "Рекомендованные к установке плагины"
130
 
131
+ #: gallery-plugin.php:539
132
  msgid "Download"
133
  msgstr "Скачать"
134
 
135
+ #: gallery-plugin.php:539
136
  #, php-format
137
  msgid "Install %s"
138
  msgstr "Установлено %s"
139
 
140
+ #: gallery-plugin.php:539
141
  msgid "Install now from wordpress.org"
142
  msgstr "Установить с wordpress.org"
143
 
144
+ #: gallery-plugin.php:541
145
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
146
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
147
 
148
+ #: gallery-plugin.php:647
149
  msgid "Options saved."
150
  msgstr "Опции сохранены"
151
 
152
+ #: gallery-plugin.php:658
153
  msgid "Gallery Options"
154
  msgstr "Настройки Галереи"
155
 
156
+ #: gallery-plugin.php:661
157
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
158
  msgstr "Если вы хотели бы добавить Галерея на вашу страницу или пост, просто скопируйте и поместить этот шорткод в контент поста или страницы:"
159
 
160
+ #: gallery-plugin.php:665
161
  msgid "The size of the cover album for gallery"
162
  msgstr "Размер изображения для обложки альбома галереи"
163
 
164
+ #: gallery-plugin.php:667
165
+ #: gallery-plugin.php:675
166
  msgid "Image size name"
167
  msgstr "Название размера изображение"
168
 
169
+ #: gallery-plugin.php:668
170
+ #: gallery-plugin.php:676
171
  msgid "Width (in px)"
172
  msgstr "Ширина (в px)"
173
 
174
+ #: gallery-plugin.php:669
175
+ #: gallery-plugin.php:677
176
  msgid "Height (in px)"
177
  msgstr "Высота (в px)"
178
 
179
+ #: gallery-plugin.php:673
180
  msgid "Size for gallery image"
181
  msgstr "Размер изображений Галереи"
182
 
183
+ #: gallery-plugin.php:681
184
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
185
  msgstr "WordPress создаст новую миниатюру с заданными размерами при загрузке новой фотографии."
186
 
187
+ #: gallery-plugin.php:684
188
  msgid "Count images in row"
189
  msgstr "Количество изображений в строке"
190
 
191
+ #: gallery-plugin.php:690
192
  msgid "Start slideshow"
193
  msgstr "Начать слайдшоу"
194
 
195
+ #: gallery-plugin.php:696
196
  msgid "Slideshow interval"
197
  msgstr "Интервал времени при показе слайдшоу"
198
 
199
+ #: gallery-plugin.php:702
200
  msgid "Attachments order by"
201
  msgstr "Изображения сортируются по"
202
 
203
+ #: gallery-plugin.php:704
204
  msgid "attachment id"
205
  msgstr "id изображения"
206
 
207
+ #: gallery-plugin.php:705
208
  msgid "attachment title"
209
  msgstr "названию изображения"
210
 
211
+ #: gallery-plugin.php:706
212
  msgid "date"
213
  msgstr "дате"
214
 
215
+ #: gallery-plugin.php:707
216
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
217
  msgstr "сортировка по порядку (поле для ввода порядка сортировки в диалоге Insert / Upload Media Gallery)"
218
 
219
+ #: gallery-plugin.php:708
220
  msgid "random"
221
  msgstr "произвольно"
222
 
223
+ #: gallery-plugin.php:712
224
  msgid "Attachments order"
225
  msgstr "Сортировать изображения"
226
 
227
+ #: gallery-plugin.php:714
228
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
229
  msgstr ""
230
 
231
+ #: gallery-plugin.php:715
232
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
233
  msgstr ""
234
 
235
+ #: gallery-plugin.php:719
236
  msgid "Display Return link"
237
  msgstr "Отображать ссылку Вернуться"
238
 
239
+ #: gallery-plugin.php:725
240
  msgid "Display Return link in shortcode"
241
  msgstr "Отображаться ссылку Вернуться в шорткоде"
242
 
243
+ #: gallery-plugin.php:731
244
  msgid "Label for Return link"
245
  msgstr "Текст для ссылки Вернуться"
246
 
247
+ #: gallery-plugin.php:739
248
  msgid "Save Changes"
249
  msgstr ""
250
 
251
+ #: gallery-plugin.php:751
252
  msgid "FAQ"
253
  msgstr "FAQ"
254
 
255
+ #: gallery-plugin.php:752
256
  msgid "Support"
257
  msgstr "Поддержка"
258
 
259
+ #: gallery-plugin.php:863
260
  #: template/gallery-single-template.php:60
261
  msgid "Sorry - nothing to found."
262
  msgstr "Извините, ничего не найдено."
languages/gallery-uk.mo CHANGED
Binary file
languages/gallery-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-11 16:57+0300\n"
6
- "PO-Revision-Date: 2012-06-11 16:57+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: \n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
- #: gallery-plugin.php:653
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
@@ -28,7 +28,7 @@ msgid "Galleries"
28
  msgstr "Галереi"
29
 
30
  #: gallery-plugin.php:77
31
- #: gallery-plugin.php:554
32
  msgid "Gallery"
33
  msgstr "Галерея"
34
 
@@ -69,195 +69,195 @@ msgstr "Завантажити файл"
69
  msgid "Gallery Shortcode"
70
  msgstr "Параметри галереї"
71
 
72
- #: gallery-plugin.php:158
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
- #: gallery-plugin.php:162
77
  msgid "Choose an image to upload:"
78
  msgstr "Вибрати скріншот, щоб завантажити:"
79
 
80
- #: gallery-plugin.php:167
81
  msgid "Please enable JavaScript to use the file uploader."
82
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
83
 
84
- #: gallery-plugin.php:231
85
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
86
  msgstr ""
87
 
88
- #: gallery-plugin.php:372
89
  msgid "Title"
90
  msgstr "Назва"
91
 
92
- #: gallery-plugin.php:373
93
  msgid "Author"
94
  msgstr "Автор "
95
 
96
- #: gallery-plugin.php:374
97
  msgid "Photo's"
98
  msgstr "Фото "
99
 
100
- #: gallery-plugin.php:375
101
  msgid "Public"
102
  msgstr "Громадськості"
103
 
104
- #: gallery-plugin.php:376
105
  msgid "Date"
106
  msgstr "Дата "
107
 
108
- #: gallery-plugin.php:523
109
  msgid "Activated plugins"
110
  msgstr "Активоване плагіни"
111
 
112
- #: gallery-plugin.php:525
113
- #: gallery-plugin.php:533
114
- #: gallery-plugin.php:541
115
  msgid "Read more"
116
  msgstr "Читати далі"
117
 
118
- #: gallery-plugin.php:525
119
- #: gallery-plugin.php:752
120
- #: gallery-plugin.php:767
121
  msgid "Settings"
122
  msgstr "Параметри"
123
 
124
- #: gallery-plugin.php:531
125
  msgid "Installed plugins"
126
  msgstr "Встановлених модулів"
127
 
128
- #: gallery-plugin.php:539
129
  msgid "Recommended plugins"
130
  msgstr "Плагіни Рекомендовані"
131
 
132
- #: gallery-plugin.php:541
133
  msgid "Download"
134
  msgstr "Завантажити"
135
 
136
- #: gallery-plugin.php:541
137
  #, php-format
138
  msgid "Install %s"
139
  msgstr "Установка %s"
140
 
141
- #: gallery-plugin.php:541
142
  msgid "Install now from wordpress.org"
143
  msgstr "Установити зараз від wordpress.org"
144
 
145
- #: gallery-plugin.php:543
146
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
147
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
148
 
149
- #: gallery-plugin.php:649
150
  msgid "Options saved."
151
  msgstr "Параметри зберігаються."
152
 
153
- #: gallery-plugin.php:660
154
  msgid "Gallery Options"
155
  msgstr "Параметри галереї"
156
 
157
- #: gallery-plugin.php:663
158
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
159
  msgstr ""
160
 
161
- #: gallery-plugin.php:667
162
  msgid "The size of the cover album for gallery"
163
  msgstr "Розмір обкладинки альбому для галереї"
164
 
165
- #: gallery-plugin.php:669
166
- #: gallery-plugin.php:677
167
  msgid "Image size name"
168
  msgstr "Ім'я розмір зображення"
169
 
170
- #: gallery-plugin.php:670
171
- #: gallery-plugin.php:678
172
  msgid "Width (in px)"
173
  msgstr "Ширина (в px)"
174
 
175
- #: gallery-plugin.php:671
176
- #: gallery-plugin.php:679
177
  msgid "Height (in px)"
178
  msgstr "Висота (в px)"
179
 
180
- #: gallery-plugin.php:675
181
  msgid "Size for gallery image"
182
  msgstr "Розмір зображення галерея"
183
 
184
- #: gallery-plugin.php:683
185
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
186
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
187
 
188
- #: gallery-plugin.php:686
189
  msgid "Count images in row"
190
  msgstr "Кількість зображень у рядку"
191
 
192
- #: gallery-plugin.php:692
193
  msgid "Start slideshow"
194
  msgstr ""
195
 
196
- #: gallery-plugin.php:698
197
  msgid "Slideshow interval"
198
  msgstr ""
199
 
200
- #: gallery-plugin.php:704
201
  msgid "Attachments order by"
202
  msgstr ""
203
 
204
- #: gallery-plugin.php:706
205
  msgid "attachment id"
206
  msgstr ""
207
 
208
- #: gallery-plugin.php:707
209
  msgid "attachment title"
210
  msgstr ""
211
 
212
- #: gallery-plugin.php:708
213
  msgid "date"
214
  msgstr "Дата"
215
 
216
- #: gallery-plugin.php:709
217
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
218
  msgstr ""
219
 
220
- #: gallery-plugin.php:710
221
  msgid "random"
222
  msgstr ""
223
 
224
- #: gallery-plugin.php:714
225
  msgid "Attachments order"
226
  msgstr ""
227
 
228
- #: gallery-plugin.php:716
229
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
230
  msgstr ""
231
 
232
- #: gallery-plugin.php:717
233
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
234
  msgstr ""
235
 
236
- #: gallery-plugin.php:721
237
  msgid "Display Return link"
238
  msgstr ""
239
 
240
- #: gallery-plugin.php:727
241
  msgid "Display Return link in shortcode"
242
  msgstr ""
243
 
244
- #: gallery-plugin.php:733
245
  msgid "Label for Return link"
246
  msgstr ""
247
 
248
- #: gallery-plugin.php:741
249
  msgid "Save Changes"
250
  msgstr "Зберегти зміни"
251
 
252
- #: gallery-plugin.php:753
253
  msgid "FAQ"
254
  msgstr "FAQ "
255
 
256
- #: gallery-plugin.php:754
257
  msgid "Support"
258
  msgstr "Підтримка"
259
 
260
- #: gallery-plugin.php:865
261
  #: template/gallery-single-template.php:60
262
  msgid "Sorry - nothing to found."
263
  msgstr "Вибачте - нічого не знайдено."
2
  msgstr ""
3
  "Project-Id-Version: gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-13 19:09+0300\n"
6
+ "PO-Revision-Date: 2012-06-13 19:09+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Ted Mosby <tmosbyd@gmail.com>\n"
9
  "Language: \n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: gallery-plugin.php:52
21
+ #: gallery-plugin.php:651
22
  msgid "The following files \"gallery-template.php\" and \"gallery-single-template.php\" were not found in the directory of your theme. Please copy them from the directory `/wp-content/plugins/gallery-plugin/template/` to the directory of your theme for the correct work of the Gallery plugin"
23
  msgstr ""
24
 
28
  msgstr "Галереi"
29
 
30
  #: gallery-plugin.php:77
31
+ #: gallery-plugin.php:552
32
  msgid "Gallery"
33
  msgstr "Галерея"
34
 
69
  msgid "Gallery Shortcode"
70
  msgstr "Параметри галереї"
71
 
72
+ #: gallery-plugin.php:156
73
  msgid "The gallery temp directory (gallery-plugin/upload/files) not writeable by your webserver. Please use the standard WP functional to upload the images (media library)"
74
  msgstr ""
75
 
76
+ #: gallery-plugin.php:160
77
  msgid "Choose an image to upload:"
78
  msgstr "Вибрати скріншот, щоб завантажити:"
79
 
80
+ #: gallery-plugin.php:165
81
  msgid "Please enable JavaScript to use the file uploader."
82
  msgstr "Будь ласка Дозвольте JavaScript, щоб використовувати файл uploader."
83
 
84
+ #: gallery-plugin.php:229
85
  msgid "You can add the Single Gallery on the page or in the post by inserting this shortcode in the content"
86
  msgstr ""
87
 
88
+ #: gallery-plugin.php:370
89
  msgid "Title"
90
  msgstr "Назва"
91
 
92
+ #: gallery-plugin.php:371
93
  msgid "Author"
94
  msgstr "Автор "
95
 
96
+ #: gallery-plugin.php:372
97
  msgid "Photo's"
98
  msgstr "Фото "
99
 
100
+ #: gallery-plugin.php:373
101
  msgid "Public"
102
  msgstr "Громадськості"
103
 
104
+ #: gallery-plugin.php:374
105
  msgid "Date"
106
  msgstr "Дата "
107
 
108
+ #: gallery-plugin.php:521
109
  msgid "Activated plugins"
110
  msgstr "Активоване плагіни"
111
 
112
+ #: gallery-plugin.php:523
113
+ #: gallery-plugin.php:531
114
+ #: gallery-plugin.php:539
115
  msgid "Read more"
116
  msgstr "Читати далі"
117
 
118
+ #: gallery-plugin.php:523
119
+ #: gallery-plugin.php:750
120
+ #: gallery-plugin.php:765
121
  msgid "Settings"
122
  msgstr "Параметри"
123
 
124
+ #: gallery-plugin.php:529
125
  msgid "Installed plugins"
126
  msgstr "Встановлених модулів"
127
 
128
+ #: gallery-plugin.php:537
129
  msgid "Recommended plugins"
130
  msgstr "Плагіни Рекомендовані"
131
 
132
+ #: gallery-plugin.php:539
133
  msgid "Download"
134
  msgstr "Завантажити"
135
 
136
+ #: gallery-plugin.php:539
137
  #, php-format
138
  msgid "Install %s"
139
  msgstr "Установка %s"
140
 
141
+ #: gallery-plugin.php:539
142
  msgid "Install now from wordpress.org"
143
  msgstr "Установити зараз від wordpress.org"
144
 
145
+ #: gallery-plugin.php:541
146
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
147
  msgstr "Якщо у вас є які-небудь питання, будь ласка, зв'яжіться з нами через plugin@bestwebsoft.com або заповнити нашу контактну форму на нашому сайті"
148
 
149
+ #: gallery-plugin.php:647
150
  msgid "Options saved."
151
  msgstr "Параметри зберігаються."
152
 
153
+ #: gallery-plugin.php:658
154
  msgid "Gallery Options"
155
  msgstr "Параметри галереї"
156
 
157
+ #: gallery-plugin.php:661
158
  msgid "If you would like to add a Single Gallery to your page or post, just copy and put this shortcode onto your post or page content:"
159
  msgstr ""
160
 
161
+ #: gallery-plugin.php:665
162
  msgid "The size of the cover album for gallery"
163
  msgstr "Розмір обкладинки альбому для галереї"
164
 
165
+ #: gallery-plugin.php:667
166
+ #: gallery-plugin.php:675
167
  msgid "Image size name"
168
  msgstr "Ім'я розмір зображення"
169
 
170
+ #: gallery-plugin.php:668
171
+ #: gallery-plugin.php:676
172
  msgid "Width (in px)"
173
  msgstr "Ширина (в px)"
174
 
175
+ #: gallery-plugin.php:669
176
+ #: gallery-plugin.php:677
177
  msgid "Height (in px)"
178
  msgstr "Висота (в px)"
179
 
180
+ #: gallery-plugin.php:673
181
  msgid "Size for gallery image"
182
  msgstr "Розмір зображення галерея"
183
 
184
+ #: gallery-plugin.php:681
185
  msgid "WordPress will create a copy of the post thumbnail with the specified dimensions when you upload a new photo."
186
  msgstr "WordPress створить копію ескізу пост з заданими розмірами, коли ви завантажити нову фотографію."
187
 
188
+ #: gallery-plugin.php:684
189
  msgid "Count images in row"
190
  msgstr "Кількість зображень у рядку"
191
 
192
+ #: gallery-plugin.php:690
193
  msgid "Start slideshow"
194
  msgstr ""
195
 
196
+ #: gallery-plugin.php:696
197
  msgid "Slideshow interval"
198
  msgstr ""
199
 
200
+ #: gallery-plugin.php:702
201
  msgid "Attachments order by"
202
  msgstr ""
203
 
204
+ #: gallery-plugin.php:704
205
  msgid "attachment id"
206
  msgstr ""
207
 
208
+ #: gallery-plugin.php:705
209
  msgid "attachment title"
210
  msgstr ""
211
 
212
+ #: gallery-plugin.php:706
213
  msgid "date"
214
  msgstr "Дата"
215
 
216
+ #: gallery-plugin.php:707
217
  msgid "attachments order (the integer fields in the Insert / Upload Media Gallery dialog )"
218
  msgstr ""
219
 
220
+ #: gallery-plugin.php:708
221
  msgid "random"
222
  msgstr ""
223
 
224
+ #: gallery-plugin.php:712
225
  msgid "Attachments order"
226
  msgstr ""
227
 
228
+ #: gallery-plugin.php:714
229
  msgid "ASC (ascending order from lowest to highest values - 1, 2, 3; a, b, c)"
230
  msgstr ""
231
 
232
+ #: gallery-plugin.php:715
233
  msgid "DESC (descending order from highest to lowest values - 3, 2, 1; c, b, a)"
234
  msgstr ""
235
 
236
+ #: gallery-plugin.php:719
237
  msgid "Display Return link"
238
  msgstr ""
239
 
240
+ #: gallery-plugin.php:725
241
  msgid "Display Return link in shortcode"
242
  msgstr ""
243
 
244
+ #: gallery-plugin.php:731
245
  msgid "Label for Return link"
246
  msgstr ""
247
 
248
+ #: gallery-plugin.php:739
249
  msgid "Save Changes"
250
  msgstr "Зберегти зміни"
251
 
252
+ #: gallery-plugin.php:751
253
  msgid "FAQ"
254
  msgstr "FAQ "
255
 
256
+ #: gallery-plugin.php:752
257
  msgid "Support"
258
  msgstr "Підтримка"
259
 
260
+ #: gallery-plugin.php:863
261
  #: template/gallery-single-template.php:60
262
  msgid "Sorry - nothing to found."
263
  msgstr "Вибачте - нічого не знайдено."
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.3.2
7
- Stable tag: 3.1
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
@@ -112,6 +112,9 @@ Just setup a necessary order and click 'Save' button.
112
 
113
  == Changelog ==
114
 
 
 
 
115
  = V3.1 - 11.06.2012 =
116
  * New : Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post.
117
  * Bugfix : The bug with gallery shortcode was fixed.
@@ -191,6 +194,9 @@ Just setup a necessary order and click 'Save' button.
191
 
192
  == Upgrade Notice ==
193
 
 
 
 
194
  = V3.1 =
195
  Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post. The bug with gallery shortcode was fixed.
196
 
4
  Tags: gallery, image, gallery image, album, foto, fotoalbum, website gallery, multiple pictures, pictures, photo, photoalbum, photogallery
5
  Requires at least: 3.0
6
  Tested up to: 3.3.2
7
+ Stable tag: 3.1.1
8
 
9
  This plugin allows you to implement gallery page into your web site.
10
 
112
 
113
  == Changelog ==
114
 
115
+ = V3.1.1 - 13.06.2012 =
116
+ * Bugfix : The bug with gallery uploader was fixed.
117
+
118
  = V3.1 - 11.06.2012 =
119
  * New : Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post.
120
  * Bugfix : The bug with gallery shortcode was fixed.
194
 
195
  == Upgrade Notice ==
196
 
197
+ = V3.1.1 =
198
+ The bug with gallery uploader was fixed.
199
+
200
  = V3.1 =
201
  Metabox with shortcode has been added on Edit Gallery Page to add it on your page or post. The bug with gallery shortcode was fixed.
202
 
upload/php.php DELETED
@@ -1,162 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Handle file uploads via XMLHttpRequest
5
- */
6
- class qqUploadedFileXhr {
7
- /**
8
- * Save the file to the specified path
9
- * @return boolean TRUE on success
10
- */
11
- function save($path) {
12
- $input = fopen("php://input", "r");
13
- $temp = tmpfile();
14
- $realSize = stream_copy_to_stream($input, $temp);
15
- fclose($input);
16
-
17
- if ($realSize != $this->getSize()){
18
- return false;
19
- }
20
-
21
- $target = fopen($path, "w");
22
- fseek($temp, 0, SEEK_SET);
23
- stream_copy_to_stream($temp, $target);
24
- fclose($target);
25
-
26
- return true;
27
- }
28
- function getName() {
29
- return $_GET['qqfile'];
30
- }
31
- function getSize() {
32
- if (isset($_SERVER["CONTENT_LENGTH"])){
33
- return (int)$_SERVER["CONTENT_LENGTH"];
34
- } else {
35
- throw new Exception('Getting content length is not supported.');
36
- }
37
- }
38
- }
39
-
40
- /**
41
- * Handle file uploads via regular form post (uses the $_FILES array)
42
- */
43
- class qqUploadedFileForm {
44
- /**
45
- * Save the file to the specified path
46
- * @return boolean TRUE on success
47
- */
48
- function save($path) {
49
- if(!move_uploaded_file($_FILES['qqfile']['tmp_name'], $path)){
50
- return false;
51
- }
52
- return true;
53
- }
54
- function getName() {
55
- return $_FILES['qqfile']['name'];
56
- }
57
- function getSize() {
58
- return $_FILES['qqfile']['size'];
59
- }
60
- }
61
-
62
- class qqFileUploader {
63
- private $allowedExtensions = array();
64
- private $sizeLimit = 10485760;
65
- private $file;
66
-
67
- function __construct(array $allowedExtensions = array(), $sizeLimit = 10485760){
68
- $allowedExtensions = array_map("strtolower", $allowedExtensions);
69
-
70
- $this->allowedExtensions = $allowedExtensions;
71
- $this->sizeLimit = $sizeLimit;
72
-
73
- //$this->checkServerSettings();
74
-
75
- if (isset($_GET['qqfile'])) {
76
- $this->file = new qqUploadedFileXhr();
77
- } elseif (isset($_FILES['qqfile'])) {
78
- $this->file = new qqUploadedFileForm();
79
- } else {
80
- $this->file = false;
81
- }
82
- }
83
-
84
- private function checkServerSettings(){
85
- $postSize = $this->toBytes(ini_get('post_max_size'));
86
- $uploadSize = $this->toBytes(ini_get('upload_max_filesize'));
87
-
88
- if ($postSize < $this->sizeLimit || $uploadSize < $this->sizeLimit){
89
- $size = max(1, $this->sizeLimit / 1024 / 1024) . 'M';
90
- die("{error:'increase post_max_size and upload_max_filesize to $size'}");
91
- }
92
- }
93
-
94
- private function toBytes($str){
95
- $val = trim($str);
96
- $last = strtolower($str[strlen($str)-1]);
97
- switch($last) {
98
- case 'g': $val *= 1024;
99
- case 'm': $val *= 1024;
100
- case 'k': $val *= 1024;
101
- }
102
- return $val;
103
- }
104
-
105
- /**
106
- * Returns array('success'=>true) or array('error'=>'error message')
107
- */
108
- function handleUpload($uploadDirectory, $replaceOldFile = FALSE){
109
- if (!is_writable($uploadDirectory)){
110
- return "{error:'Server error. Upload directory isn't writable.'}";
111
- }
112
-
113
- if (!$this->file){
114
- return "{error:'No files were uploaded.'}";
115
- }
116
-
117
- $size = $this->file->getSize();
118
-
119
- if ($size == 0) {
120
- return "{error:'File is empty'}";
121
- }
122
-
123
- if ($size > $this->sizeLimit) {
124
- return "{error:'File is too large'}";
125
- }
126
-
127
- $pathinfo = pathinfo($this->file->getName());
128
- $ext = $pathinfo['extension'];
129
- $filename = str_replace(".".$ext, "", $pathinfo['basename']);
130
- //$filename = md5(uniqid());
131
-
132
- if($this->allowedExtensions && !in_array(strtolower($ext), $this->allowedExtensions)){
133
- $these = implode(', ', $this->allowedExtensions);
134
- return "{error:'File has an invalid extension, it should be one of $these .'}";
135
- }
136
-
137
- if(!$replaceOldFile){
138
- /// don't overwrite previous files that were uploaded
139
- while (file_exists($uploadDirectory . $filename . '.' . $ext)) {
140
- $filename .= rand(10, 99);
141
- }
142
- }
143
-
144
- if ($this->file->save($uploadDirectory . $filename . '.' . $ext)){
145
- list($width, $height, $type, $attr) = getimagesize($uploadDirectory . $filename . '.' . $ext);
146
- return "{success:true,width:".$width.",height:".$height."}";
147
- } else {
148
- return "{error:'Could not save uploaded file. The upload was cancelled, or server error encountered'}";
149
- }
150
-
151
- }
152
- }
153
-
154
- // list of valid extensions, ex. array("jpeg", "xml", "bmp")
155
- $allowedExtensions = array("jpeg", "jpg", "gif", "png");
156
- // max file size in bytes
157
- $sizeLimit = 10 * 1024 * 1024;
158
-
159
- $uploader = new qqFileUploader($allowedExtensions, $sizeLimit);
160
- $result = $uploader->handleUpload('files/');
161
- // to pass data through iframe you will need to encode all html tags
162
- echo $result;