Simple Image Sizes - Version 2.4.3

Version Description

Download this release

Release Info

Developer Rahe
Plugin Icon wp plugin Simple Image Sizes
Version 2.4.3
Comparing to
See all releases

Code changes from version 2.4.2 to 2.4.3

inc/class.admin.php CHANGED
@@ -52,7 +52,7 @@ Class SISAdmin {
52
 
53
  if( $hook_suffix == 'options-media.php' ) {
54
  // Add javascript
55
- wp_enqueue_script( 'underscore', 'http//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.3/underscore-min.js' , array(), '1.4.3' );
56
  wp_enqueue_script( 'sis_js', SIS_URL.'/js/sis.min.js', array( 'jquery', 'jquery-ui-button', 'jquery-ui-progressbar', 'underscore' ), SIS_VERSION );
57
 
58
  // Add CSS
@@ -602,7 +602,7 @@ Class SISAdmin {
602
  $sizes = apply_filters( 'intermediate_image_sizes_advanced', $sizes );
603
 
604
  // Only if not all sizes
605
- if( isset( $thumbnails ) && is_array( $thumbnails ) ) {
606
  // Fill the array with the other sizes not have to be done
607
  foreach( $meta_datas['sizes'] as $name => $fsize ) {
608
  $metadata['sizes'][$name] = $fsize;
52
 
53
  if( $hook_suffix == 'options-media.php' ) {
54
  // Add javascript
55
+ wp_enqueue_script( 'underscore', 'http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.3/underscore-min.js' , array(), '1.4.3' );
56
  wp_enqueue_script( 'sis_js', SIS_URL.'/js/sis.min.js', array( 'jquery', 'jquery-ui-button', 'jquery-ui-progressbar', 'underscore' ), SIS_VERSION );
57
 
58
  // Add CSS
602
  $sizes = apply_filters( 'intermediate_image_sizes_advanced', $sizes );
603
 
604
  // Only if not all sizes
605
+ if( isset( $thumbnails ) && is_array( $thumbnails ) && isset( $meta_datas['sizes'] ) && !empty( $meta_datas['sizes'] ) ) {
606
  // Fill the array with the other sizes not have to be done
607
  foreach( $meta_datas['sizes'] as $name => $fsize ) {
608
  $metadata['sizes'][$name] = $fsize;
inc/class.client.php CHANGED
@@ -26,6 +26,9 @@ Class SISClient {
26
 
27
  // Set the new sizes
28
  foreach( $sizes as $name => $size ) {
 
 
 
29
  // Add the images sizes
30
  add_image_size( $name, $size['w'], $size['h'], ( isset( $size['c'] ) && !empty( $size['c'] ) )? $size['c'] : 0 );
31
  }
26
 
27
  // Set the new sizes
28
  foreach( $sizes as $name => $size ) {
29
+ if( empty( $size ) || !isset( $size['w'] ) || !isset( $size['h'] ) ) {
30
+ continue;
31
+ }
32
  // Add the images sizes
33
  add_image_size( $name, $size['w'], $size['h'], ( isset( $size['c'] ) && !empty( $size['c'] ) )? $size['c'] : 0 );
34
  }
languages/sis-de_DE.po CHANGED
@@ -1,373 +1,373 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-10-02 00:11+0100\n"
6
- "PO-Revision-Date: 2011-10-02 00:11+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: \n"
14
- "X-Poedit-Country: \n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: inc/class.admin.php:89
23
- #@ sis
24
- msgid "Reading attachments..."
25
- msgstr "Lese Anhänge…"
26
-
27
- #: inc/class.admin.php:90
28
- #: inc/class.admin.php:249
29
- #@ sis
30
- msgid "Maximum width"
31
- msgstr "Maximale Breite"
32
-
33
- #: inc/class.admin.php:91
34
- #: inc/class.admin.php:254
35
- #@ sis
36
- msgid "Maximum height"
37
- msgstr "Maximale Höhe"
38
-
39
- #: inc/class.admin.php:92
40
- #: inc/class.admin.php:259
41
- #: inc/class.admin.php:327
42
- #: inc/class.admin.php:386
43
- #@ sis
44
- msgid "Crop ?"
45
- msgstr "Beschneiden?"
46
-
47
- #: inc/class.admin.php:93
48
- #: inc/class.admin.php:374
49
- #@ sis
50
- msgid "yes"
51
- msgstr "ja"
52
-
53
- #: inc/class.admin.php:94
54
- #: inc/class.admin.php:374
55
- #@ sis
56
- msgid "no"
57
- msgstr "nein"
58
-
59
- #: inc/class.admin.php:95
60
- #: inc/class.admin.php:262
61
- #@ sis
62
- msgid "Show in post insertion ?"
63
- msgstr "Beim Einfügen in den Beitrag anzeigen?"
64
-
65
- #: inc/class.admin.php:96
66
- #@ sis
67
- msgid " of "
68
- msgstr "von"
69
-
70
- #: inc/class.admin.php:97
71
- #@ sis
72
- msgid " or "
73
- msgstr "oder"
74
-
75
- #: inc/class.admin.php:98
76
- #@ sis
77
- msgid " before the end."
78
- msgstr "vor dem Ende."
79
-
80
- #: inc/class.admin.php:99
81
- #: inc/class.admin.php:264
82
- #@ sis
83
- msgid "Delete"
84
- msgstr "Löschen"
85
-
86
- #: inc/class.admin.php:100
87
- #@ sis
88
- msgid "No media in your site to regenerate !"
89
- msgstr "Keine Medien neu zu generieren!"
90
-
91
- #: inc/class.admin.php:101
92
- #@ sis
93
- msgid "Regenerating "
94
- msgstr "Neu generieren"
95
-
96
- #: inc/class.admin.php:102
97
- #@ sis
98
- msgid "Validate image size name"
99
- msgstr "Bildgrößenbezeichnung überprüfen"
100
-
101
- #: inc/class.admin.php:103
102
- #@ sis
103
- msgid "Done."
104
- msgstr "Fertig."
105
-
106
- #: inc/class.admin.php:104
107
- #@ sis
108
- msgid "Size"
109
- msgstr "Bildgröße"
110
-
111
- #: inc/class.admin.php:105
112
- #@ sis
113
- msgid "Don't use the basic Wordpress thumbnail size name, use the form above to edit them"
114
- msgstr "Nutze nicht die vorgegebene Thumbnail-Bezeichnung in WordPress! Nutze das Formular, um diese zu bearbeiten."
115
-
116
- #: inc/class.admin.php:106
117
- #@ sis
118
- msgid "This size is already registered, edit it instead of recreating it."
119
- msgstr "Die Bildgröße existiert bereits. Du kannst sie bearbeiten, anstatt sie doppelt anzulegen."
120
-
121
- #: inc/class.admin.php:107
122
- #@ sis
123
- msgid "Do you really want to delete these size ?"
124
- msgstr "Willst du diese Bildgröße/n wirklich löschen?"
125
-
126
- #: inc/class.admin.php:108
127
- #: inc/class.admin.php:265
128
- #@ sis
129
- msgid "Update"
130
- msgstr "Aktualisieren"
131
-
132
- #: inc/class.admin.php:109
133
- #@ sis
134
- msgid "Error requesting page"
135
- msgstr "Fehler beim Abruf der Seite"
136
-
137
- #: inc/class.admin.php:110
138
- #@ sis
139
- msgid "images have been regenerated !"
140
- msgstr "Bilder wurden neu generiert!"
141
-
142
- #: inc/class.admin.php:111
143
- #@ sis
144
- msgid "Validate"
145
- msgstr "Überprüfen"
146
-
147
- #: inc/class.admin.php:112
148
- #@ sis
149
- msgid " started at"
150
- msgstr "begonnen: "
151
-
152
- #: inc/class.admin.php:113
153
- #@ sis
154
- msgid " finished at :"
155
- msgstr "beendet: "
156
-
157
- #: inc/class.admin.php:114
158
- #@ sis
159
- msgid "Error during the php treatment, be sure to not have php errors in your page"
160
- msgstr "Fehler während des PHP-Durchlaufs! Stelle sicher, dass sich keine PHP-Fehler in deiner Seite befinden."
161
-
162
- #: inc/class.admin.php:115
163
- #@ sis
164
- msgid "All the sizes you have modifed are not saved, continue anyway ?"
165
- msgstr "Deine veränderten Bildgrößen wurden noch nicht gespeichert. Trotzdem fortfahren?"
166
-
167
- #: inc/class.admin.php:116
168
- #, php-format
169
- #@ sis
170
- msgid "This image has been regenerated in %s seconds"
171
- msgstr "Dieses Bild wurde neu generiert in %s Sekunden."
172
-
173
- #: inc/class.admin.php:131
174
- #@ sis
175
- msgid "Regenerate thumbnails"
176
- msgstr "Artikelbilder neu generieren"
177
-
178
- #: inc/class.admin.php:151
179
- #@ sis
180
- msgid "Settings"
181
- msgstr "Einstellungen"
182
-
183
- #: inc/class.admin.php:200
184
- #, php-format
185
- #@ sis
186
- msgid "%s size"
187
- msgstr "Bildgröße „%s“"
188
-
189
- #: inc/class.admin.php:207
190
- #@ sis
191
- msgid "Add a new size"
192
- msgstr "Neue Bildgröße hinzufügen"
193
-
194
- #: inc/class.admin.php:210
195
- #@ sis
196
- msgid "Legend of the sizes"
197
- msgstr "Legende für deine Bildgrößen"
198
-
199
- #: inc/class.admin.php:213
200
- #@ sis
201
- msgid "Get php for theme"
202
- msgstr "PHP für dein Theme generieren"
203
-
204
- #: inc/class.admin.php:216
205
- #@ sis
206
- msgid "Thumbnail regeneration"
207
- msgstr "Artikelbilder neu generieren"
208
-
209
- #: inc/class.admin.php:276
210
- #@ sis
211
- msgid "Add a new size of thumbnail"
212
- msgstr "Neue Bildgröße für Thumbnail hinzufügen"
213
-
214
- #: inc/class.admin.php:288
215
- #@ sis
216
- msgid "Get the PHP for the theme"
217
- msgstr "Hol‘ dir den PHP-Code für dein Theme!"
218
-
219
- #: inc/class.admin.php:289
220
- #@ sis
221
- msgid "Copy and paste the code below into your Wordpress theme function file if you wanted to save them and deactivate the plugin."
222
- msgstr "Falls du deine Bildgrößen behalten und das Plugin deaktivieren möchtest, kopiere diesen PHP-Code in die Datei functions.php deines Theme."
223
-
224
- #: inc/class.admin.php:302
225
- #@ sis
226
- msgid "The images created on your theme are <span style=\"color:#F2A13A\">orange</span> and your custom size are <span style=\"color:#89D76A\"> green </span>."
227
- msgstr "Die von deinem Theme generierten Bildgrößen sind <span style=\"color:#F2A13A\">orange</span>, deine selbst erstellten Bildgrößen sind <span style=\"color:#89D76A\"> grün </span>."
228
-
229
- #: inc/class.admin.php:319
230
- #@ sis
231
- msgid "Select which thumbnails you want to rebuild:"
232
- msgstr "Wähle die Artikelbilder aus, die neu generiert werden sollen:"
233
-
234
- #: inc/class.admin.php:323
235
- #: inc/class.admin.php:382
236
- #: inc/class.admin.php:395
237
- #: inc/class.admin.php:420
238
- #@ sis
239
- msgid "Resize ?"
240
- msgstr "Bearbeiten?"
241
-
242
- #: inc/class.admin.php:324
243
- #: inc/class.admin.php:383
244
- #@ sis
245
- msgid "Size name"
246
- msgstr "Bildgrößenbezeichnung"
247
-
248
- #: inc/class.admin.php:325
249
- #: inc/class.admin.php:384
250
- #@ sis
251
- msgid "Width"
252
- msgstr "Breite"
253
-
254
- #: inc/class.admin.php:326
255
- #: inc/class.admin.php:385
256
- #@ sis
257
- msgid "Height"
258
- msgstr "Höhe"
259
-
260
- #: inc/class.admin.php:391
261
- #@ sis
262
- msgid "Select which post type source thumbnails you want to rebuild:"
263
- msgstr "Wähle die Inhaltstypen aus, deren Artikelbilder du neu generieren willst:"
264
-
265
- #: inc/class.admin.php:396
266
- #: inc/class.admin.php:421
267
- #@ sis
268
- msgid "Post type"
269
- msgstr "Inhaltstyp"
270
-
271
- #: inc/class.admin.php:443
272
- #@ sis
273
- msgid "End time calculated :"
274
- msgstr "Berechnetes Ende:"
275
-
276
- #: inc/class.admin.php:454
277
- #@ sis
278
- msgid "Last image:"
279
- msgstr "Letztes Bild:"
280
-
281
- #: inc/class.admin.php:455
282
- #@ sis
283
- msgid "Regenerate Thumbnails"
284
- msgstr "Artikelbilder neu generieren"
285
-
286
- #: inc/class.admin.php:620
287
- #@ sis
288
- msgid "No id given in POST datas."
289
- msgstr "Keine ID in den POST-Daten gegeben."
290
-
291
- #: inc/class.admin.php:630
292
- #: inc/class.admin.php:632
293
- #, php-format
294
- #@ sis
295
- msgid "This file does not exists and have not been regenerated :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
296
- msgstr "Diese Datei existiert nicht und wurde nicht neu generiert:<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
297
-
298
- #: inc/class.admin.php:73
299
- #, php-format
300
- #@ sis
301
- msgid "<h3>Welcome to Simple Image Sizes !</h3><p>In this plugin, you can add new image sizes<br/> and regenerate the images that doesn't exist yet.<br/> Click on <a href=\"%s\">Medias</a> for configurate the images</p>"
302
- msgstr "<h3>Willkommen bei Simple Image Sizes!</h3><p>Mit diesem Plugin kannst du neue Bildgrößen hinzufügen<br/> und für bereits existierende Bilder neu generieren.<br/> Gehe zur <a href=\"%s\">Mediathek</a>, um deine Bilder neu zu konfigurieren.</p>"
303
-
304
- #: inc/class.admin.php:244
305
- #@ default
306
- msgid "custom_image_sizes[name][custom]"
307
- msgstr ""
308
-
309
- #: inc/class.admin.php:246
310
- #@ default
311
- msgid "custom_image_sizes[name][theme]"
312
- msgstr ""
313
-
314
- #: inc/class.admin.php:248
315
- #: inc/class.admin.php:250
316
- #@ default
317
- msgid "custom_image_sizes[name][w]"
318
- msgstr ""
319
-
320
- #: inc/class.admin.php:253
321
- #: inc/class.admin.php:255
322
- #@ default
323
- msgid "custom_image_sizes[name][h]"
324
- msgstr ""
325
-
326
- #: inc/class.admin.php:258
327
- #: inc/class.admin.php:259
328
- #@ default
329
- msgid "custom_image_sizes[name][c]"
330
- msgstr ""
331
-
332
- #: inc/class.admin.php:261
333
- #: inc/class.admin.php:262
334
- #@ default
335
- msgid "custom_image_sizes[name][s]"
336
- msgstr ""
337
-
338
- #. translators: plugin header field 'Name'
339
- #: simple_image_sizes.php:0
340
- #@ sis
341
- msgid "Simple Image Size"
342
- msgstr "Simple Image Size"
343
-
344
- #. translators: plugin header field 'PluginURI'
345
- #: simple_image_sizes.php:0
346
- #@ sis
347
- msgid "http://redmine.beapi.fr/projects/show/simple-image-sizes"
348
- msgstr "http://redmine.beapi.fr/projects/show/simple-image-sizes"
349
-
350
- #. translators: plugin header field 'Description'
351
- #: simple_image_sizes.php:0
352
- #@ sis
353
- msgid "Add options in media setting page for images sizes"
354
- msgstr "Optionen für Bildgrößen in den Mediathek-Einstellungen hinzufügen"
355
-
356
- #. translators: plugin header field 'Author'
357
- #: simple_image_sizes.php:0
358
- #@ sis
359
- msgid "Rahe"
360
- msgstr "Rahe"
361
-
362
- #. translators: plugin header field 'AuthorURI'
363
- #: simple_image_sizes.php:0
364
- #@ sis
365
- msgid "http://nicolas-juen.fr"
366
- msgstr "http://nicolas-juen.fr"
367
-
368
- #. translators: plugin header field 'Version'
369
- #: simple_image_sizes.php:0
370
- #@ sis
371
- msgid "2.2.3"
372
- msgstr ""
373
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-10-02 00:11+0100\n"
6
+ "PO-Revision-Date: 2011-10-02 00:11+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: \n"
14
+ "X-Poedit-Country: \n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: inc/class.admin.php:89
23
+ #@ sis
24
+ msgid "Reading attachments..."
25
+ msgstr "Lese Anhänge…"
26
+
27
+ #: inc/class.admin.php:90
28
+ #: inc/class.admin.php:249
29
+ #@ sis
30
+ msgid "Maximum width"
31
+ msgstr "Maximale Breite"
32
+
33
+ #: inc/class.admin.php:91
34
+ #: inc/class.admin.php:254
35
+ #@ sis
36
+ msgid "Maximum height"
37
+ msgstr "Maximale Höhe"
38
+
39
+ #: inc/class.admin.php:92
40
+ #: inc/class.admin.php:259
41
+ #: inc/class.admin.php:327
42
+ #: inc/class.admin.php:386
43
+ #@ sis
44
+ msgid "Crop ?"
45
+ msgstr "Beschneiden?"
46
+
47
+ #: inc/class.admin.php:93
48
+ #: inc/class.admin.php:374
49
+ #@ sis
50
+ msgid "yes"
51
+ msgstr "ja"
52
+
53
+ #: inc/class.admin.php:94
54
+ #: inc/class.admin.php:374
55
+ #@ sis
56
+ msgid "no"
57
+ msgstr "nein"
58
+
59
+ #: inc/class.admin.php:95
60
+ #: inc/class.admin.php:262
61
+ #@ sis
62
+ msgid "Show in post insertion ?"
63
+ msgstr "Beim Einfügen in den Beitrag anzeigen?"
64
+
65
+ #: inc/class.admin.php:96
66
+ #@ sis
67
+ msgid " of "
68
+ msgstr "von"
69
+
70
+ #: inc/class.admin.php:97
71
+ #@ sis
72
+ msgid " or "
73
+ msgstr "oder"
74
+
75
+ #: inc/class.admin.php:98
76
+ #@ sis
77
+ msgid " before the end."
78
+ msgstr "vor dem Ende."
79
+
80
+ #: inc/class.admin.php:99
81
+ #: inc/class.admin.php:264
82
+ #@ sis
83
+ msgid "Delete"
84
+ msgstr "Löschen"
85
+
86
+ #: inc/class.admin.php:100
87
+ #@ sis
88
+ msgid "No media in your site to regenerate !"
89
+ msgstr "Keine Medien neu zu generieren!"
90
+
91
+ #: inc/class.admin.php:101
92
+ #@ sis
93
+ msgid "Regenerating "
94
+ msgstr "Neu generieren"
95
+
96
+ #: inc/class.admin.php:102
97
+ #@ sis
98
+ msgid "Validate image size name"
99
+ msgstr "Bildgrößenbezeichnung überprüfen"
100
+
101
+ #: inc/class.admin.php:103
102
+ #@ sis
103
+ msgid "Done."
104
+ msgstr "Fertig."
105
+
106
+ #: inc/class.admin.php:104
107
+ #@ sis
108
+ msgid "Size"
109
+ msgstr "Bildgröße"
110
+
111
+ #: inc/class.admin.php:105
112
+ #@ sis
113
+ msgid "Don't use the basic Wordpress thumbnail size name, use the form above to edit them"
114
+ msgstr "Nutze nicht die vorgegebene Thumbnail-Bezeichnung in WordPress! Nutze das Formular, um diese zu bearbeiten."
115
+
116
+ #: inc/class.admin.php:106
117
+ #@ sis
118
+ msgid "This size is already registered, edit it instead of recreating it."
119
+ msgstr "Die Bildgröße existiert bereits. Du kannst sie bearbeiten, anstatt sie doppelt anzulegen."
120
+
121
+ #: inc/class.admin.php:107
122
+ #@ sis
123
+ msgid "Do you really want to delete these size ?"
124
+ msgstr "Willst du diese Bildgröße/n wirklich löschen?"
125
+
126
+ #: inc/class.admin.php:108
127
+ #: inc/class.admin.php:265
128
+ #@ sis
129
+ msgid "Update"
130
+ msgstr "Aktualisieren"
131
+
132
+ #: inc/class.admin.php:109
133
+ #@ sis
134
+ msgid "Error requesting page"
135
+ msgstr "Fehler beim Abruf der Seite"
136
+
137
+ #: inc/class.admin.php:110
138
+ #@ sis
139
+ msgid "images have been regenerated !"
140
+ msgstr "Bilder wurden neu generiert!"
141
+
142
+ #: inc/class.admin.php:111
143
+ #@ sis
144
+ msgid "Validate"
145
+ msgstr "Überprüfen"
146
+
147
+ #: inc/class.admin.php:112
148
+ #@ sis
149
+ msgid " started at"
150
+ msgstr "begonnen: "
151
+
152
+ #: inc/class.admin.php:113
153
+ #@ sis
154
+ msgid " finished at :"
155
+ msgstr "beendet: "
156
+
157
+ #: inc/class.admin.php:114
158
+ #@ sis
159
+ msgid "Error during the php treatment, be sure to not have php errors in your page"
160
+ msgstr "Fehler während des PHP-Durchlaufs! Stelle sicher, dass sich keine PHP-Fehler in deiner Seite befinden."
161
+
162
+ #: inc/class.admin.php:115
163
+ #@ sis
164
+ msgid "All the sizes you have modifed are not saved, continue anyway ?"
165
+ msgstr "Deine veränderten Bildgrößen wurden noch nicht gespeichert. Trotzdem fortfahren?"
166
+
167
+ #: inc/class.admin.php:116
168
+ #, php-format
169
+ #@ sis
170
+ msgid "This image has been regenerated in %s seconds"
171
+ msgstr "Dieses Bild wurde neu generiert in %s Sekunden."
172
+
173
+ #: inc/class.admin.php:131
174
+ #@ sis
175
+ msgid "Regenerate thumbnails"
176
+ msgstr "Artikelbilder neu generieren"
177
+
178
+ #: inc/class.admin.php:151
179
+ #@ sis
180
+ msgid "Settings"
181
+ msgstr "Einstellungen"
182
+
183
+ #: inc/class.admin.php:200
184
+ #, php-format
185
+ #@ sis
186
+ msgid "%s size"
187
+ msgstr "Bildgröße „%s“"
188
+
189
+ #: inc/class.admin.php:207
190
+ #@ sis
191
+ msgid "Add a new size"
192
+ msgstr "Neue Bildgröße hinzufügen"
193
+
194
+ #: inc/class.admin.php:210
195
+ #@ sis
196
+ msgid "Legend of the sizes"
197
+ msgstr "Legende für deine Bildgrößen"
198
+
199
+ #: inc/class.admin.php:213
200
+ #@ sis
201
+ msgid "Get php for theme"
202
+ msgstr "PHP für dein Theme generieren"
203
+
204
+ #: inc/class.admin.php:216
205
+ #@ sis
206
+ msgid "Thumbnail regeneration"
207
+ msgstr "Artikelbilder neu generieren"
208
+
209
+ #: inc/class.admin.php:276
210
+ #@ sis
211
+ msgid "Add a new size of thumbnail"
212
+ msgstr "Neue Bildgröße für Thumbnail hinzufügen"
213
+
214
+ #: inc/class.admin.php:288
215
+ #@ sis
216
+ msgid "Get the PHP for the theme"
217
+ msgstr "Hol‘ dir den PHP-Code für dein Theme!"
218
+
219
+ #: inc/class.admin.php:289
220
+ #@ sis
221
+ msgid "Copy and paste the code below into your Wordpress theme function file if you wanted to save them and deactivate the plugin."
222
+ msgstr "Falls du deine Bildgrößen behalten und das Plugin deaktivieren möchtest, kopiere diesen PHP-Code in die Datei functions.php deines Theme."
223
+
224
+ #: inc/class.admin.php:302
225
+ #@ sis
226
+ msgid "The images created on your theme are <span style=\"color:#F2A13A\">orange</span> and your custom size are <span style=\"color:#89D76A\"> green </span>."
227
+ msgstr "Die von deinem Theme generierten Bildgrößen sind <span style=\"color:#F2A13A\">orange</span>, deine selbst erstellten Bildgrößen sind <span style=\"color:#89D76A\"> grün </span>."
228
+
229
+ #: inc/class.admin.php:319
230
+ #@ sis
231
+ msgid "Select which thumbnails you want to rebuild:"
232
+ msgstr "Wähle die Artikelbilder aus, die neu generiert werden sollen:"
233
+
234
+ #: inc/class.admin.php:323
235
+ #: inc/class.admin.php:382
236
+ #: inc/class.admin.php:395
237
+ #: inc/class.admin.php:420
238
+ #@ sis
239
+ msgid "Resize ?"
240
+ msgstr "Bearbeiten?"
241
+
242
+ #: inc/class.admin.php:324
243
+ #: inc/class.admin.php:383
244
+ #@ sis
245
+ msgid "Size name"
246
+ msgstr "Bildgrößenbezeichnung"
247
+
248
+ #: inc/class.admin.php:325
249
+ #: inc/class.admin.php:384
250
+ #@ sis
251
+ msgid "Width"
252
+ msgstr "Breite"
253
+
254
+ #: inc/class.admin.php:326
255
+ #: inc/class.admin.php:385
256
+ #@ sis
257
+ msgid "Height"
258
+ msgstr "Höhe"
259
+
260
+ #: inc/class.admin.php:391
261
+ #@ sis
262
+ msgid "Select which post type source thumbnails you want to rebuild:"
263
+ msgstr "Wähle die Inhaltstypen aus, deren Artikelbilder du neu generieren willst:"
264
+
265
+ #: inc/class.admin.php:396
266
+ #: inc/class.admin.php:421
267
+ #@ sis
268
+ msgid "Post type"
269
+ msgstr "Inhaltstyp"
270
+
271
+ #: inc/class.admin.php:443
272
+ #@ sis
273
+ msgid "End time calculated :"
274
+ msgstr "Berechnetes Ende:"
275
+
276
+ #: inc/class.admin.php:454
277
+ #@ sis
278
+ msgid "Last image:"
279
+ msgstr "Letztes Bild:"
280
+
281
+ #: inc/class.admin.php:455
282
+ #@ sis
283
+ msgid "Regenerate Thumbnails"
284
+ msgstr "Artikelbilder neu generieren"
285
+
286
+ #: inc/class.admin.php:620
287
+ #@ sis
288
+ msgid "No id given in POST datas."
289
+ msgstr "Keine ID in den POST-Daten gegeben."
290
+
291
+ #: inc/class.admin.php:630
292
+ #: inc/class.admin.php:632
293
+ #, php-format
294
+ #@ sis
295
+ msgid "This file does not exists and have not been regenerated :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
296
+ msgstr "Diese Datei existiert nicht und wurde nicht neu generiert:<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
297
+
298
+ #: inc/class.admin.php:73
299
+ #, php-format
300
+ #@ sis
301
+ msgid "<h3>Welcome to Simple Image Sizes !</h3><p>In this plugin, you can add new image sizes<br/> and regenerate the images that doesn't exist yet.<br/> Click on <a href=\"%s\">Medias</a> for configurate the images</p>"
302
+ msgstr "<h3>Willkommen bei Simple Image Sizes!</h3><p>Mit diesem Plugin kannst du neue Bildgrößen hinzufügen<br/> und für bereits existierende Bilder neu generieren.<br/> Gehe zur <a href=\"%s\">Mediathek</a>, um deine Bilder neu zu konfigurieren.</p>"
303
+
304
+ #: inc/class.admin.php:244
305
+ #@ default
306
+ msgid "custom_image_sizes[name][custom]"
307
+ msgstr ""
308
+
309
+ #: inc/class.admin.php:246
310
+ #@ default
311
+ msgid "custom_image_sizes[name][theme]"
312
+ msgstr ""
313
+
314
+ #: inc/class.admin.php:248
315
+ #: inc/class.admin.php:250
316
+ #@ default
317
+ msgid "custom_image_sizes[name][w]"
318
+ msgstr ""
319
+
320
+ #: inc/class.admin.php:253
321
+ #: inc/class.admin.php:255
322
+ #@ default
323
+ msgid "custom_image_sizes[name][h]"
324
+ msgstr ""
325
+
326
+ #: inc/class.admin.php:258
327
+ #: inc/class.admin.php:259
328
+ #@ default
329
+ msgid "custom_image_sizes[name][c]"
330
+ msgstr ""
331
+
332
+ #: inc/class.admin.php:261
333
+ #: inc/class.admin.php:262
334
+ #@ default
335
+ msgid "custom_image_sizes[name][s]"
336
+ msgstr ""
337
+
338
+ #. translators: plugin header field 'Name'
339
+ #: simple_image_sizes.php:0
340
+ #@ sis
341
+ msgid "Simple Image Size"
342
+ msgstr "Simple Image Size"
343
+
344
+ #. translators: plugin header field 'PluginURI'
345
+ #: simple_image_sizes.php:0
346
+ #@ sis
347
+ msgid "http://redmine.beapi.fr/projects/show/simple-image-sizes"
348
+ msgstr "http://redmine.beapi.fr/projects/show/simple-image-sizes"
349
+
350
+ #. translators: plugin header field 'Description'
351
+ #: simple_image_sizes.php:0
352
+ #@ sis
353
+ msgid "Add options in media setting page for images sizes"
354
+ msgstr "Optionen für Bildgrößen in den Mediathek-Einstellungen hinzufügen"
355
+
356
+ #. translators: plugin header field 'Author'
357
+ #: simple_image_sizes.php:0
358
+ #@ sis
359
+ msgid "Rahe"
360
+ msgstr "Rahe"
361
+
362
+ #. translators: plugin header field 'AuthorURI'
363
+ #: simple_image_sizes.php:0
364
+ #@ sis
365
+ msgid "http://nicolas-juen.fr"
366
+ msgstr "http://nicolas-juen.fr"
367
+
368
+ #. translators: plugin header field 'Version'
369
+ #: simple_image_sizes.php:0
370
+ #@ sis
371
+ msgid "2.2.3"
372
+ msgstr ""
373
+
languages/sis-fr_FR.po CHANGED
@@ -1,287 +1,287 @@
1
- # Copyright (C) 2010
2
- # This file is distributed under the same license as the package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Simple image sizes\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-01-20 02:54+0100\n"
8
- "PO-Revision-Date: 2013-01-20 02:54+0100\n"
9
- "Last-Translator: \n"
10
- "Language-Team: Beapi <njuen@beapi.fr>\n"
11
- "Language: fr_FR\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: inc/class.admin.php:80
22
- msgid "Reading attachments..."
23
- msgstr "Chargement des médias..."
24
-
25
- #: inc/class.admin.php:81 inc/class.admin.php:247
26
- msgid "Maximum width"
27
- msgstr "Largeur maximum"
28
-
29
- #: inc/class.admin.php:82 inc/class.admin.php:251
30
- msgid "Maximum height"
31
- msgstr "Hauteur maximum"
32
-
33
- #: inc/class.admin.php:83 inc/class.admin.php:260
34
- #: templates/options-media.php:18 templates/options-media.php:65
35
- msgid "Crop ?"
36
- msgstr "Rogner ?"
37
-
38
- #: inc/class.admin.php:84
39
- msgid "yes"
40
- msgstr "oui"
41
-
42
- #: inc/class.admin.php:85
43
- msgid "no"
44
- msgstr "non"
45
-
46
- #: inc/class.admin.php:86 inc/class.admin.php:263
47
- msgid "Show in post insertion ?"
48
- msgstr "Afficher dans l'insertion ?"
49
-
50
- #: inc/class.admin.php:87
51
- msgid " of "
52
- msgstr " de "
53
-
54
- #: inc/class.admin.php:88
55
- msgid " or "
56
- msgstr " ou "
57
-
58
- #: inc/class.admin.php:89
59
- msgid " before the end."
60
- msgstr " avant la fin."
61
-
62
- #: inc/class.admin.php:90 inc/class.admin.php:265
63
- msgid "Delete"
64
- msgstr "Supprimer"
65
-
66
- #: inc/class.admin.php:91
67
- msgid "No media in your site to regenerate !"
68
- msgstr "Pas de médias à regénérer !"
69
-
70
- #: inc/class.admin.php:92
71
- msgid "Regenerating "
72
- msgstr "Regénération "
73
-
74
- #: inc/class.admin.php:93
75
- msgid "Regenerate "
76
- msgstr "Regénérer "
77
-
78
- #: inc/class.admin.php:94
79
- msgid "Validate image size name"
80
- msgstr "Valider le nom de la taille d'image"
81
-
82
- #: inc/class.admin.php:95
83
- msgid "Done."
84
- msgstr "Fini."
85
-
86
- #: inc/class.admin.php:96
87
- msgid "Size"
88
- msgstr "Taille "
89
-
90
- #: inc/class.admin.php:97
91
- msgid ""
92
- "Don't use the basic Wordpress thumbnail size name, use the form above to "
93
- "edit them"
94
- msgstr ""
95
- "N'utilisez pas les tailles par défaut de WordPress comme nom de taille, "
96
- "éditez leurs valeurs avec le formulaire ci-dessus."
97
-
98
- #: inc/class.admin.php:98
99
- msgid "This size is already registered, edit it instead of recreating it."
100
- msgstr "Cette taille existe déjà, éditez la au lieu de la recréer."
101
-
102
- #: inc/class.admin.php:99
103
- msgid "Do you really want to delete these size ?"
104
- msgstr "Voulez-vous réellement supprimer cette taille ?"
105
-
106
- #: inc/class.admin.php:100 inc/class.admin.php:266
107
- msgid "Update"
108
- msgstr "Mettre à jour"
109
-
110
- #: inc/class.admin.php:101
111
- msgid "Error requesting page"
112
- msgstr "Erreur lors de la requête vers la page"
113
-
114
- #: inc/class.admin.php:102
115
- msgid "images have been regenerated !"
116
- msgstr "images ont été regénérées !"
117
-
118
- #: inc/class.admin.php:103
119
- msgid "Validate"
120
- msgstr "Valider"
121
-
122
- #: inc/class.admin.php:104
123
- msgid " started at"
124
- msgstr " commencé à "
125
-
126
- #: inc/class.admin.php:105 inc/class.admin.php:255
127
- msgid "Public name"
128
- msgstr "Nom public"
129
-
130
- #: inc/class.admin.php:106
131
- msgid " finished at :"
132
- msgstr " terminé à :"
133
-
134
- #: inc/class.admin.php:107
135
- msgid ""
136
- "Error during the php treatment, be sure to not have php errors in your page"
137
- msgstr ""
138
- "Erreur durant le traitement, soyez sûr de ne pas avoir d'erreurs php dans "
139
- "votre page"
140
-
141
- #: inc/class.admin.php:108
142
- msgid "All the sizes you have modifed are not saved, continue anyway ?"
143
- msgstr ""
144
- "Toutes les tailles qui ont été modifiée n'ont pas été sauvées, continuer "
145
- "tout de même ?"
146
-
147
- #: inc/class.admin.php:109
148
- #, php-format
149
- msgid "This image has been regenerated in %s seconds"
150
- msgstr "Cette image a été regénérée en %s secondes"
151
-
152
- #: inc/class.admin.php:138
153
- msgid "Regenerate thumbnails"
154
- msgstr "Régénérer les vignettes"
155
-
156
- #: inc/class.admin.php:159
157
- msgid "Settings"
158
- msgstr "Paramètres"
159
-
160
- #: inc/class.admin.php:199
161
- #, php-format
162
- msgid "%s size"
163
- msgstr "Taille %s"
164
-
165
- #: inc/class.admin.php:206
166
- msgid "Add a new size"
167
- msgstr "Ajouter une nouvelle taille"
168
-
169
- #: inc/class.admin.php:209
170
- msgid "Get php for theme"
171
- msgstr "Récupérer le PHP pour le thème"
172
-
173
- #: inc/class.admin.php:212
174
- msgid "Thumbnail regeneration"
175
- msgstr "Régénération des vignettes"
176
-
177
- #: inc/class.admin.php:292
178
- msgid ""
179
- "Copy and paste the code below into your Wordpress theme function file if you "
180
- "wanted to save them and deactivate the plugin."
181
- msgstr ""
182
- "Copiez et collez le code ci-dessous dans votre fichier de fonctions de votre "
183
- "thème WordPress si vous voulez les conserver et désactiver ce plugin."
184
-
185
- #: inc/class.admin.php:508
186
- msgid "Trying to cheat ?"
187
- msgstr "Cheater ?"
188
-
189
- #: inc/class.admin.php:519
190
- msgid "No id given in POST datas."
191
- msgstr "Pas d'id donné dans les données du POST."
192
-
193
- #: inc/class.admin.php:535
194
- #, php-format
195
- msgid ""
196
- "This file already exists in this size and have not been regenerated :<br/><a "
197
- "target=\"_blank\" href=\"%1$s\" >%2$s</a>"
198
- msgstr ""
199
- "Ce fichier existe déjà dans cette ces tailles d'image et n'a pas été "
200
- "regénéré :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
201
-
202
- #: inc/class.admin.php:544
203
- #, php-format
204
- msgid ""
205
- "This file does not exists and have not been regenerated :<br/><a target="
206
- "\"_blank\" href=\"%1$s\" >%2$s</a>"
207
- msgstr ""
208
- "Ce fichier existe déjà dans cette ces tailles d'image et n'a pas été "
209
- "regénéré :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
210
-
211
- #: inc/class.admin.php:785 inc/class.admin.php:788
212
- #: templates/options-media.php:128
213
- msgid "Regenerate Thumbnails"
214
- msgstr "Régénérer les vignettes"
215
-
216
- #: templates/options-media.php:10
217
- msgid "Select which thumbnails you want to rebuild:"
218
- msgstr "Sélectionnez les tailles de vignettes à régénérer"
219
-
220
- #: templates/options-media.php:15 templates/options-media.php:62
221
- msgid "Size name"
222
- msgstr "Nom de la taille"
223
-
224
- #: templates/options-media.php:16 templates/options-media.php:63
225
- msgid "Width"
226
- msgstr "Largeur"
227
-
228
- #: templates/options-media.php:17 templates/options-media.php:64
229
- msgid "Height"
230
- msgstr "Hauteur"
231
-
232
- #: templates/options-media.php:54
233
- msgid "Yes"
234
- msgstr "Oui"
235
-
236
- #: templates/options-media.php:54
237
- msgid "No"
238
- msgstr "Non"
239
-
240
- #: templates/options-media.php:70
241
- msgid "Select which post type source thumbnails you want to rebuild:"
242
- msgstr ""
243
- "Sélectionnez quelles vignettes de quel type de contenu vous souhaitez "
244
- "régénérer : "
245
-
246
- #: templates/options-media.php:75 templates/options-media.php:102
247
- msgid "Post type"
248
- msgstr "Type de contenu"
249
-
250
- #: templates/options-media.php:116
251
- msgid "End time calculated :"
252
- msgstr "Fin du traitement calculé :"
253
-
254
- #: templates/options-media.php:116
255
- msgid "Calculating..."
256
- msgstr "Calcul en cours..."
257
-
258
- #: templates/options-media.php:127
259
- msgid "Last image:"
260
- msgstr "Dernière image :"
261
-
262
- #~ msgid "Legend of the sizes"
263
- #~ msgstr "Légende des tailles"
264
-
265
- #~ msgid ""
266
- #~ "The images created on your theme are <span style=\"color:#F2A13A"
267
- #~ "\">orange</span> and your custom size are <span style=\"color:#89D76A\"> "
268
- #~ "green </span>."
269
- #~ msgstr ""
270
- #~ "Les tailles d'images crées par votre thème sont en <span style=\"color:"
271
- #~ "#F2A13A\">orange</span> et vos tailles personnalisées sont en <span style="
272
- #~ "\"color:#89D76A\"> vert </span>."
273
-
274
- #~ msgid "Size "
275
- #~ msgstr "Taille "
276
-
277
- #~ msgid "Theme size"
278
- #~ msgstr "Taille de thème"
279
-
280
- #~ msgid "Add a new size of thumbnail"
281
- #~ msgstr "Ajouter une nouvelle taille de vignette"
282
-
283
- #~ msgid "Get the PHP for the theme"
284
- #~ msgstr "Récupérer le PHP pour le thème"
285
-
286
- #~ msgid "Resize ?"
287
- #~ msgstr "Regénérer ?"
1
+ # Copyright (C) 2010
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Simple image sizes\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-01-20 02:54+0100\n"
8
+ "PO-Revision-Date: 2013-01-20 02:54+0100\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: Beapi <njuen@beapi.fr>\n"
11
+ "Language: fr_FR\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Generator: Poedit 1.5.4\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: inc/class.admin.php:80
22
+ msgid "Reading attachments..."
23
+ msgstr "Chargement des médias..."
24
+
25
+ #: inc/class.admin.php:81 inc/class.admin.php:247
26
+ msgid "Maximum width"
27
+ msgstr "Largeur maximum"
28
+
29
+ #: inc/class.admin.php:82 inc/class.admin.php:251
30
+ msgid "Maximum height"
31
+ msgstr "Hauteur maximum"
32
+
33
+ #: inc/class.admin.php:83 inc/class.admin.php:260
34
+ #: templates/options-media.php:18 templates/options-media.php:65
35
+ msgid "Crop ?"
36
+ msgstr "Rogner ?"
37
+
38
+ #: inc/class.admin.php:84
39
+ msgid "yes"
40
+ msgstr "oui"
41
+
42
+ #: inc/class.admin.php:85
43
+ msgid "no"
44
+ msgstr "non"
45
+
46
+ #: inc/class.admin.php:86 inc/class.admin.php:263
47
+ msgid "Show in post insertion ?"
48
+ msgstr "Afficher dans l'insertion ?"
49
+
50
+ #: inc/class.admin.php:87
51
+ msgid " of "
52
+ msgstr " de "
53
+
54
+ #: inc/class.admin.php:88
55
+ msgid " or "
56
+ msgstr " ou "
57
+
58
+ #: inc/class.admin.php:89
59
+ msgid " before the end."
60
+ msgstr " avant la fin."
61
+
62
+ #: inc/class.admin.php:90 inc/class.admin.php:265
63
+ msgid "Delete"
64
+ msgstr "Supprimer"
65
+
66
+ #: inc/class.admin.php:91
67
+ msgid "No media in your site to regenerate !"
68
+ msgstr "Pas de médias à regénérer !"
69
+
70
+ #: inc/class.admin.php:92
71
+ msgid "Regenerating "
72
+ msgstr "Regénération "
73
+
74
+ #: inc/class.admin.php:93
75
+ msgid "Regenerate "
76
+ msgstr "Regénérer "
77
+
78
+ #: inc/class.admin.php:94
79
+ msgid "Validate image size name"
80
+ msgstr "Valider le nom de la taille d'image"
81
+
82
+ #: inc/class.admin.php:95
83
+ msgid "Done."
84
+ msgstr "Fini."
85
+
86
+ #: inc/class.admin.php:96
87
+ msgid "Size"
88
+ msgstr "Taille "
89
+
90
+ #: inc/class.admin.php:97
91
+ msgid ""
92
+ "Don't use the basic Wordpress thumbnail size name, use the form above to "
93
+ "edit them"
94
+ msgstr ""
95
+ "N'utilisez pas les tailles par défaut de WordPress comme nom de taille, "
96
+ "éditez leurs valeurs avec le formulaire ci-dessus."
97
+
98
+ #: inc/class.admin.php:98
99
+ msgid "This size is already registered, edit it instead of recreating it."
100
+ msgstr "Cette taille existe déjà, éditez la au lieu de la recréer."
101
+
102
+ #: inc/class.admin.php:99
103
+ msgid "Do you really want to delete these size ?"
104
+ msgstr "Voulez-vous réellement supprimer cette taille ?"
105
+
106
+ #: inc/class.admin.php:100 inc/class.admin.php:266
107
+ msgid "Update"
108
+ msgstr "Mettre à jour"
109
+
110
+ #: inc/class.admin.php:101
111
+ msgid "Error requesting page"
112
+ msgstr "Erreur lors de la requête vers la page"
113
+
114
+ #: inc/class.admin.php:102
115
+ msgid "images have been regenerated !"
116
+ msgstr "images ont été regénérées !"
117
+
118
+ #: inc/class.admin.php:103
119
+ msgid "Validate"
120
+ msgstr "Valider"
121
+
122
+ #: inc/class.admin.php:104
123
+ msgid " started at"
124
+ msgstr " commencé à "
125
+
126
+ #: inc/class.admin.php:105 inc/class.admin.php:255
127
+ msgid "Public name"
128
+ msgstr "Nom public"
129
+
130
+ #: inc/class.admin.php:106
131
+ msgid " finished at :"
132
+ msgstr " terminé à :"
133
+
134
+ #: inc/class.admin.php:107
135
+ msgid ""
136
+ "Error during the php treatment, be sure to not have php errors in your page"
137
+ msgstr ""
138
+ "Erreur durant le traitement, soyez sûr de ne pas avoir d'erreurs php dans "
139
+ "votre page"
140
+
141
+ #: inc/class.admin.php:108
142
+ msgid "All the sizes you have modifed are not saved, continue anyway ?"
143
+ msgstr ""
144
+ "Toutes les tailles qui ont été modifiée n'ont pas été sauvées, continuer "
145
+ "tout de même ?"
146
+
147
+ #: inc/class.admin.php:109
148
+ #, php-format
149
+ msgid "This image has been regenerated in %s seconds"
150
+ msgstr "Cette image a été regénérée en %s secondes"
151
+
152
+ #: inc/class.admin.php:138
153
+ msgid "Regenerate thumbnails"
154
+ msgstr "Régénérer les vignettes"
155
+
156
+ #: inc/class.admin.php:159
157
+ msgid "Settings"
158
+ msgstr "Paramètres"
159
+
160
+ #: inc/class.admin.php:199
161
+ #, php-format
162
+ msgid "%s size"
163
+ msgstr "Taille %s"
164
+
165
+ #: inc/class.admin.php:206
166
+ msgid "Add a new size"
167
+ msgstr "Ajouter une nouvelle taille"
168
+
169
+ #: inc/class.admin.php:209
170
+ msgid "Get php for theme"
171
+ msgstr "Récupérer le PHP pour le thème"
172
+
173
+ #: inc/class.admin.php:212
174
+ msgid "Thumbnail regeneration"
175
+ msgstr "Régénération des vignettes"
176
+
177
+ #: inc/class.admin.php:292
178
+ msgid ""
179
+ "Copy and paste the code below into your Wordpress theme function file if you "
180
+ "wanted to save them and deactivate the plugin."
181
+ msgstr ""
182
+ "Copiez et collez le code ci-dessous dans votre fichier de fonctions de votre "
183
+ "thème WordPress si vous voulez les conserver et désactiver ce plugin."
184
+
185
+ #: inc/class.admin.php:508
186
+ msgid "Trying to cheat ?"
187
+ msgstr "Cheater ?"
188
+
189
+ #: inc/class.admin.php:519
190
+ msgid "No id given in POST datas."
191
+ msgstr "Pas d'id donné dans les données du POST."
192
+
193
+ #: inc/class.admin.php:535
194
+ #, php-format
195
+ msgid ""
196
+ "This file already exists in this size and have not been regenerated :<br/><a "
197
+ "target=\"_blank\" href=\"%1$s\" >%2$s</a>"
198
+ msgstr ""
199
+ "Ce fichier existe déjà dans cette ces tailles d'image et n'a pas été "
200
+ "regénéré :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
201
+
202
+ #: inc/class.admin.php:544
203
+ #, php-format
204
+ msgid ""
205
+ "This file does not exists and have not been regenerated :<br/><a target="
206
+ "\"_blank\" href=\"%1$s\" >%2$s</a>"
207
+ msgstr ""
208
+ "Ce fichier existe déjà dans cette ces tailles d'image et n'a pas été "
209
+ "regénéré :<br/><a target=\"_blank\" href=\"%1$s\" >%2$s</a>"
210
+
211
+ #: inc/class.admin.php:785 inc/class.admin.php:788
212
+ #: templates/options-media.php:128
213
+ msgid "Regenerate Thumbnails"
214
+ msgstr "Régénérer les vignettes"
215
+
216
+ #: templates/options-media.php:10
217
+ msgid "Select which thumbnails you want to rebuild:"
218
+ msgstr "Sélectionnez les tailles de vignettes à régénérer"
219
+
220
+ #: templates/options-media.php:15 templates/options-media.php:62
221
+ msgid "Size name"
222
+ msgstr "Nom de la taille"
223
+
224
+ #: templates/options-media.php:16 templates/options-media.php:63
225
+ msgid "Width"
226
+ msgstr "Largeur"
227
+
228
+ #: templates/options-media.php:17 templates/options-media.php:64
229
+ msgid "Height"
230
+ msgstr "Hauteur"
231
+
232
+ #: templates/options-media.php:54
233
+ msgid "Yes"
234
+ msgstr "Oui"
235
+
236
+ #: templates/options-media.php:54
237
+ msgid "No"
238
+ msgstr "Non"
239
+
240
+ #: templates/options-media.php:70
241
+ msgid "Select which post type source thumbnails you want to rebuild:"
242
+ msgstr ""
243
+ "Sélectionnez quelles vignettes de quel type de contenu vous souhaitez "
244
+ "régénérer : "
245
+
246
+ #: templates/options-media.php:75 templates/options-media.php:102
247
+ msgid "Post type"
248
+ msgstr "Type de contenu"
249
+
250
+ #: templates/options-media.php:116
251
+ msgid "End time calculated :"
252
+ msgstr "Fin du traitement calculé :"
253
+
254
+ #: templates/options-media.php:116
255
+ msgid "Calculating..."
256
+ msgstr "Calcul en cours..."
257
+
258
+ #: templates/options-media.php:127
259
+ msgid "Last image:"
260
+ msgstr "Dernière image :"
261
+
262
+ #~ msgid "Legend of the sizes"
263
+ #~ msgstr "Légende des tailles"
264
+
265
+ #~ msgid ""
266
+ #~ "The images created on your theme are <span style=\"color:#F2A13A"
267
+ #~ "\">orange</span> and your custom size are <span style=\"color:#89D76A\"> "
268
+ #~ "green </span>."
269
+ #~ msgstr ""
270
+ #~ "Les tailles d'images crées par votre thème sont en <span style=\"color:"
271
+ #~ "#F2A13A\">orange</span> et vos tailles personnalisées sont en <span style="
272
+ #~ "\"color:#89D76A\"> vert </span>."
273
+
274
+ #~ msgid "Size "
275
+ #~ msgstr "Taille "
276
+
277
+ #~ msgid "Theme size"
278
+ #~ msgstr "Taille de thème"
279
+
280
+ #~ msgid "Add a new size of thumbnail"
281
+ #~ msgstr "Ajouter une nouvelle taille de vignette"
282
+
283
+ #~ msgid "Get the PHP for the theme"
284
+ #~ msgstr "Récupérer le PHP pour le thème"
285
+
286
+ #~ msgid "Resize ?"
287
+ #~ msgstr "Regénérer ?"
languages/sis.pot CHANGED
@@ -1,257 +1,257 @@
1
- # Copyright (C) 2010
2
- # This file is distributed under the same license as the package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: \n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2013-01-20 02:55+0100\n"
8
- "PO-Revision-Date: 2013-01-20 02:55+0100\n"
9
- "Last-Translator: \n"
10
- "Language-Team: LANGUAGE <LL@li.org>\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-KeywordsList: esc_attr_e;esc_html_e;esc_attr__;esc_html__;_e;__\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../inc/class.admin.php:80
20
- msgid "Reading attachments..."
21
- msgstr ""
22
-
23
- #: ../inc/class.admin.php:81 ../inc/class.admin.php:247
24
- msgid "Maximum width"
25
- msgstr ""
26
-
27
- #: ../inc/class.admin.php:82 ../inc/class.admin.php:251
28
- msgid "Maximum height"
29
- msgstr ""
30
-
31
- #: ../inc/class.admin.php:83 ../inc/class.admin.php:260
32
- #: ../templates/options-media.php:18 ../templates/options-media.php:65
33
- msgid "Crop ?"
34
- msgstr ""
35
-
36
- #: ../inc/class.admin.php:84
37
- msgid "yes"
38
- msgstr ""
39
-
40
- #: ../inc/class.admin.php:85
41
- msgid "no"
42
- msgstr ""
43
-
44
- #: ../inc/class.admin.php:86 ../inc/class.admin.php:263
45
- msgid "Show in post insertion ?"
46
- msgstr ""
47
-
48
- #: ../inc/class.admin.php:87
49
- msgid " of "
50
- msgstr ""
51
-
52
- #: ../inc/class.admin.php:88
53
- msgid " or "
54
- msgstr ""
55
-
56
- #: ../inc/class.admin.php:89
57
- msgid " before the end."
58
- msgstr ""
59
-
60
- #: ../inc/class.admin.php:90 ../inc/class.admin.php:265
61
- msgid "Delete"
62
- msgstr ""
63
-
64
- #: ../inc/class.admin.php:91
65
- msgid "No media in your site to regenerate !"
66
- msgstr ""
67
-
68
- #: ../inc/class.admin.php:92
69
- msgid "Regenerating "
70
- msgstr ""
71
-
72
- #: ../inc/class.admin.php:93
73
- msgid "Regenerate "
74
- msgstr ""
75
-
76
- #: ../inc/class.admin.php:94
77
- msgid "Validate image size name"
78
- msgstr ""
79
-
80
- #: ../inc/class.admin.php:95
81
- msgid "Done."
82
- msgstr ""
83
-
84
- #: ../inc/class.admin.php:96
85
- msgid "Size"
86
- msgstr ""
87
-
88
- #: ../inc/class.admin.php:97
89
- msgid ""
90
- "Don't use the basic Wordpress thumbnail size name, use the form above to "
91
- "edit them"
92
- msgstr ""
93
-
94
- #: ../inc/class.admin.php:98
95
- msgid "This size is already registered, edit it instead of recreating it."
96
- msgstr ""
97
-
98
- #: ../inc/class.admin.php:99
99
- msgid "Do you really want to delete these size ?"
100
- msgstr ""
101
-
102
- #: ../inc/class.admin.php:100 ../inc/class.admin.php:266
103
- msgid "Update"
104
- msgstr ""
105
-
106
- #: ../inc/class.admin.php:101
107
- msgid "Error requesting page"
108
- msgstr ""
109
-
110
- #: ../inc/class.admin.php:102
111
- msgid "images have been regenerated !"
112
- msgstr ""
113
-
114
- #: ../inc/class.admin.php:103
115
- msgid "Validate"
116
- msgstr ""
117
-
118
- #: ../inc/class.admin.php:104
119
- msgid " started at"
120
- msgstr ""
121
-
122
- #: ../inc/class.admin.php:105 ../inc/class.admin.php:255
123
- msgid "Public name"
124
- msgstr ""
125
-
126
- #: ../inc/class.admin.php:106
127
- msgid " finished at :"
128
- msgstr ""
129
-
130
- #: ../inc/class.admin.php:107
131
- msgid ""
132
- "Error during the php treatment, be sure to not have php errors in your page"
133
- msgstr ""
134
-
135
- #: ../inc/class.admin.php:108
136
- msgid "All the sizes you have modifed are not saved, continue anyway ?"
137
- msgstr ""
138
-
139
- #: ../inc/class.admin.php:109
140
- #, php-format
141
- msgid "This image has been regenerated in %s seconds"
142
- msgstr ""
143
-
144
- #: ../inc/class.admin.php:138
145
- msgid "Regenerate thumbnails"
146
- msgstr ""
147
-
148
- #: ../inc/class.admin.php:159
149
- msgid "Settings"
150
- msgstr ""
151
-
152
- #: ../inc/class.admin.php:199
153
- #, php-format
154
- msgid "%s size"
155
- msgstr ""
156
-
157
- #: ../inc/class.admin.php:206
158
- msgid "Add a new size"
159
- msgstr ""
160
-
161
- #: ../inc/class.admin.php:209
162
- msgid "Get php for theme"
163
- msgstr ""
164
-
165
- #: ../inc/class.admin.php:212
166
- msgid "Thumbnail regeneration"
167
- msgstr ""
168
-
169
- #: ../inc/class.admin.php:248 ../inc/class.admin.php:250
170
- #: ../inc/class.admin.php:252
171
- msgid "custom_image_sizes["
172
- msgstr ""
173
-
174
- #: ../inc/class.admin.php:279
175
- msgid "Add a new size of thumbnail"
176
- msgstr ""
177
-
178
- #: ../inc/class.admin.php:291
179
- msgid "Get the PHP for the theme"
180
- msgstr ""
181
-
182
- #: ../inc/class.admin.php:292
183
- msgid ""
184
- "Copy and paste the code below into your Wordpress theme function file if you "
185
- "wanted to save them and deactivate the plugin."
186
- msgstr ""
187
-
188
- #: ../inc/class.admin.php:508
189
- msgid "Trying to cheat ?"
190
- msgstr ""
191
-
192
- #: ../inc/class.admin.php:519
193
- msgid "No id given in POST datas."
194
- msgstr ""
195
-
196
- #: ../inc/class.admin.php:535
197
- #, php-format
198
- msgid ""
199
- "This file already exists in this size and have not been regenerated :<br/><a "
200
- "target=\"_blank\" href=\"%1$s\" >%2$s</a>"
201
- msgstr ""
202
-
203
- #: ../inc/class.admin.php:544
204
- #, php-format
205
- msgid ""
206
- "This file does not exists and have not been regenerated :<br/><a target="
207
- "\"_blank\" href=\"%1$s\" >%2$s</a>"
208
- msgstr ""
209
-
210
- #: ../inc/class.admin.php:785 ../inc/class.admin.php:788
211
- #: ../templates/options-media.php:128
212
- msgid "Regenerate Thumbnails"
213
- msgstr ""
214
-
215
- #: ../templates/options-media.php:10
216
- msgid "Select which thumbnails you want to rebuild:"
217
- msgstr ""
218
-
219
- #: ../templates/options-media.php:15 ../templates/options-media.php:62
220
- msgid "Size name"
221
- msgstr ""
222
-
223
- #: ../templates/options-media.php:16 ../templates/options-media.php:63
224
- msgid "Width"
225
- msgstr ""
226
-
227
- #: ../templates/options-media.php:17 ../templates/options-media.php:64
228
- msgid "Height"
229
- msgstr ""
230
-
231
- #: ../templates/options-media.php:54
232
- msgid "Yes"
233
- msgstr ""
234
-
235
- #: ../templates/options-media.php:54
236
- msgid "No"
237
- msgstr ""
238
-
239
- #: ../templates/options-media.php:70
240
- msgid "Select which post type source thumbnails you want to rebuild:"
241
- msgstr ""
242
-
243
- #: ../templates/options-media.php:75 ../templates/options-media.php:102
244
- msgid "Post type"
245
- msgstr ""
246
-
247
- #: ../templates/options-media.php:116
248
- msgid "End time calculated :"
249
- msgstr ""
250
-
251
- #: ../templates/options-media.php:116
252
- msgid "Calculating..."
253
- msgstr ""
254
-
255
- #: ../templates/options-media.php:127
256
- msgid "Last image:"
257
- msgstr ""
1
+ # Copyright (C) 2010
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: \n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2013-01-20 02:55+0100\n"
8
+ "PO-Revision-Date: 2013-01-20 02:55+0100\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-KeywordsList: esc_attr_e;esc_html_e;esc_attr__;esc_html__;_e;__\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../inc/class.admin.php:80
20
+ msgid "Reading attachments..."
21
+ msgstr ""
22
+
23
+ #: ../inc/class.admin.php:81 ../inc/class.admin.php:247
24
+ msgid "Maximum width"
25
+ msgstr ""
26
+
27
+ #: ../inc/class.admin.php:82 ../inc/class.admin.php:251
28
+ msgid "Maximum height"
29
+ msgstr ""
30
+
31
+ #: ../inc/class.admin.php:83 ../inc/class.admin.php:260
32
+ #: ../templates/options-media.php:18 ../templates/options-media.php:65
33
+ msgid "Crop ?"
34
+ msgstr ""
35
+
36
+ #: ../inc/class.admin.php:84
37
+ msgid "yes"
38
+ msgstr ""
39
+
40
+ #: ../inc/class.admin.php:85
41
+ msgid "no"
42
+ msgstr ""
43
+
44
+ #: ../inc/class.admin.php:86 ../inc/class.admin.php:263
45
+ msgid "Show in post insertion ?"
46
+ msgstr ""
47
+
48
+ #: ../inc/class.admin.php:87
49
+ msgid " of "
50
+ msgstr ""
51
+
52
+ #: ../inc/class.admin.php:88
53
+ msgid " or "
54
+ msgstr ""
55
+
56
+ #: ../inc/class.admin.php:89
57
+ msgid " before the end."
58
+ msgstr ""
59
+
60
+ #: ../inc/class.admin.php:90 ../inc/class.admin.php:265
61
+ msgid "Delete"
62
+ msgstr ""
63
+
64
+ #: ../inc/class.admin.php:91
65
+ msgid "No media in your site to regenerate !"
66
+ msgstr ""
67
+
68
+ #: ../inc/class.admin.php:92
69
+ msgid "Regenerating "
70
+ msgstr ""
71
+
72
+ #: ../inc/class.admin.php:93
73
+ msgid "Regenerate "
74
+ msgstr ""
75
+
76
+ #: ../inc/class.admin.php:94
77
+ msgid "Validate image size name"
78
+ msgstr ""
79
+
80
+ #: ../inc/class.admin.php:95
81
+ msgid "Done."
82
+ msgstr ""
83
+
84
+ #: ../inc/class.admin.php:96
85
+ msgid "Size"
86
+ msgstr ""
87
+
88
+ #: ../inc/class.admin.php:97
89
+ msgid ""
90
+ "Don't use the basic Wordpress thumbnail size name, use the form above to "
91
+ "edit them"
92
+ msgstr ""
93
+
94
+ #: ../inc/class.admin.php:98
95
+ msgid "This size is already registered, edit it instead of recreating it."
96
+ msgstr ""
97
+
98
+ #: ../inc/class.admin.php:99
99
+ msgid "Do you really want to delete these size ?"
100
+ msgstr ""
101
+
102
+ #: ../inc/class.admin.php:100 ../inc/class.admin.php:266
103
+ msgid "Update"
104
+ msgstr ""
105
+
106
+ #: ../inc/class.admin.php:101
107
+ msgid "Error requesting page"
108
+ msgstr ""
109
+
110
+ #: ../inc/class.admin.php:102
111
+ msgid "images have been regenerated !"
112
+ msgstr ""
113
+
114
+ #: ../inc/class.admin.php:103
115
+ msgid "Validate"
116
+ msgstr ""
117
+
118
+ #: ../inc/class.admin.php:104
119
+ msgid " started at"
120
+ msgstr ""
121
+
122
+ #: ../inc/class.admin.php:105 ../inc/class.admin.php:255
123
+ msgid "Public name"
124
+ msgstr ""
125
+
126
+ #: ../inc/class.admin.php:106
127
+ msgid " finished at :"
128
+ msgstr ""
129
+
130
+ #: ../inc/class.admin.php:107
131
+ msgid ""
132
+ "Error during the php treatment, be sure to not have php errors in your page"
133
+ msgstr ""
134
+
135
+ #: ../inc/class.admin.php:108
136
+ msgid "All the sizes you have modifed are not saved, continue anyway ?"
137
+ msgstr ""
138
+
139
+ #: ../inc/class.admin.php:109
140
+ #, php-format
141
+ msgid "This image has been regenerated in %s seconds"
142
+ msgstr ""
143
+
144
+ #: ../inc/class.admin.php:138
145
+ msgid "Regenerate thumbnails"
146
+ msgstr ""
147
+
148
+ #: ../inc/class.admin.php:159
149
+ msgid "Settings"
150
+ msgstr ""
151
+
152
+ #: ../inc/class.admin.php:199
153
+ #, php-format
154
+ msgid "%s size"
155
+ msgstr ""
156
+
157
+ #: ../inc/class.admin.php:206
158
+ msgid "Add a new size"
159
+ msgstr ""
160
+
161
+ #: ../inc/class.admin.php:209
162
+ msgid "Get php for theme"
163
+ msgstr ""
164
+
165
+ #: ../inc/class.admin.php:212
166
+ msgid "Thumbnail regeneration"
167
+ msgstr ""
168
+
169
+ #: ../inc/class.admin.php:248 ../inc/class.admin.php:250
170
+ #: ../inc/class.admin.php:252
171
+ msgid "custom_image_sizes["
172
+ msgstr ""
173
+
174
+ #: ../inc/class.admin.php:279
175
+ msgid "Add a new size of thumbnail"
176
+ msgstr ""
177
+
178
+ #: ../inc/class.admin.php:291
179
+ msgid "Get the PHP for the theme"
180
+ msgstr ""
181
+
182
+ #: ../inc/class.admin.php:292
183
+ msgid ""
184
+ "Copy and paste the code below into your Wordpress theme function file if you "
185
+ "wanted to save them and deactivate the plugin."
186
+ msgstr ""
187
+
188
+ #: ../inc/class.admin.php:508
189
+ msgid "Trying to cheat ?"
190
+ msgstr ""
191
+
192
+ #: ../inc/class.admin.php:519
193
+ msgid "No id given in POST datas."
194
+ msgstr ""
195
+
196
+ #: ../inc/class.admin.php:535
197
+ #, php-format
198
+ msgid ""
199
+ "This file already exists in this size and have not been regenerated :<br/><a "
200
+ "target=\"_blank\" href=\"%1$s\" >%2$s</a>"
201
+ msgstr ""
202
+
203
+ #: ../inc/class.admin.php:544
204
+ #, php-format
205
+ msgid ""
206
+ "This file does not exists and have not been regenerated :<br/><a target="
207
+ "\"_blank\" href=\"%1$s\" >%2$s</a>"
208
+ msgstr ""
209
+
210
+ #: ../inc/class.admin.php:785 ../inc/class.admin.php:788
211
+ #: ../templates/options-media.php:128
212
+ msgid "Regenerate Thumbnails"
213
+ msgstr ""
214
+
215
+ #: ../templates/options-media.php:10
216
+ msgid "Select which thumbnails you want to rebuild:"
217
+ msgstr ""
218
+
219
+ #: ../templates/options-media.php:15 ../templates/options-media.php:62
220
+ msgid "Size name"
221
+ msgstr ""
222
+
223
+ #: ../templates/options-media.php:16 ../templates/options-media.php:63
224
+ msgid "Width"
225
+ msgstr ""
226
+
227
+ #: ../templates/options-media.php:17 ../templates/options-media.php:64
228
+ msgid "Height"
229
+ msgstr ""
230
+
231
+ #: ../templates/options-media.php:54
232
+ msgid "Yes"
233
+ msgstr ""
234
+
235
+ #: ../templates/options-media.php:54
236
+ msgid "No"
237
+ msgstr ""
238
+
239
+ #: ../templates/options-media.php:70
240
+ msgid "Select which post type source thumbnails you want to rebuild:"
241
+ msgstr ""
242
+
243
+ #: ../templates/options-media.php:75 ../templates/options-media.php:102
244
+ msgid "Post type"
245
+ msgstr ""
246
+
247
+ #: ../templates/options-media.php:116
248
+ msgid "End time calculated :"
249
+ msgstr ""
250
+
251
+ #: ../templates/options-media.php:116
252
+ msgid "Calculating..."
253
+ msgstr ""
254
+
255
+ #: ../templates/options-media.php:127
256
+ msgid "Last image:"
257
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,10 @@ Contributors: Rahe
3
  Donate link: http://www.beapi.fr/donate/
4
  Tags: images, image, custom sizes, custom images, thumbnail regenerate, thumbnail, regenerate
5
  Requires at least: 3.5
6
- Tested up to: 3.5
7
- Stable tag: 2.4.2
 
 
8
 
9
  == Description ==
10
 
@@ -30,6 +32,15 @@ Contribute on https://github.com/Rahe/Simple-image-sizes
30
  3. Go to Settings > Medias
31
  4. Configure your new image sizes and regenerate the thumbnails !
32
 
 
 
 
 
 
 
 
 
 
33
  == Screenshots ==
34
 
35
  1. Settings page
@@ -38,6 +49,9 @@ Contribute on https://github.com/Rahe/Simple-image-sizes
38
  4. Regenerating image sizes
39
 
40
  == Changelog ==
 
 
 
41
  * 2.4.2
42
  * Selective regeneration fix by g100g on http://wordpress.org/support/topic/regenerating-fix
43
  * 2.4.1
3
  Donate link: http://www.beapi.fr/donate/
4
  Tags: images, image, custom sizes, custom images, thumbnail regenerate, thumbnail, regenerate
5
  Requires at least: 3.5
6
+ Tested up to: 3.5.1
7
+ Stable tag: 2.4.3
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  == Description ==
12
 
32
  3. Go to Settings > Medias
33
  4. Configure your new image sizes and regenerate the thumbnails !
34
 
35
+ == Frequently Asked Questions ==
36
+
37
+ = Where can I add image sizes ? =
38
+ Go to Settings -> Media then you can add a image size. You have to add a unique custom name without any spaces or special chars.
39
+ The best is to use something like my-custom-size.
40
+ Then you have several fields for configuring the image size, the widht, the height, cropping.
41
+ And then you can choose if the image is displayed on the media insertion or not ( this will be displayed on the dropdown list ).
42
+
43
+
44
  == Screenshots ==
45
 
46
  1. Settings page
49
  4. Regenerating image sizes
50
 
51
  == Changelog ==
52
+ * 2.4.3
53
+ * Remove some php notices
54
+ * Remove notice when wrong image size
55
  * 2.4.2
56
  * Selective regeneration fix by g100g on http://wordpress.org/support/topic/regenerating-fix
57
  * 2.4.1
simple_image_sizes.php CHANGED
@@ -3,12 +3,13 @@
3
  Plugin Name: Simple Image Sizes
4
  Plugin URI: https://github.com/Rahe/Simple-image-sizes
5
  Description: Add options in media setting page for images sizes
6
- Version: 2.4.2
7
  Author: Rahe
8
  Author URI: http://nicolas-juen.fr
9
  Text Domain: sis
10
  Domain Path: /languages/
11
- Network: false
 
12
 
13
  Copyright 2011 Nicolas JUEN (njuen@beapi.fr) - Be-API
14
 
@@ -29,7 +30,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29
 
30
  define( 'SIS_URL', plugins_url('', __FILE__) );
31
  define( 'SIS_DIR', dirname(__FILE__) );
32
- define( 'SIS_VERSION', '2.4.2' );
33
  define( 'SIS_OPTION', 'custom_image_sizes' );
34
 
35
  require_once( SIS_DIR . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'class.admin.php' );
@@ -45,4 +46,4 @@ function initSIS() {
45
  $SIS['client'] = new SISClient();
46
 
47
  load_plugin_textdomain ( 'sis', false, basename( rtrim( SIS_DIR, '/' ) ) . '/languages' );
48
- }
3
  Plugin Name: Simple Image Sizes
4
  Plugin URI: https://github.com/Rahe/Simple-image-sizes
5
  Description: Add options in media setting page for images sizes
6
+ Version: 2.4.3
7
  Author: Rahe
8
  Author URI: http://nicolas-juen.fr
9
  Text Domain: sis
10
  Domain Path: /languages/
11
+ License: GPLv2 or later
12
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
14
  Copyright 2011 Nicolas JUEN (njuen@beapi.fr) - Be-API
15
 
30
 
31
  define( 'SIS_URL', plugins_url('', __FILE__) );
32
  define( 'SIS_DIR', dirname(__FILE__) );
33
+ define( 'SIS_VERSION', '2.4.3' );
34
  define( 'SIS_OPTION', 'custom_image_sizes' );
35
 
36
  require_once( SIS_DIR . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'class.admin.php' );
46
  $SIS['client'] = new SISClient();
47
 
48
  load_plugin_textdomain ( 'sis', false, basename( rtrim( SIS_DIR, '/' ) ) . '/languages' );
49
+ }