Version Description
- Bug fix
- Don't delete the thumbnail when the maximum file size is set to one of the thumbnail size
- Don't strip the image meta data if possible (only with Imagick)
- Fix persistent "WELL DONE" message because of "original_size" meta value was 0
Download this release
Release Info
Developer | wp_media |
Plugin | Imagify Image Optimizer |
Version | 1.5.9 |
Comparing to | |
See all releases |
Code changes from version 1.5.8 to 1.5.9
- imagify.php +2 -2
- inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php +8 -7
- inc/admin/ui/bulk.php +1 -1
- inc/classes/abstracts/abstract-attachment.php +8 -2
- inc/classes/class-attachment.php +8 -7
- languages/imagify-de_DE.mo +0 -0
- languages/imagify-de_DE.po +149 -158
- languages/imagify-de_DE_formal.mo +0 -0
- languages/imagify-de_DE_formal.po +171 -163
- languages/imagify-es_ES.mo +0 -0
- languages/imagify-es_ES.po +148 -166
- languages/imagify-fr_FR.mo +0 -0
- languages/imagify-fr_FR.po +193 -177
- languages/imagify-it_IT.mo +0 -0
- languages/imagify-it_IT.po +149 -166
- languages/imagify.pot +1157 -919
- readme.txt +7 -1
imagify.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Imagify
|
4 |
Plugin URI: https://wordpress.org/plugins/imagify/
|
5 |
Description: Dramaticaly reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwith using Imagify, the new most advanced image optimization tool.
|
6 |
-
Version: 1.5.
|
7 |
Author: WP Media
|
8 |
Author URI: http://wp-media.me
|
9 |
Licence: GPLv2
|
@@ -17,7 +17,7 @@ Copyright 2016 WP Media
|
|
17 |
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
|
18 |
|
19 |
// Imagify defines
|
20 |
-
define( 'IMAGIFY_VERSION' , '1.5.
|
21 |
define( 'IMAGIFY_SLUG' , 'imagify' );
|
22 |
define( 'IMAGIFY_SETTINGS_SLUG' , IMAGIFY_SLUG . '_settings' );
|
23 |
define( 'IMAGIFY_WEB_MAIN' , 'https://imagify.io' );
|
3 |
Plugin Name: Imagify
|
4 |
Plugin URI: https://wordpress.org/plugins/imagify/
|
5 |
Description: Dramaticaly reduce image file sizes without losing quality, make your website load faster, boost your SEO and save money on your bandwith using Imagify, the new most advanced image optimization tool.
|
6 |
+
Version: 1.5.9
|
7 |
Author: WP Media
|
8 |
Author URI: http://wp-media.me
|
9 |
Licence: GPLv2
|
17 |
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
|
18 |
|
19 |
// Imagify defines
|
20 |
+
define( 'IMAGIFY_VERSION' , '1.5.9' );
|
21 |
define( 'IMAGIFY_SLUG' , 'imagify' );
|
22 |
define( 'IMAGIFY_SETTINGS_SLUG' , IMAGIFY_SLUG . '_settings' );
|
23 |
define( 'IMAGIFY_WEB_MAIN' , 'https://imagify.io' );
|
inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php
CHANGED
@@ -241,7 +241,14 @@ class Imagify_NGG_Attachment extends Imagify_Abstract_Attachment {
|
|
241 |
'percent' => 0,
|
242 |
)
|
243 |
);
|
244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
// Get file path & URL for original image
|
246 |
$attachment_path = $this->get_original_path();
|
247 |
$attachment_url = $this->get_original_url();
|
@@ -252,12 +259,6 @@ class Imagify_NGG_Attachment extends Imagify_Abstract_Attachment {
|
|
252 |
return;
|
253 |
}
|
254 |
|
255 |
-
// To avoid issue with "original_size" at 0 in "_imagify_data"
|
256 |
-
if ( 0 === $this->get_stats_data( 'original_size' ) ) {
|
257 |
-
delete_post_meta( $id, '_imagify_data' );
|
258 |
-
delete_post_meta( $id, '_imagify_status' );
|
259 |
-
}
|
260 |
-
|
261 |
/**
|
262 |
* Fires before optimizing an attachment.
|
263 |
*
|
241 |
'percent' => 0,
|
242 |
)
|
243 |
);
|
244 |
+
|
245 |
+
// To avoid issue with "original_size" at 0 in "_imagify_data"
|
246 |
+
if ( 0 === $this->get_stats_data( 'original_size' ) ) {
|
247 |
+
delete_post_meta( $id, '_imagify_data' );
|
248 |
+
delete_post_meta( $id, '_imagify_status' );
|
249 |
+
delete_post_meta( $id, '_imagify_optimization_level' );
|
250 |
+
}
|
251 |
+
|
252 |
// Get file path & URL for original image
|
253 |
$attachment_path = $this->get_original_path();
|
254 |
$attachment_url = $this->get_original_url();
|
259 |
return;
|
260 |
}
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
/**
|
263 |
* Fires before optimizing an attachment.
|
264 |
*
|
inc/admin/ui/bulk.php
CHANGED
@@ -217,7 +217,7 @@ function _imagify_display_bulk_page() {
|
|
217 |
</p>
|
218 |
</div>
|
219 |
<div class="imagify-cell imagify-pl0">
|
220 |
-
<p class="imagify-info-block"><?php printf( __( 'All images greater than %s will be optimized when using a
|
221 |
</div>
|
222 |
</div>
|
223 |
</div>
|
217 |
</p>
|
218 |
</div>
|
219 |
<div class="imagify-cell imagify-pl0">
|
220 |
+
<p class="imagify-info-block"><?php printf( __( 'All images greater than %s will be optimized when using a paid plan.', 'imagify' ), size_format( get_imagify_max_image_size() ) ); ?></p>
|
221 |
</div>
|
222 |
</div>
|
223 |
</div>
|
inc/classes/abstracts/abstract-attachment.php
CHANGED
@@ -393,6 +393,9 @@ class Imagify_Abstract_Attachment {
|
|
393 |
* @return string Path the the resized image or the original image if the resize failed
|
394 |
*/
|
395 |
function resize( $attachment_path, $attachment_sizes, $max_width ) {
|
|
|
|
|
|
|
396 |
$new_sizes = wp_constrain_dimensions( $attachment_sizes[0], $attachment_sizes[1], $max_width );
|
397 |
|
398 |
$editor = wp_get_image_editor( $attachment_path );
|
@@ -427,14 +430,17 @@ class Imagify_Abstract_Attachment {
|
|
427 |
return $resized;
|
428 |
}
|
429 |
|
430 |
-
$resized_image_path = $editor->generate_filename(
|
431 |
|
432 |
$resized_image_saved = $editor->save( $resized_image_path );
|
433 |
|
434 |
if ( is_wp_error( $resized_image_saved ) ) {
|
435 |
return $resized_image_saved;
|
436 |
}
|
437 |
-
|
|
|
|
|
|
|
438 |
return $resized_image_path;
|
439 |
}
|
440 |
}
|
393 |
* @return string Path the the resized image or the original image if the resize failed
|
394 |
*/
|
395 |
function resize( $attachment_path, $attachment_sizes, $max_width ) {
|
396 |
+
// Prevent removal of the exif/meta data when resizing (only works with Imagick)
|
397 |
+
add_filter( 'image_strip_meta', '__return_false' );
|
398 |
+
|
399 |
$new_sizes = wp_constrain_dimensions( $attachment_sizes[0], $attachment_sizes[1], $max_width );
|
400 |
|
401 |
$editor = wp_get_image_editor( $attachment_path );
|
430 |
return $resized;
|
431 |
}
|
432 |
|
433 |
+
$resized_image_path = $editor->generate_filename( 'imagifyresized' );
|
434 |
|
435 |
$resized_image_saved = $editor->save( $resized_image_path );
|
436 |
|
437 |
if ( is_wp_error( $resized_image_saved ) ) {
|
438 |
return $resized_image_saved;
|
439 |
}
|
440 |
+
|
441 |
+
// Remove the filter when we're done to prevent any conflict
|
442 |
+
remove_filter( 'image_strip_meta', '__return_false' );
|
443 |
+
|
444 |
return $resized_image_path;
|
445 |
}
|
446 |
}
|
inc/classes/class-attachment.php
CHANGED
@@ -197,7 +197,14 @@ class Imagify_Attachment extends Imagify_Abstract_Attachment {
|
|
197 |
'percent' => 0,
|
198 |
)
|
199 |
);
|
200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
// Get file path & URL for original image
|
202 |
$attachment_path = $this->get_original_path();
|
203 |
$attachment_url = $this->get_original_url();
|
@@ -213,12 +220,6 @@ class Imagify_Attachment extends Imagify_Abstract_Attachment {
|
|
213 |
return;
|
214 |
}
|
215 |
|
216 |
-
// To avoid issue with "original_size" at 0 in "_imagify_data"
|
217 |
-
if ( 0 === $this->get_stats_data( 'original_size' ) ) {
|
218 |
-
delete_post_meta( $id, '_imagify_data' );
|
219 |
-
delete_post_meta( $id, '_imagify_status' );
|
220 |
-
}
|
221 |
-
|
222 |
/**
|
223 |
* Fires before optimizing an attachment.
|
224 |
*
|
197 |
'percent' => 0,
|
198 |
)
|
199 |
);
|
200 |
+
|
201 |
+
// To avoid issue with "original_size" at 0 in "_imagify_data"
|
202 |
+
if ( 0 === $this->get_stats_data( 'original_size' ) ) {
|
203 |
+
delete_post_meta( $id, '_imagify_data' );
|
204 |
+
delete_post_meta( $id, '_imagify_status' );
|
205 |
+
delete_post_meta( $id, '_imagify_optimization_level' );
|
206 |
+
}
|
207 |
+
|
208 |
// Get file path & URL for original image
|
209 |
$attachment_path = $this->get_original_path();
|
210 |
$attachment_url = $this->get_original_url();
|
220 |
return;
|
221 |
}
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
/**
|
224 |
* Fires before optimizing an attachment.
|
225 |
*
|
languages/imagify-de_DE.mo
CHANGED
Binary file
|
languages/imagify-de_DE.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
@@ -18,19 +18,19 @@ msgstr ""
|
|
18 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
-
"X-Generator: Poedit 1.
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
26 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
|
27 |
-
#: ../inc/functions/admin-ui.php:
|
28 |
-
#: ../inc/functions/i18n.php:
|
29 |
msgid "Optimize"
|
30 |
msgstr "Optimieren"
|
31 |
|
32 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
33 |
-
#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:
|
34 |
msgid "Restore Original"
|
35 |
msgstr "Original wiederherstellen"
|
36 |
|
@@ -43,15 +43,15 @@ msgstr "Stapelverarbeitung"
|
|
43 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
|
44 |
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
|
45 |
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
|
46 |
-
#: ../inc/functions/admin-ui.php:
|
47 |
msgid "Optimizing..."
|
48 |
msgstr "Wird optimiert …"
|
49 |
|
50 |
-
#: ../inc/admin/ajax.php:
|
51 |
msgid "Oops, It's almost over!"
|
52 |
msgstr "Hoppla, es wird langsam eng."
|
53 |
|
54 |
-
#: ../inc/admin/ajax.php:
|
55 |
#, php-format
|
56 |
msgid ""
|
57 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
@@ -60,17 +60,17 @@ msgstr ""
|
|
60 |
"In Kürze wirst du dein Guthaben verbraucht haben.%sAktualisiere dein Abo, um "
|
61 |
"deine Bilder auch in Zukunft zu optimieren."
|
62 |
|
63 |
-
#: ../inc/admin/ajax.php:
|
64 |
msgid "View My Subscription"
|
65 |
msgstr "Mein Abo ansehen"
|
66 |
|
67 |
-
#: ../inc/admin/ajax.php:
|
68 |
-
#: ../inc/functions/i18n.php:
|
69 |
msgid "Oops, It's Over!"
|
70 |
msgstr "Alles hat ein Ende…"
|
71 |
|
72 |
-
#: ../inc/admin/ajax.php:
|
73 |
-
#: ../inc/functions/i18n.php:
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
@@ -79,28 +79,28 @@ msgstr ""
|
|
79 |
"Du hast dein Guthaben für diesen Monat aufgebraucht. <strong>%s</strong> "
|
80 |
"werden dir am <strong>%s</strong> wieder zur Verfügung stehen."
|
81 |
|
82 |
-
#: ../inc/admin/ajax.php:
|
83 |
msgid "Upgrade My Subscription"
|
84 |
msgstr "Mein Abo aktualisieren"
|
85 |
|
86 |
-
#: ../inc/admin/ajax.php:
|
87 |
msgid "Account status"
|
88 |
msgstr "Kontostatus"
|
89 |
|
90 |
-
#: ../inc/admin/ajax.php:
|
91 |
msgid "Your subscription:"
|
92 |
msgstr "Dein Abo:"
|
93 |
|
94 |
-
#: ../inc/admin/ajax.php:
|
95 |
#, php-format
|
96 |
msgid "You have %s space credit left"
|
97 |
msgstr "Du hast noch %s Guthaben"
|
98 |
|
99 |
-
#: ../inc/admin/ajax.php:
|
100 |
msgid "View my subscription"
|
101 |
msgstr "Mein Abo ansehen"
|
102 |
|
103 |
-
#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:
|
104 |
msgid "Compare Original VS Optimized"
|
105 |
msgstr "Vergleiche Original mit optimiert"
|
106 |
|
@@ -117,11 +117,11 @@ msgstr "Ungültiger API-Schlüssel"
|
|
117 |
msgid "Check your Settings"
|
118 |
msgstr "Überprüfe deine Einstellungen"
|
119 |
|
120 |
-
#: ../inc/admin/options.php:
|
121 |
msgid "Cheatin’ uh?"
|
122 |
msgstr "Ts, ts, ts …"
|
123 |
|
124 |
-
#: ../inc/admin/options.php:
|
125 |
msgid "<strong>ERROR</strong>: options page not found."
|
126 |
msgstr "<strong>Fehler</strong>: Einstellungsseite nicht gefunden."
|
127 |
|
@@ -247,12 +247,10 @@ msgstr "Alle Bilder optimieren"
|
|
247 |
|
248 |
#: ../inc/admin/ui/bulk.php:220
|
249 |
#, php-format
|
250 |
-
msgid ""
|
251 |
-
"All images greater than %s will be optimized when using a paying monthly "
|
252 |
-
"plan."
|
253 |
msgstr ""
|
254 |
-
"Alle Bilder
|
255 |
-
"
|
256 |
|
257 |
#: ../inc/admin/ui/bulk.php:239
|
258 |
msgid "Well done!"
|
@@ -285,7 +283,7 @@ msgid "Original"
|
|
285 |
msgstr "Original"
|
286 |
|
287 |
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
|
288 |
-
#: ../inc/functions/i18n.php:
|
289 |
msgid "Optimized"
|
290 |
msgstr "Optimiert"
|
291 |
|
@@ -322,21 +320,21 @@ msgstr "Gewinn:"
|
|
322 |
msgid "%sStart the bulk optimization%s"
|
323 |
msgstr "%sStapelverarbeitung starten%s"
|
324 |
|
325 |
-
#: ../inc/admin/ui/notices.php:
|
326 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
327 |
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
|
328 |
|
329 |
-
#: ../inc/admin/ui/notices.php:
|
330 |
-
#: ../inc/admin/ui/notices.php:
|
331 |
-
#: ../inc/admin/ui/notices.php:
|
332 |
msgid "Dismiss this notice"
|
333 |
msgstr "Diese Meldung verwerfen"
|
334 |
|
335 |
-
#: ../inc/admin/ui/notices.php:
|
336 |
msgid "Create an Account"
|
337 |
msgstr "Konto anlegen"
|
338 |
|
339 |
-
#: ../inc/admin/ui/notices.php:
|
340 |
msgid ""
|
341 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
342 |
"account in a few seconds!"
|
@@ -344,15 +342,15 @@ msgstr ""
|
|
344 |
"Registriere dein Konto bei Imagify (kostenfrei, dauert nur ein paar "
|
345 |
"Sekunden), um anschließend deine Bilder in WordPress zu optimieren."
|
346 |
|
347 |
-
#: ../inc/admin/ui/notices.php:
|
348 |
msgid "Sign up, It's FREE!"
|
349 |
msgstr "Mein Konto kostenfrei anlegen"
|
350 |
|
351 |
-
#: ../inc/admin/ui/notices.php:
|
352 |
msgid "Enter your API Key"
|
353 |
msgstr "API-Schlüssel eingeben"
|
354 |
|
355 |
-
#: ../inc/admin/ui/notices.php:
|
356 |
#, php-format
|
357 |
msgid ""
|
358 |
"Save your API Key you have received by email or you can get it on your "
|
@@ -362,30 +360,31 @@ msgstr ""
|
|
362 |
"erhalten hast. Du kannst ihn auch jederzeit in deinen %sKontoeinstellungen%s "
|
363 |
"abrufen."
|
364 |
|
365 |
-
#: ../inc/admin/ui/notices.php:
|
366 |
msgid "I have my API key"
|
367 |
msgstr "Meinen API-Schlüssel eingeben"
|
368 |
|
369 |
-
#: ../inc/admin/ui/notices.php:
|
370 |
msgid "Configure it"
|
371 |
msgstr "Einstellungen wählen"
|
372 |
|
373 |
-
#: ../inc/admin/ui/notices.php:
|
374 |
msgid ""
|
375 |
"It’s almost done! You have just to configure your optimization settings."
|
376 |
msgstr ""
|
377 |
"Fast fertig! Wähle nun deine Einstellungen für Imagify. Anschließend kannst "
|
378 |
"du alle deine Bilder von Imagify automatisch optimieren lassen."
|
379 |
|
380 |
-
#: ../inc/admin/ui/notices.php:
|
381 |
msgid "Go to Settings"
|
382 |
msgstr "Meine Einstellungen wählen"
|
383 |
|
384 |
-
#: ../inc/admin/ui/notices.php:
|
|
|
385 |
msgid "Your API key isn't valid!"
|
386 |
msgstr "Dein API-Schlüssel ist ungültig."
|
387 |
|
388 |
-
#: ../inc/admin/ui/notices.php:
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Go to your Imagify account page to get your API Key and specify it on "
|
@@ -396,7 +395,7 @@ msgstr ""
|
|
396 |
"geholt hast, %1$shinterlege ihn in deinen Einstellungen%3$s. Oder %2$slege "
|
397 |
"kostenfrei ein Konto an%3$s, um deinen API-Schlüssel zu erhalten."
|
398 |
|
399 |
-
#: ../inc/admin/ui/notices.php:
|
400 |
msgid ""
|
401 |
"The following plugins are not compatible with this plugin and may cause "
|
402 |
"unexpected results:"
|
@@ -404,15 +403,15 @@ msgstr ""
|
|
404 |
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
|
405 |
"unerwartete Ergebnisse verursachen:"
|
406 |
|
407 |
-
#: ../inc/admin/ui/notices.php:
|
408 |
msgid "Deactivate"
|
409 |
msgstr "Deaktivieren"
|
410 |
|
411 |
-
#: ../inc/admin/ui/notices.php:
|
412 |
msgid "The external HTTP requests are blocked!"
|
413 |
msgstr "Externe HTTP-Anfragen werden blockiert."
|
414 |
|
415 |
-
#: ../inc/admin/ui/notices.php:
|
416 |
msgid ""
|
417 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
418 |
"config.php</code> to block all external HTTP requests."
|
@@ -421,7 +420,7 @@ msgstr ""
|
|
421 |
"config.php</em> die PHP-Konstante <code>WP_HTTP_BLOCK_EXTERNAL</code> "
|
422 |
"gesetzt ist.\n"
|
423 |
|
424 |
-
#: ../inc/admin/ui/notices.php:
|
425 |
msgid ""
|
426 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
427 |
"config.php</code> file so that it works correctly."
|
@@ -429,24 +428,24 @@ msgstr ""
|
|
429 |
"Um deine Bilder optimieren zu können, füge den folgenden Code zu deiner "
|
430 |
"<em>wp-config.php</em> hinzu."
|
431 |
|
432 |
-
#: ../inc/admin/ui/notices.php:
|
433 |
msgid "Click on the field and press Ctrl-A to select all."
|
434 |
msgstr "Klicke auf das Feld und drücke ctrl+A (cmd+A) für Alles auswählen."
|
435 |
|
436 |
-
#: ../inc/admin/ui/notices.php:
|
437 |
msgid "You're missing out!"
|
438 |
msgstr "Du verpasst etwas!"
|
439 |
|
440 |
-
#: ../inc/admin/ui/notices.php:
|
441 |
msgid "Use the List view to optimize images with Imagify."
|
442 |
msgstr "In der Listenansicht kannst du deine Bilder direkt zu optimieren."
|
443 |
|
444 |
-
#: ../inc/admin/ui/notices.php:
|
445 |
msgid "Switch to the List View"
|
446 |
msgstr "Zur Listenansicht wechseln"
|
447 |
|
448 |
-
#: ../inc/admin/ui/notices.php:
|
449 |
-
#: ../inc/functions/i18n.php:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
@@ -455,28 +454,28 @@ msgstr ""
|
|
455 |
"Um deine Bilder auch in Zukunft zu optimieren, logge dich bei Imagify.io ein "
|
456 |
"und %skaufe ein einmaliges Guthaben oder ein Abo%s."
|
457 |
|
458 |
-
#: ../inc/admin/ui/notices.php:
|
459 |
msgid "Discover the best caching plugin to speed up your website."
|
460 |
msgstr ""
|
461 |
"Entdecke das beste Caching-Plugin, um deine Website schneller zu machen."
|
462 |
|
463 |
-
#: ../inc/admin/ui/notices.php:
|
464 |
#, php-format
|
465 |
msgid "%sGet %s off%s with this coupon code:%s"
|
466 |
msgstr "%sErhalte %s Rabatt%s mit diesem Gutschein-Code:%s"
|
467 |
|
468 |
-
#: ../inc/admin/ui/notices.php:
|
469 |
msgid "Get WP Rocket now"
|
470 |
msgstr "Hole dir WP Rocket jetzt"
|
471 |
|
472 |
-
#: ../inc/admin/ui/notices.php:
|
473 |
#, php-format
|
474 |
msgid ""
|
475 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
476 |
"your website's speed by reducing your images size."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../inc/admin/ui/notices.php:
|
480 |
#, php-format
|
481 |
msgid ""
|
482 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
@@ -493,7 +492,7 @@ msgstr "Ist deine Website zu langsam?"
|
|
493 |
msgid "API Key"
|
494 |
msgstr "API-Schlüssel"
|
495 |
|
496 |
-
#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:
|
497 |
msgid "Your API key is valid."
|
498 |
msgstr "Dein API-Schlüssel ist gültig."
|
499 |
|
@@ -700,7 +699,7 @@ msgstr ""
|
|
700 |
"maximaler Reduktion der Dateigröße zu riskieren."
|
701 |
|
702 |
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
|
703 |
-
#: ../inc/functions/admin-ui.php:
|
704 |
msgid "Close"
|
705 |
msgstr "Schließen"
|
706 |
|
@@ -728,17 +727,17 @@ msgstr "Modus:"
|
|
728 |
|
729 |
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
|
730 |
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
|
731 |
-
#: ../inc/functions/i18n.php:
|
732 |
msgid "File Size:"
|
733 |
msgstr "Dateigröße:"
|
734 |
|
735 |
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
|
736 |
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
|
737 |
-
#: ../inc/functions/i18n.php:
|
738 |
msgid "Original Saving:"
|
739 |
msgstr "Optimiert um:"
|
740 |
|
741 |
-
#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:
|
742 |
msgid "Unoptimized"
|
743 |
msgstr "Nicht Optimiert"
|
744 |
|
@@ -754,7 +753,7 @@ msgstr "Filtere nach Status"
|
|
754 |
msgid "All images"
|
755 |
msgstr "Alle Bilder"
|
756 |
|
757 |
-
#: ../inc/classes/class-attachment.php:
|
758 |
msgid ""
|
759 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
760 |
"you want to optimize it."
|
@@ -814,228 +813,228 @@ msgstr "Erneut optimieren als %s"
|
|
814 |
msgid "%s can't be optimized"
|
815 |
msgstr "%s kann nicht optimiert werden."
|
816 |
|
817 |
-
#: ../inc/functions/admin-ui.php:
|
818 |
msgid "What plan do I need?"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: ../inc/functions/admin-ui.php:
|
822 |
msgid "You're new to Imagify?"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../inc/functions/admin-ui.php:
|
826 |
msgid ""
|
827 |
"Let us help you by analyzing your existing images and determinate the best "
|
828 |
"plan for you"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../inc/functions/admin-ui.php:
|
832 |
msgid "Choose Plan"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../inc/functions/admin-ui.php:
|
836 |
msgid "Payment Info"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../inc/functions/admin-ui.php:
|
840 |
msgid "We analysed your images"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../inc/functions/admin-ui.php:
|
844 |
#, php-format
|
845 |
msgid "You have %s images"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../inc/functions/admin-ui.php:
|
849 |
#, php-format
|
850 |
msgid "You actually have %s of images in your library."
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: ../inc/functions/admin-ui.php:
|
854 |
#, php-format
|
855 |
msgid "You upload around %s of images per month."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../inc/functions/admin-ui.php:
|
859 |
msgid "We recommend you this plan"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../inc/functions/admin-ui.php:
|
863 |
msgid "Subscribe a monthly plan"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../inc/functions/admin-ui.php:
|
867 |
msgid "Subscribe a yearly plan"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../inc/functions/admin-ui.php:
|
871 |
-
#: ../inc/functions/admin-ui.php:
|
872 |
msgid "Monthly"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../inc/functions/admin-ui.php:
|
876 |
-
#: ../inc/functions/admin-ui.php:
|
877 |
msgid "Yearly"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../inc/functions/admin-ui.php:
|
881 |
-
#: ../inc/functions/admin-ui.php:
|
882 |
msgid "2 months free"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: ../inc/functions/admin-ui.php:
|
886 |
-
#: ../inc/functions/admin-ui.php:
|
887 |
msgid "/month"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../inc/functions/admin-ui.php:
|
891 |
-
#: ../inc/functions/admin-ui.php:
|
892 |
#, php-format
|
893 |
msgid "approx: %s images"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: ../inc/functions/admin-ui.php:
|
897 |
#, php-format
|
898 |
msgid ""
|
899 |
"%s per<br>\n"
|
900 |
"additionnal Gb"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../inc/functions/admin-ui.php:
|
904 |
-
#: ../inc/functions/admin-ui.php:
|
905 |
msgid "Choose another plan"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../inc/functions/admin-ui.php:
|
909 |
msgid "Optimize the images you already have, buy a one-time plan"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: ../inc/functions/admin-ui.php:
|
913 |
msgid "Checkout"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: ../inc/functions/admin-ui.php:
|
917 |
msgid ""
|
918 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
919 |
"happens automatically each month or year depending the billing period you "
|
920 |
"choose."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../inc/functions/admin-ui.php:
|
924 |
msgid "Monthly Plans"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../inc/functions/admin-ui.php:
|
928 |
msgid "One Time Plans"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../inc/functions/admin-ui.php:
|
932 |
msgid ""
|
933 |
"Monthly plans come with credits which is renewed every months. The billing "
|
934 |
"happens automatically each month or year depending the billing period you "
|
935 |
"choose."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../inc/functions/admin-ui.php:
|
939 |
msgid "we recommend for you"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../inc/functions/admin-ui.php:
|
943 |
msgid "Choose plan"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../inc/functions/admin-ui.php:
|
947 |
msgid "Need more?"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../inc/functions/admin-ui.php:
|
951 |
msgid "for special needs"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../inc/functions/admin-ui.php:
|
955 |
msgid "Contact Us"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../inc/functions/admin-ui.php:
|
959 |
msgid ""
|
960 |
"One time plans are useful if you have a lots of existing images which need "
|
961 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
962 |
"You will pay only once."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../inc/functions/admin-ui.php:
|
966 |
msgid "Your order"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../inc/functions/admin-ui.php:
|
970 |
#, php-format
|
971 |
msgid "%scancel%sYou just removed %s"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../inc/functions/admin-ui.php:
|
975 |
msgid "Remove this item"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../inc/functions/admin-ui.php:
|
979 |
#, php-format
|
980 |
msgid "%s per month"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../inc/functions/admin-ui.php:
|
984 |
#, php-format
|
985 |
msgid "one time %s"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../inc/functions/admin-ui.php:
|
989 |
#, php-format
|
990 |
msgid ""
|
991 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
992 |
"per year!</strong>"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../inc/functions/admin-ui.php:
|
996 |
#, php-format
|
997 |
msgid ""
|
998 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
999 |
"strong>"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../inc/functions/admin-ui.php:
|
1003 |
msgid "Thank you for being awesome!"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: ../inc/functions/admin-ui.php:
|
1007 |
msgid "What do our user think about Imagify"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: ../inc/functions/admin-ui.php:
|
1011 |
msgid "Secure Credit Card Payment"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: ../inc/functions/admin-ui.php:
|
1015 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../inc/functions/i18n.php:
|
1019 |
msgid "Let's get you started!"
|
1020 |
msgstr "Los geht’s!"
|
1021 |
|
1022 |
-
#: ../inc/functions/i18n.php:
|
1023 |
msgid "Enter your email to get an API key:"
|
1024 |
msgstr "Gib deinen E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
|
1025 |
|
1026 |
-
#: ../inc/functions/i18n.php:
|
1027 |
msgid "Sign Up"
|
1028 |
msgstr "Konto anlegen"
|
1029 |
|
1030 |
-
#: ../inc/functions/i18n.php:
|
1031 |
msgid "You need to specify an email!"
|
1032 |
msgstr "Du musst eine E-Mail-Adresse angeben."
|
1033 |
|
1034 |
-
#: ../inc/functions/i18n.php:
|
1035 |
msgid "Congratulations!"
|
1036 |
msgstr "Glückwunsch!"
|
1037 |
|
1038 |
-
#: ../inc/functions/i18n.php:
|
1039 |
msgid ""
|
1040 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1041 |
"are going to receive an email with API key."
|
@@ -1043,23 +1042,27 @@ msgstr ""
|
|
1043 |
"Dein Konto ist jetzt angelegt. Überprüfe dein E-Mail-Postfach, du erhältst "
|
1044 |
"eine E-Mail mit deinem API-Schlüssel."
|
1045 |
|
1046 |
-
#: ../inc/functions/i18n.php:
|
1047 |
msgid "Connect to Imagify!"
|
1048 |
msgstr "Verbindung zu Imagify herstellen"
|
1049 |
|
1050 |
-
#: ../inc/functions/i18n.php:
|
1051 |
msgid "Paste your API key below:"
|
1052 |
msgstr "Füge deinen API-Schlüssel hier ein:"
|
1053 |
|
1054 |
-
#: ../inc/functions/i18n.php:
|
1055 |
msgid "Connect me"
|
1056 |
msgstr "Verbinden"
|
1057 |
|
1058 |
-
#: ../inc/functions/i18n.php:
|
1059 |
msgid "Check in progress..."
|
1060 |
msgstr "API-Schlüssel wird geprüft…"
|
1061 |
|
1062 |
#: ../inc/functions/i18n.php:30
|
|
|
|
|
|
|
|
|
1063 |
msgid ""
|
1064 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1065 |
"optimize your images."
|
@@ -1067,15 +1070,15 @@ msgstr ""
|
|
1067 |
"Dein API-Schlüssel ist gültig. Du kannst jetzt deine Einstellungen für die "
|
1068 |
"Bildoptimierung mit Imagify wählen."
|
1069 |
|
1070 |
-
#: ../inc/functions/i18n.php:
|
1071 |
msgid "Cancel"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../inc/functions/i18n.php:
|
1075 |
msgid "Don't Need a Parachute?"
|
1076 |
msgstr "Du brauchst keinen Fallschirm?"
|
1077 |
|
1078 |
-
#: ../inc/functions/i18n.php:
|
1079 |
msgid ""
|
1080 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1081 |
"images to another compression level and restore your original images in case "
|
@@ -1085,19 +1088,19 @@ msgstr ""
|
|
1085 |
"mit einem anderen Level komprimieren, oder deren Originale wiederherstellen "
|
1086 |
"können."
|
1087 |
|
1088 |
-
#: ../inc/functions/i18n.php:
|
1089 |
msgid "Original Image"
|
1090 |
msgstr "Originalbild"
|
1091 |
|
1092 |
-
#: ../inc/functions/i18n.php:
|
1093 |
msgid "Optimized Image"
|
1094 |
msgstr "Optimiertes Bild"
|
1095 |
|
1096 |
-
#: ../inc/functions/i18n.php:
|
1097 |
msgid "Please wait..."
|
1098 |
msgstr "Einen Moment bitte …"
|
1099 |
|
1100 |
-
#: ../inc/functions/i18n.php:
|
1101 |
msgid ""
|
1102 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1103 |
"the number of images."
|
@@ -1105,11 +1108,11 @@ msgstr ""
|
|
1105 |
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
|
1106 |
"…"
|
1107 |
|
1108 |
-
#: ../inc/functions/i18n.php:
|
1109 |
msgid "Oops, There is something wrong!"
|
1110 |
msgstr "Hm, etwas ist schief gelaufen."
|
1111 |
|
1112 |
-
#: ../inc/functions/i18n.php:
|
1113 |
msgid ""
|
1114 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1115 |
"Try again and if the issue still persist, please contact us!"
|
@@ -1118,19 +1121,19 @@ msgstr ""
|
|
1118 |
"aufgetreten. Versuche es noch einmal; falls der Fehler sich wiederholt, "
|
1119 |
"kontaktiere bitte den Imagify-Support."
|
1120 |
|
1121 |
-
#: ../inc/functions/i18n.php:
|
1122 |
msgid "Error"
|
1123 |
msgstr "Fehler"
|
1124 |
|
1125 |
-
#: ../inc/functions/i18n.php:
|
1126 |
msgid "Hold on!"
|
1127 |
msgstr "Moment, bitte!"
|
1128 |
|
1129 |
-
#: ../inc/functions/i18n.php:
|
1130 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1131 |
msgstr "Imagify hat alle deine Bilder optimiert. Glückwunsch!"
|
1132 |
|
1133 |
-
#: ../inc/functions/i18n.php:
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"Discover @imagify, the new compression tool to optimize your images for "
|
@@ -1139,17 +1142,17 @@ msgstr ""
|
|
1139 |
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
|
1140 |
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
|
1141 |
|
1142 |
-
#: ../inc/functions/i18n.php:
|
1143 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1144 |
msgstr ""
|
1145 |
"Imagify arbeitet noch. Möchtest du diese Seite wirklich verlassen und den "
|
1146 |
"Prozess abbrechen?"
|
1147 |
|
1148 |
-
#: ../inc/functions/i18n.php:
|
1149 |
msgid "F j, Y"
|
1150 |
msgstr "j. F Y"
|
1151 |
|
1152 |
-
#: ../inc/functions/process.php:
|
1153 |
msgid ""
|
1154 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1155 |
"couple of minutes."
|
@@ -1157,41 +1160,29 @@ msgstr ""
|
|
1157 |
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuche es "
|
1158 |
"in ein paar Minuten noch einmal."
|
1159 |
|
1160 |
-
#: ../inc/functions/process.php:
|
1161 |
msgid "External HTTP requests are blocked"
|
1162 |
msgstr "Externe HTTP-Anfragen werden blockiert"
|
1163 |
|
1164 |
-
#: ../inc/functions/process.php:
|
1165 |
msgid "File path is empty"
|
1166 |
msgstr "Datei-Pfad ist leer"
|
1167 |
|
1168 |
-
#: ../inc/functions/process.php:
|
1169 |
#, php-format
|
1170 |
msgid "Could not find %s"
|
1171 |
msgstr "%s wurde nicht gefunden"
|
1172 |
|
1173 |
-
#: ../inc/functions/process.php:
|
1174 |
#, php-format
|
1175 |
msgid "%s is not writable"
|
1176 |
msgstr "%s ist nicht beschreibbar."
|
1177 |
|
1178 |
-
#: ../inc/functions/process.php:
|
1179 |
#, php-format
|
1180 |
msgid "Skipped (%s), image not found."
|
1181 |
msgstr "Übersprungen (%s), Bild nicht gefunden."
|
1182 |
|
1183 |
-
#: ../assets/js/sweetalert.min.js:1
|
1184 |
-
msgid "./utils"
|
1185 |
-
msgstr ""
|
1186 |
-
|
1187 |
-
#: ../assets/js/sweetalert.min.js:1
|
1188 |
-
msgid "./handle-swal-dom"
|
1189 |
-
msgstr ""
|
1190 |
-
|
1191 |
-
#: ../assets/js/sweetalert.min.js:1
|
1192 |
-
msgid "./handle-dom"
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
#~ msgid "https://wordpress.org/plugins/imagify"
|
1196 |
#~ msgstr "https://de.wordpress.org/plugins/imagify"
|
1197 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-09-23 11:03-0500\n"
|
6 |
+
"PO-Revision-Date: 2016-09-23 11:13-0500\n"
|
7 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Generator: Poedit 1.6.4\n"
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
26 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
|
27 |
+
#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
|
28 |
+
#: ../inc/functions/i18n.php:64
|
29 |
msgid "Optimize"
|
30 |
msgstr "Optimieren"
|
31 |
|
32 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
33 |
+
#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
|
34 |
msgid "Restore Original"
|
35 |
msgstr "Original wiederherstellen"
|
36 |
|
43 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
|
44 |
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
|
45 |
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
|
46 |
+
#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
|
47 |
msgid "Optimizing..."
|
48 |
msgstr "Wird optimiert …"
|
49 |
|
50 |
+
#: ../inc/admin/ajax.php:507
|
51 |
msgid "Oops, It's almost over!"
|
52 |
msgstr "Hoppla, es wird langsam eng."
|
53 |
|
54 |
+
#: ../inc/admin/ajax.php:508
|
55 |
#, php-format
|
56 |
msgid ""
|
57 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
60 |
"In Kürze wirst du dein Guthaben verbraucht haben.%sAktualisiere dein Abo, um "
|
61 |
"deine Bilder auch in Zukunft zu optimieren."
|
62 |
|
63 |
+
#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
|
64 |
msgid "View My Subscription"
|
65 |
msgstr "Mein Abo ansehen"
|
66 |
|
67 |
+
#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
|
68 |
+
#: ../inc/functions/i18n.php:84
|
69 |
msgid "Oops, It's Over!"
|
70 |
msgstr "Alles hat ein Ende…"
|
71 |
|
72 |
+
#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
|
73 |
+
#: ../inc/functions/i18n.php:101
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
79 |
"Du hast dein Guthaben für diesen Monat aufgebraucht. <strong>%s</strong> "
|
80 |
"werden dir am <strong>%s</strong> wieder zur Verfügung stehen."
|
81 |
|
82 |
+
#: ../inc/admin/ajax.php:519
|
83 |
msgid "Upgrade My Subscription"
|
84 |
msgstr "Mein Abo aktualisieren"
|
85 |
|
86 |
+
#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
|
87 |
msgid "Account status"
|
88 |
msgstr "Kontostatus"
|
89 |
|
90 |
+
#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
|
91 |
msgid "Your subscription:"
|
92 |
msgstr "Dein Abo:"
|
93 |
|
94 |
+
#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
|
95 |
#, php-format
|
96 |
msgid "You have %s space credit left"
|
97 |
msgstr "Du hast noch %s Guthaben"
|
98 |
|
99 |
+
#: ../inc/admin/ajax.php:559
|
100 |
msgid "View my subscription"
|
101 |
msgstr "Mein Abo ansehen"
|
102 |
|
103 |
+
#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
|
104 |
msgid "Compare Original VS Optimized"
|
105 |
msgstr "Vergleiche Original mit optimiert"
|
106 |
|
117 |
msgid "Check your Settings"
|
118 |
msgstr "Überprüfe deine Einstellungen"
|
119 |
|
120 |
+
#: ../inc/admin/options.php:119
|
121 |
msgid "Cheatin’ uh?"
|
122 |
msgstr "Ts, ts, ts …"
|
123 |
|
124 |
+
#: ../inc/admin/options.php:127
|
125 |
msgid "<strong>ERROR</strong>: options page not found."
|
126 |
msgstr "<strong>Fehler</strong>: Einstellungsseite nicht gefunden."
|
127 |
|
247 |
|
248 |
#: ../inc/admin/ui/bulk.php:220
|
249 |
#, php-format
|
250 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
|
|
|
|
251 |
msgstr ""
|
252 |
+
"Alle Bilder größer als %s werden optimiert, wenn du einen bezahlten Tarif "
|
253 |
+
"nutzt."
|
254 |
|
255 |
#: ../inc/admin/ui/bulk.php:239
|
256 |
msgid "Well done!"
|
283 |
msgstr "Original"
|
284 |
|
285 |
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
|
286 |
+
#: ../inc/functions/i18n.php:80
|
287 |
msgid "Optimized"
|
288 |
msgstr "Optimiert"
|
289 |
|
320 |
msgid "%sStart the bulk optimization%s"
|
321 |
msgstr "%sStapelverarbeitung starten%s"
|
322 |
|
323 |
+
#: ../inc/admin/ui/notices.php:24
|
324 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
325 |
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
|
326 |
|
327 |
+
#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
|
328 |
+
#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
|
329 |
+
#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
|
330 |
msgid "Dismiss this notice"
|
331 |
msgstr "Diese Meldung verwerfen"
|
332 |
|
333 |
+
#: ../inc/admin/ui/notices.php:33
|
334 |
msgid "Create an Account"
|
335 |
msgstr "Konto anlegen"
|
336 |
|
337 |
+
#: ../inc/admin/ui/notices.php:34
|
338 |
msgid ""
|
339 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
340 |
"account in a few seconds!"
|
342 |
"Registriere dein Konto bei Imagify (kostenfrei, dauert nur ein paar "
|
343 |
"Sekunden), um anschließend deine Bilder in WordPress zu optimieren."
|
344 |
|
345 |
+
#: ../inc/admin/ui/notices.php:37
|
346 |
msgid "Sign up, It's FREE!"
|
347 |
msgstr "Mein Konto kostenfrei anlegen"
|
348 |
|
349 |
+
#: ../inc/admin/ui/notices.php:43
|
350 |
msgid "Enter your API Key"
|
351 |
msgstr "API-Schlüssel eingeben"
|
352 |
|
353 |
+
#: ../inc/admin/ui/notices.php:44
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"Save your API Key you have received by email or you can get it on your "
|
360 |
"erhalten hast. Du kannst ihn auch jederzeit in deinen %sKontoeinstellungen%s "
|
361 |
"abrufen."
|
362 |
|
363 |
+
#: ../inc/admin/ui/notices.php:47
|
364 |
msgid "I have my API key"
|
365 |
msgstr "Meinen API-Schlüssel eingeben"
|
366 |
|
367 |
+
#: ../inc/admin/ui/notices.php:53
|
368 |
msgid "Configure it"
|
369 |
msgstr "Einstellungen wählen"
|
370 |
|
371 |
+
#: ../inc/admin/ui/notices.php:54
|
372 |
msgid ""
|
373 |
"It’s almost done! You have just to configure your optimization settings."
|
374 |
msgstr ""
|
375 |
"Fast fertig! Wähle nun deine Einstellungen für Imagify. Anschließend kannst "
|
376 |
"du alle deine Bilder von Imagify automatisch optimieren lassen."
|
377 |
|
378 |
+
#: ../inc/admin/ui/notices.php:55
|
379 |
msgid "Go to Settings"
|
380 |
msgstr "Meine Einstellungen wählen"
|
381 |
|
382 |
+
#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
|
383 |
+
#: ../inc/functions/i18n.php:78
|
384 |
msgid "Your API key isn't valid!"
|
385 |
msgstr "Dein API-Schlüssel ist ungültig."
|
386 |
|
387 |
+
#: ../inc/admin/ui/notices.php:90
|
388 |
#, php-format
|
389 |
msgid ""
|
390 |
"Go to your Imagify account page to get your API Key and specify it on "
|
395 |
"geholt hast, %1$shinterlege ihn in deinen Einstellungen%3$s. Oder %2$slege "
|
396 |
"kostenfrei ein Konto an%3$s, um deinen API-Schlüssel zu erhalten."
|
397 |
|
398 |
+
#: ../inc/admin/ui/notices.php:142
|
399 |
msgid ""
|
400 |
"The following plugins are not compatible with this plugin and may cause "
|
401 |
"unexpected results:"
|
403 |
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
|
404 |
"unerwartete Ergebnisse verursachen:"
|
405 |
|
406 |
+
#: ../inc/admin/ui/notices.php:148
|
407 |
msgid "Deactivate"
|
408 |
msgstr "Deaktivieren"
|
409 |
|
410 |
+
#: ../inc/admin/ui/notices.php:178
|
411 |
msgid "The external HTTP requests are blocked!"
|
412 |
msgstr "Externe HTTP-Anfragen werden blockiert."
|
413 |
|
414 |
+
#: ../inc/admin/ui/notices.php:179
|
415 |
msgid ""
|
416 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
417 |
"config.php</code> to block all external HTTP requests."
|
420 |
"config.php</em> die PHP-Konstante <code>WP_HTTP_BLOCK_EXTERNAL</code> "
|
421 |
"gesetzt ist.\n"
|
422 |
|
423 |
+
#: ../inc/admin/ui/notices.php:181
|
424 |
msgid ""
|
425 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
426 |
"config.php</code> file so that it works correctly."
|
428 |
"Um deine Bilder optimieren zu können, füge den folgenden Code zu deiner "
|
429 |
"<em>wp-config.php</em> hinzu."
|
430 |
|
431 |
+
#: ../inc/admin/ui/notices.php:182
|
432 |
msgid "Click on the field and press Ctrl-A to select all."
|
433 |
msgstr "Klicke auf das Feld und drücke ctrl+A (cmd+A) für Alles auswählen."
|
434 |
|
435 |
+
#: ../inc/admin/ui/notices.php:219
|
436 |
msgid "You're missing out!"
|
437 |
msgstr "Du verpasst etwas!"
|
438 |
|
439 |
+
#: ../inc/admin/ui/notices.php:220
|
440 |
msgid "Use the List view to optimize images with Imagify."
|
441 |
msgstr "In der Listenansicht kannst du deine Bilder direkt zu optimieren."
|
442 |
|
443 |
+
#: ../inc/admin/ui/notices.php:221
|
444 |
msgid "Switch to the List View"
|
445 |
msgstr "Zur Listenansicht wechseln"
|
446 |
|
447 |
+
#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
|
448 |
+
#: ../inc/functions/i18n.php:101
|
449 |
#, php-format
|
450 |
msgid ""
|
451 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
454 |
"Um deine Bilder auch in Zukunft zu optimieren, logge dich bei Imagify.io ein "
|
455 |
"und %skaufe ein einmaliges Guthaben oder ein Abo%s."
|
456 |
|
457 |
+
#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
|
458 |
msgid "Discover the best caching plugin to speed up your website."
|
459 |
msgstr ""
|
460 |
"Entdecke das beste Caching-Plugin, um deine Website schneller zu machen."
|
461 |
|
462 |
+
#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
|
463 |
#, php-format
|
464 |
msgid "%sGet %s off%s with this coupon code:%s"
|
465 |
msgstr "%sErhalte %s Rabatt%s mit diesem Gutschein-Code:%s"
|
466 |
|
467 |
+
#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
|
468 |
msgid "Get WP Rocket now"
|
469 |
msgstr "Hole dir WP Rocket jetzt"
|
470 |
|
471 |
+
#: ../inc/admin/ui/notices.php:363
|
472 |
#, php-format
|
473 |
msgid ""
|
474 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
475 |
"your website's speed by reducing your images size."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
|
479 |
#, php-format
|
480 |
msgid ""
|
481 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
492 |
msgid "API Key"
|
493 |
msgstr "API-Schlüssel"
|
494 |
|
495 |
+
#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
|
496 |
msgid "Your API key is valid."
|
497 |
msgstr "Dein API-Schlüssel ist gültig."
|
498 |
|
699 |
"maximaler Reduktion der Dateigröße zu riskieren."
|
700 |
|
701 |
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
|
702 |
+
#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
|
703 |
msgid "Close"
|
704 |
msgstr "Schließen"
|
705 |
|
727 |
|
728 |
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
|
729 |
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
|
730 |
+
#: ../inc/functions/i18n.php:62
|
731 |
msgid "File Size:"
|
732 |
msgstr "Dateigröße:"
|
733 |
|
734 |
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
|
735 |
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
|
736 |
+
#: ../inc/functions/i18n.php:63
|
737 |
msgid "Original Saving:"
|
738 |
msgstr "Optimiert um:"
|
739 |
|
740 |
+
#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
|
741 |
msgid "Unoptimized"
|
742 |
msgstr "Nicht Optimiert"
|
743 |
|
753 |
msgid "All images"
|
754 |
msgstr "Alle Bilder"
|
755 |
|
756 |
+
#: ../inc/classes/class-attachment.php:297
|
757 |
msgid ""
|
758 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
759 |
"you want to optimize it."
|
813 |
msgid "%s can't be optimized"
|
814 |
msgstr "%s kann nicht optimiert werden."
|
815 |
|
816 |
+
#: ../inc/functions/admin-ui.php:240
|
817 |
msgid "What plan do I need?"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: ../inc/functions/admin-ui.php:244
|
821 |
msgid "You're new to Imagify?"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../inc/functions/admin-ui.php:245
|
825 |
msgid ""
|
826 |
"Let us help you by analyzing your existing images and determinate the best "
|
827 |
"plan for you"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../inc/functions/admin-ui.php:280
|
831 |
msgid "Choose Plan"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../inc/functions/admin-ui.php:281
|
835 |
msgid "Payment Info"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../inc/functions/admin-ui.php:286
|
839 |
msgid "We analysed your images"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../inc/functions/admin-ui.php:292
|
843 |
#, php-format
|
844 |
msgid "You have %s images"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../inc/functions/admin-ui.php:298
|
848 |
#, php-format
|
849 |
msgid "You actually have %s of images in your library."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: ../inc/functions/admin-ui.php:302
|
853 |
#, php-format
|
854 |
msgid "You upload around %s of images per month."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../inc/functions/admin-ui.php:309
|
858 |
msgid "We recommend you this plan"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../inc/functions/admin-ui.php:314
|
862 |
msgid "Subscribe a monthly plan"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../inc/functions/admin-ui.php:315
|
866 |
msgid "Subscribe a yearly plan"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
|
870 |
+
#: ../inc/functions/admin-ui.php:623
|
871 |
msgid "Monthly"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
875 |
+
#: ../inc/functions/admin-ui.php:626
|
876 |
msgid "Yearly"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
880 |
+
#: ../inc/functions/admin-ui.php:626
|
881 |
msgid "2 months free"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
|
885 |
+
#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
|
886 |
msgid "/month"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
|
890 |
+
#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
|
891 |
#, php-format
|
892 |
msgid "approx: %s images"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
|
896 |
#, php-format
|
897 |
msgid ""
|
898 |
"%s per<br>\n"
|
899 |
"additionnal Gb"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
|
903 |
+
#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
|
904 |
msgid "Choose another plan"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../inc/functions/admin-ui.php:371
|
908 |
msgid "Optimize the images you already have, buy a one-time plan"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../inc/functions/admin-ui.php:407
|
912 |
msgid "Checkout"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../inc/functions/admin-ui.php:411
|
916 |
msgid ""
|
917 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
918 |
"happens automatically each month or year depending the billing period you "
|
919 |
"choose."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../inc/functions/admin-ui.php:435
|
923 |
msgid "Monthly Plans"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../inc/functions/admin-ui.php:440
|
927 |
msgid "One Time Plans"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../inc/functions/admin-ui.php:450
|
931 |
msgid ""
|
932 |
"Monthly plans come with credits which is renewed every months. The billing "
|
933 |
"happens automatically each month or year depending the billing period you "
|
934 |
"choose."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
|
938 |
msgid "we recommend for you"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
|
942 |
msgid "Choose plan"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../inc/functions/admin-ui.php:498
|
946 |
msgid "Need more?"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../inc/functions/admin-ui.php:499
|
950 |
msgid "for special needs"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../inc/functions/admin-ui.php:503
|
954 |
msgid "Contact Us"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: ../inc/functions/admin-ui.php:510
|
958 |
msgid ""
|
959 |
"One time plans are useful if you have a lots of existing images which need "
|
960 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
961 |
"You will pay only once."
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../inc/functions/admin-ui.php:563
|
965 |
msgid "Your order"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../inc/functions/admin-ui.php:568
|
969 |
#, php-format
|
970 |
msgid "%scancel%sYou just removed %s"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
|
974 |
msgid "Remove this item"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../inc/functions/admin-ui.php:583
|
978 |
#, php-format
|
979 |
msgid "%s per month"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../inc/functions/admin-ui.php:604
|
983 |
#, php-format
|
984 |
msgid "one time %s"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../inc/functions/admin-ui.php:617
|
988 |
#, php-format
|
989 |
msgid ""
|
990 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
991 |
"per year!</strong>"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../inc/functions/admin-ui.php:618
|
995 |
#, php-format
|
996 |
msgid ""
|
997 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
998 |
"strong>"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../inc/functions/admin-ui.php:657
|
1002 |
msgid "Thank you for being awesome!"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: ../inc/functions/admin-ui.php:668
|
1006 |
msgid "What do our user think about Imagify"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: ../inc/functions/admin-ui.php:702
|
1010 |
msgid "Secure Credit Card Payment"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: ../inc/functions/admin-ui.php:703
|
1014 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: ../inc/functions/i18n.php:20
|
1018 |
msgid "Let's get you started!"
|
1019 |
msgstr "Los geht’s!"
|
1020 |
|
1021 |
+
#: ../inc/functions/i18n.php:21
|
1022 |
msgid "Enter your email to get an API key:"
|
1023 |
msgstr "Gib deinen E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
|
1024 |
|
1025 |
+
#: ../inc/functions/i18n.php:22
|
1026 |
msgid "Sign Up"
|
1027 |
msgstr "Konto anlegen"
|
1028 |
|
1029 |
+
#: ../inc/functions/i18n.php:23
|
1030 |
msgid "You need to specify an email!"
|
1031 |
msgstr "Du musst eine E-Mail-Adresse angeben."
|
1032 |
|
1033 |
+
#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
|
1034 |
msgid "Congratulations!"
|
1035 |
msgstr "Glückwunsch!"
|
1036 |
|
1037 |
+
#: ../inc/functions/i18n.php:25
|
1038 |
msgid ""
|
1039 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1040 |
"are going to receive an email with API key."
|
1042 |
"Dein Konto ist jetzt angelegt. Überprüfe dein E-Mail-Postfach, du erhältst "
|
1043 |
"eine E-Mail mit deinem API-Schlüssel."
|
1044 |
|
1045 |
+
#: ../inc/functions/i18n.php:26
|
1046 |
msgid "Connect to Imagify!"
|
1047 |
msgstr "Verbindung zu Imagify herstellen"
|
1048 |
|
1049 |
+
#: ../inc/functions/i18n.php:27
|
1050 |
msgid "Paste your API key below:"
|
1051 |
msgstr "Füge deinen API-Schlüssel hier ein:"
|
1052 |
|
1053 |
+
#: ../inc/functions/i18n.php:28
|
1054 |
msgid "Connect me"
|
1055 |
msgstr "Verbinden"
|
1056 |
|
1057 |
+
#: ../inc/functions/i18n.php:29
|
1058 |
msgid "Check in progress..."
|
1059 |
msgstr "API-Schlüssel wird geprüft…"
|
1060 |
|
1061 |
#: ../inc/functions/i18n.php:30
|
1062 |
+
msgid "You need to specify your api key!"
|
1063 |
+
msgstr "Du musst einen API-Schlüssel angeben!"
|
1064 |
+
|
1065 |
+
#: ../inc/functions/i18n.php:32
|
1066 |
msgid ""
|
1067 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1068 |
"optimize your images."
|
1070 |
"Dein API-Schlüssel ist gültig. Du kannst jetzt deine Einstellungen für die "
|
1071 |
"Bildoptimierung mit Imagify wählen."
|
1072 |
|
1073 |
+
#: ../inc/functions/i18n.php:34
|
1074 |
msgid "Cancel"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: ../inc/functions/i18n.php:41
|
1078 |
msgid "Don't Need a Parachute?"
|
1079 |
msgstr "Du brauchst keinen Fallschirm?"
|
1080 |
|
1081 |
+
#: ../inc/functions/i18n.php:42
|
1082 |
msgid ""
|
1083 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1084 |
"images to another compression level and restore your original images in case "
|
1088 |
"mit einem anderen Level komprimieren, oder deren Originale wiederherstellen "
|
1089 |
"können."
|
1090 |
|
1091 |
+
#: ../inc/functions/i18n.php:58
|
1092 |
msgid "Original Image"
|
1093 |
msgstr "Originalbild"
|
1094 |
|
1095 |
+
#: ../inc/functions/i18n.php:59
|
1096 |
msgid "Optimized Image"
|
1097 |
msgstr "Optimiertes Bild"
|
1098 |
|
1099 |
+
#: ../inc/functions/i18n.php:73
|
1100 |
msgid "Please wait..."
|
1101 |
msgstr "Einen Moment bitte …"
|
1102 |
|
1103 |
+
#: ../inc/functions/i18n.php:74
|
1104 |
msgid ""
|
1105 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1106 |
"the number of images."
|
1108 |
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
|
1109 |
"…"
|
1110 |
|
1111 |
+
#: ../inc/functions/i18n.php:76
|
1112 |
msgid "Oops, There is something wrong!"
|
1113 |
msgstr "Hm, etwas ist schief gelaufen."
|
1114 |
|
1115 |
+
#: ../inc/functions/i18n.php:77
|
1116 |
msgid ""
|
1117 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1118 |
"Try again and if the issue still persist, please contact us!"
|
1121 |
"aufgetreten. Versuche es noch einmal; falls der Fehler sich wiederholt, "
|
1122 |
"kontaktiere bitte den Imagify-Support."
|
1123 |
|
1124 |
+
#: ../inc/functions/i18n.php:82
|
1125 |
msgid "Error"
|
1126 |
msgstr "Fehler"
|
1127 |
|
1128 |
+
#: ../inc/functions/i18n.php:85
|
1129 |
msgid "Hold on!"
|
1130 |
msgstr "Moment, bitte!"
|
1131 |
|
1132 |
+
#: ../inc/functions/i18n.php:86
|
1133 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1134 |
msgstr "Imagify hat alle deine Bilder optimiert. Glückwunsch!"
|
1135 |
|
1136 |
+
#: ../inc/functions/i18n.php:88
|
1137 |
#, php-format
|
1138 |
msgid ""
|
1139 |
"Discover @imagify, the new compression tool to optimize your images for "
|
1142 |
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
|
1143 |
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
|
1144 |
|
1145 |
+
#: ../inc/functions/i18n.php:92
|
1146 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1147 |
msgstr ""
|
1148 |
"Imagify arbeitet noch. Möchtest du diese Seite wirklich verlassen und den "
|
1149 |
"Prozess abbrechen?"
|
1150 |
|
1151 |
+
#: ../inc/functions/i18n.php:101
|
1152 |
msgid "F j, Y"
|
1153 |
msgstr "j. F Y"
|
1154 |
|
1155 |
+
#: ../inc/functions/process.php:40
|
1156 |
msgid ""
|
1157 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1158 |
"couple of minutes."
|
1160 |
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuche es "
|
1161 |
"in ein paar Minuten noch einmal."
|
1162 |
|
1163 |
+
#: ../inc/functions/process.php:46
|
1164 |
msgid "External HTTP requests are blocked"
|
1165 |
msgstr "Externe HTTP-Anfragen werden blockiert"
|
1166 |
|
1167 |
+
#: ../inc/functions/process.php:52
|
1168 |
msgid "File path is empty"
|
1169 |
msgstr "Datei-Pfad ist leer"
|
1170 |
|
1171 |
+
#: ../inc/functions/process.php:58
|
1172 |
#, php-format
|
1173 |
msgid "Could not find %s"
|
1174 |
msgstr "%s wurde nicht gefunden"
|
1175 |
|
1176 |
+
#: ../inc/functions/process.php:63
|
1177 |
#, php-format
|
1178 |
msgid "%s is not writable"
|
1179 |
msgstr "%s ist nicht beschreibbar."
|
1180 |
|
1181 |
+
#: ../inc/functions/process.php:72
|
1182 |
#, php-format
|
1183 |
msgid "Skipped (%s), image not found."
|
1184 |
msgstr "Übersprungen (%s), Bild nicht gefunden."
|
1185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1186 |
#~ msgid "https://wordpress.org/plugins/imagify"
|
1187 |
#~ msgstr "https://de.wordpress.org/plugins/imagify"
|
1188 |
|
languages/imagify-de_DE_formal.mo
CHANGED
Binary file
|
languages/imagify-de_DE_formal.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,19 +18,19 @@ msgstr ""
|
|
18 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
-
"X-Generator: Poedit 1.
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
26 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
|
27 |
-
#: ../inc/functions/admin-ui.php:
|
28 |
-
#: ../inc/functions/i18n.php:
|
29 |
msgid "Optimize"
|
30 |
msgstr "Optimieren"
|
31 |
|
32 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
33 |
-
#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:
|
34 |
msgid "Restore Original"
|
35 |
msgstr "Original wiederherstellen"
|
36 |
|
@@ -43,15 +43,15 @@ msgstr "Stapelverarbeitung"
|
|
43 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
|
44 |
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
|
45 |
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
|
46 |
-
#: ../inc/functions/admin-ui.php:
|
47 |
msgid "Optimizing..."
|
48 |
msgstr "Wird optimiert …"
|
49 |
|
50 |
-
#: ../inc/admin/ajax.php:
|
51 |
msgid "Oops, It's almost over!"
|
52 |
msgstr "Hoppla, es wird langsam eng."
|
53 |
|
54 |
-
#: ../inc/admin/ajax.php:
|
55 |
#, php-format
|
56 |
msgid ""
|
57 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
@@ -60,17 +60,17 @@ msgstr ""
|
|
60 |
"In Kürze werden Sie Ihr Guthaben verbraucht haben.%sAktualisieren Sie Ihr "
|
61 |
"Abo, um Ihre Bilder auch in Zukunft zu optimieren."
|
62 |
|
63 |
-
#: ../inc/admin/ajax.php:
|
64 |
msgid "View My Subscription"
|
65 |
msgstr "Mein Abo ansehen"
|
66 |
|
67 |
-
#: ../inc/admin/ajax.php:
|
68 |
-
#: ../inc/functions/i18n.php:
|
69 |
msgid "Oops, It's Over!"
|
70 |
msgstr "Alles hat ein Ende…"
|
71 |
|
72 |
-
#: ../inc/admin/ajax.php:
|
73 |
-
#: ../inc/functions/i18n.php:
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
@@ -79,35 +79,36 @@ msgstr ""
|
|
79 |
"Sie haben Ihr Guthaben für diesen Monat aufgebraucht. <strong>%s</strong> "
|
80 |
"werden Ihnen am <strong>%s</strong> wieder zur Verfügung stehen."
|
81 |
|
82 |
-
#: ../inc/admin/ajax.php:
|
83 |
msgid "Upgrade My Subscription"
|
84 |
msgstr "Mein Abo aktualisieren"
|
85 |
|
86 |
-
#: ../inc/admin/ajax.php:
|
87 |
msgid "Account status"
|
88 |
msgstr "Kontostatus"
|
89 |
|
90 |
-
#: ../inc/admin/ajax.php:
|
91 |
msgid "Your subscription:"
|
92 |
msgstr "Ihr Abo:"
|
93 |
|
94 |
-
#: ../inc/admin/ajax.php:
|
95 |
#, php-format
|
96 |
msgid "You have %s space credit left"
|
97 |
msgstr "Sie haben noch %s Guthaben"
|
98 |
|
99 |
-
#: ../inc/admin/ajax.php:
|
100 |
msgid "View my subscription"
|
101 |
msgstr "Mein Abo ansehen"
|
102 |
|
103 |
-
#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:
|
104 |
msgid "Compare Original VS Optimized"
|
105 |
msgstr "Vergleiche Original mit optimiert"
|
106 |
|
107 |
#: ../inc/admin/meta-boxes.php:17 ../inc/admin/meta-boxes.php:24
|
108 |
#: ../inc/admin/upload.php:12
|
|
|
109 |
msgid "Imagify"
|
110 |
-
msgstr ""
|
111 |
|
112 |
#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:195
|
113 |
msgid "Invalid API key"
|
@@ -117,11 +118,11 @@ msgstr "Ungültiger API-Schlüssel"
|
|
117 |
msgid "Check your Settings"
|
118 |
msgstr "Überprüfen Sie Ihre Einstellungen"
|
119 |
|
120 |
-
#: ../inc/admin/options.php:
|
121 |
msgid "Cheatin’ uh?"
|
122 |
msgstr "Ts, ts, ts …"
|
123 |
|
124 |
-
#: ../inc/admin/options.php:
|
125 |
msgid "<strong>ERROR</strong>: options page not found."
|
126 |
msgstr "<strong>Fehler</strong>: Einstellungsseite nicht gefunden."
|
127 |
|
@@ -247,12 +248,10 @@ msgstr "Alle Bilder optimieren"
|
|
247 |
|
248 |
#: ../inc/admin/ui/bulk.php:220
|
249 |
#, php-format
|
250 |
-
msgid ""
|
251 |
-
"All images greater than %s will be optimized when using a paying monthly "
|
252 |
-
"plan."
|
253 |
msgstr ""
|
254 |
-
"Alle Bilder
|
255 |
-
"
|
256 |
|
257 |
#: ../inc/admin/ui/bulk.php:239
|
258 |
msgid "Well done!"
|
@@ -285,7 +284,7 @@ msgid "Original"
|
|
285 |
msgstr "Original"
|
286 |
|
287 |
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
|
288 |
-
#: ../inc/functions/i18n.php:
|
289 |
msgid "Optimized"
|
290 |
msgstr "Optimiert"
|
291 |
|
@@ -322,21 +321,21 @@ msgstr "Gewinn:"
|
|
322 |
msgid "%sStart the bulk optimization%s"
|
323 |
msgstr "%sStapelverarbeitung starten%s"
|
324 |
|
325 |
-
#: ../inc/admin/ui/notices.php:
|
326 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
327 |
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
|
328 |
|
329 |
-
#: ../inc/admin/ui/notices.php:
|
330 |
-
#: ../inc/admin/ui/notices.php:
|
331 |
-
#: ../inc/admin/ui/notices.php:
|
332 |
msgid "Dismiss this notice"
|
333 |
msgstr "Diese Meldung verwerfen"
|
334 |
|
335 |
-
#: ../inc/admin/ui/notices.php:
|
336 |
msgid "Create an Account"
|
337 |
msgstr "Konto anlegen"
|
338 |
|
339 |
-
#: ../inc/admin/ui/notices.php:
|
340 |
msgid ""
|
341 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
342 |
"account in a few seconds!"
|
@@ -344,15 +343,15 @@ msgstr ""
|
|
344 |
"Registrieren Sie Ihr Konto bei Imagify (kostenfrei, dauert nur ein paar "
|
345 |
"Sekunden), um anschließend Ihre Bilder in WordPress zu optimieren."
|
346 |
|
347 |
-
#: ../inc/admin/ui/notices.php:
|
348 |
msgid "Sign up, It's FREE!"
|
349 |
msgstr "Mein Konto kostenfrei anlegen"
|
350 |
|
351 |
-
#: ../inc/admin/ui/notices.php:
|
352 |
msgid "Enter your API Key"
|
353 |
msgstr "API-Schlüssel eingeben"
|
354 |
|
355 |
-
#: ../inc/admin/ui/notices.php:
|
356 |
#, php-format
|
357 |
msgid ""
|
358 |
"Save your API Key you have received by email or you can get it on your "
|
@@ -362,30 +361,31 @@ msgstr ""
|
|
362 |
"Mail erhalten haben. Sie können ihn auch jederzeit in Ihren "
|
363 |
"%sKontoeinstellungen%s abrufen."
|
364 |
|
365 |
-
#: ../inc/admin/ui/notices.php:
|
366 |
msgid "I have my API key"
|
367 |
msgstr "Meinen API-Schlüssel eingeben"
|
368 |
|
369 |
-
#: ../inc/admin/ui/notices.php:
|
370 |
msgid "Configure it"
|
371 |
msgstr "Einstellungen wählen"
|
372 |
|
373 |
-
#: ../inc/admin/ui/notices.php:
|
374 |
msgid ""
|
375 |
"It’s almost done! You have just to configure your optimization settings."
|
376 |
msgstr ""
|
377 |
"Fast fertig! Wählen Sie nun Ihre Einstellungen für Imagify. Anschließend "
|
378 |
"können Sie alle Ihre Bilder von Imagify automatisch optimieren lassen."
|
379 |
|
380 |
-
#: ../inc/admin/ui/notices.php:
|
381 |
msgid "Go to Settings"
|
382 |
msgstr "Meine Einstellungen wählen"
|
383 |
|
384 |
-
#: ../inc/admin/ui/notices.php:
|
|
|
385 |
msgid "Your API key isn't valid!"
|
386 |
msgstr "Ihr API-Schlüssel ist ungültig."
|
387 |
|
388 |
-
#: ../inc/admin/ui/notices.php:
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Go to your Imagify account page to get your API Key and specify it on "
|
@@ -397,7 +397,7 @@ msgstr ""
|
|
397 |
"%2$slegen Sie kostenfrei ein Konto an%3$s, um einen API-Schlüssel zu "
|
398 |
"erhalten."
|
399 |
|
400 |
-
#: ../inc/admin/ui/notices.php:
|
401 |
msgid ""
|
402 |
"The following plugins are not compatible with this plugin and may cause "
|
403 |
"unexpected results:"
|
@@ -405,15 +405,15 @@ msgstr ""
|
|
405 |
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
|
406 |
"unerwartete Ergebnisse verursachen:"
|
407 |
|
408 |
-
#: ../inc/admin/ui/notices.php:
|
409 |
msgid "Deactivate"
|
410 |
msgstr "Deaktivieren"
|
411 |
|
412 |
-
#: ../inc/admin/ui/notices.php:
|
413 |
msgid "The external HTTP requests are blocked!"
|
414 |
msgstr "Externe HTTP-Anfragen werden blockiert."
|
415 |
|
416 |
-
#: ../inc/admin/ui/notices.php:
|
417 |
msgid ""
|
418 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
419 |
"config.php</code> to block all external HTTP requests."
|
@@ -422,7 +422,7 @@ msgstr ""
|
|
422 |
"config.php</em> die PHP-Konstante <code>WP_HTTP_BLOCK_EXTERNAL</code> "
|
423 |
"gesetzt ist.\n"
|
424 |
|
425 |
-
#: ../inc/admin/ui/notices.php:
|
426 |
msgid ""
|
427 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
428 |
"config.php</code> file so that it works correctly."
|
@@ -430,25 +430,25 @@ msgstr ""
|
|
430 |
"Um Ihre Bilder optimieren zu können, fügen Sie den folgenden Code zu Ihrer "
|
431 |
"<em>wp-config.php</em> hinzu."
|
432 |
|
433 |
-
#: ../inc/admin/ui/notices.php:
|
434 |
msgid "Click on the field and press Ctrl-A to select all."
|
435 |
msgstr ""
|
436 |
"Klicken Sie auf das Feld und drücken Sie ctrl+A (cmd+A) für Alles auswählen."
|
437 |
|
438 |
-
#: ../inc/admin/ui/notices.php:
|
439 |
msgid "You're missing out!"
|
440 |
msgstr "Sie verpassen etwas!"
|
441 |
|
442 |
-
#: ../inc/admin/ui/notices.php:
|
443 |
msgid "Use the List view to optimize images with Imagify."
|
444 |
msgstr "In der Listenansicht können Sie Ihre Bilder direkt zu optimieren."
|
445 |
|
446 |
-
#: ../inc/admin/ui/notices.php:
|
447 |
msgid "Switch to the List View"
|
448 |
msgstr "Zur Listenansicht wechseln"
|
449 |
|
450 |
-
#: ../inc/admin/ui/notices.php:
|
451 |
-
#: ../inc/functions/i18n.php:
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
@@ -457,28 +457,28 @@ msgstr ""
|
|
457 |
"Um Ihre Bilder auch in Zukunft zu optimieren, loggen Sie sich bei Imagify.io "
|
458 |
"ein und %skaufen Sie ein einmaliges Guthaben oder ein Abo%s."
|
459 |
|
460 |
-
#: ../inc/admin/ui/notices.php:
|
461 |
msgid "Discover the best caching plugin to speed up your website."
|
462 |
msgstr ""
|
463 |
"Entdecken Sie das beste Caching-Plugin, um Ihre Website schneller zu machen."
|
464 |
|
465 |
-
#: ../inc/admin/ui/notices.php:
|
466 |
#, php-format
|
467 |
msgid "%sGet %s off%s with this coupon code:%s"
|
468 |
msgstr "%sErhalten Sie %s Rabatt%s mit diesem Gutschein-Code:%s"
|
469 |
|
470 |
-
#: ../inc/admin/ui/notices.php:
|
471 |
msgid "Get WP Rocket now"
|
472 |
msgstr "Holen Sie sich WP Rocket jetzt"
|
473 |
|
474 |
-
#: ../inc/admin/ui/notices.php:
|
475 |
#, php-format
|
476 |
msgid ""
|
477 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
478 |
"your website's speed by reducing your images size."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../inc/admin/ui/notices.php:
|
482 |
#, php-format
|
483 |
msgid ""
|
484 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
@@ -495,7 +495,7 @@ msgstr "Ist Ihre Website zu langsam?"
|
|
495 |
msgid "API Key"
|
496 |
msgstr "API-Schlüssel"
|
497 |
|
498 |
-
#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:
|
499 |
msgid "Your API key is valid."
|
500 |
msgstr "Ihr API-Schlüssel ist gültig."
|
501 |
|
@@ -703,7 +703,7 @@ msgstr ""
|
|
703 |
"maximaler Reduktion der Dateigröße zu riskieren."
|
704 |
|
705 |
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
|
706 |
-
#: ../inc/functions/admin-ui.php:
|
707 |
msgid "Close"
|
708 |
msgstr "Schließen"
|
709 |
|
@@ -731,17 +731,17 @@ msgstr "Modus:"
|
|
731 |
|
732 |
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
|
733 |
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
|
734 |
-
#: ../inc/functions/i18n.php:
|
735 |
msgid "File Size:"
|
736 |
msgstr "Dateigröße:"
|
737 |
|
738 |
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
|
739 |
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
|
740 |
-
#: ../inc/functions/i18n.php:
|
741 |
msgid "Original Saving:"
|
742 |
msgstr "Optimiert um:"
|
743 |
|
744 |
-
#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:
|
745 |
msgid "Unoptimized"
|
746 |
msgstr "Nicht Optimiert"
|
747 |
|
@@ -757,7 +757,7 @@ msgstr "Filtere nach Status"
|
|
757 |
msgid "All images"
|
758 |
msgstr "Alle Bilder"
|
759 |
|
760 |
-
#: ../inc/classes/class-attachment.php:
|
761 |
msgid ""
|
762 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
763 |
"you want to optimize it."
|
@@ -817,228 +817,244 @@ msgstr "Erneut optimieren als %s"
|
|
817 |
msgid "%s can't be optimized"
|
818 |
msgstr "%s kann nicht optimiert werden."
|
819 |
|
820 |
-
#: ../inc/functions/admin-ui.php:
|
821 |
msgid "What plan do I need?"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../inc/functions/admin-ui.php:
|
825 |
msgid "You're new to Imagify?"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../inc/functions/admin-ui.php:
|
829 |
msgid ""
|
830 |
"Let us help you by analyzing your existing images and determinate the best "
|
831 |
"plan for you"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../inc/functions/admin-ui.php:
|
835 |
msgid "Choose Plan"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
839 |
msgid "Payment Info"
|
840 |
-
msgstr ""
|
841 |
|
842 |
-
#: ../inc/functions/admin-ui.php:
|
843 |
msgid "We analysed your images"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../inc/functions/admin-ui.php:
|
847 |
-
#, php-format
|
848 |
msgid "You have %s images"
|
849 |
-
msgstr ""
|
850 |
|
851 |
-
#: ../inc/functions/admin-ui.php:
|
852 |
#, php-format
|
853 |
msgid "You actually have %s of images in your library."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../inc/functions/admin-ui.php:
|
857 |
#, php-format
|
858 |
msgid "You upload around %s of images per month."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../inc/functions/admin-ui.php:
|
862 |
msgid "We recommend you this plan"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../inc/functions/admin-ui.php:
|
866 |
msgid "Subscribe a monthly plan"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../inc/functions/admin-ui.php:
|
870 |
msgid "Subscribe a yearly plan"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: ../inc/functions/admin-ui.php:
|
874 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
875 |
msgid "Monthly"
|
876 |
msgstr ""
|
|
|
|
|
877 |
|
878 |
-
#: ../inc/functions/admin-ui.php:
|
879 |
-
#: ../inc/functions/admin-ui.php:
|
880 |
msgid "Yearly"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../inc/functions/admin-ui.php:
|
884 |
-
#: ../inc/functions/admin-ui.php:
|
885 |
msgid "2 months free"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../inc/functions/admin-ui.php:
|
889 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
890 |
msgid "/month"
|
891 |
msgstr ""
|
|
|
|
|
892 |
|
893 |
-
#: ../inc/functions/admin-ui.php:
|
894 |
-
#: ../inc/functions/admin-ui.php:
|
895 |
#, php-format
|
896 |
msgid "approx: %s images"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../inc/functions/admin-ui.php:
|
900 |
#, php-format
|
901 |
msgid ""
|
902 |
"%s per<br>\n"
|
903 |
"additionnal Gb"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../inc/functions/admin-ui.php:
|
907 |
-
#: ../inc/functions/admin-ui.php:
|
908 |
msgid "Choose another plan"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../inc/functions/admin-ui.php:
|
912 |
msgid "Optimize the images you already have, buy a one-time plan"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../inc/functions/admin-ui.php:
|
916 |
msgid "Checkout"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../inc/functions/admin-ui.php:
|
920 |
msgid ""
|
921 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
922 |
"happens automatically each month or year depending the billing period you "
|
923 |
"choose."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../inc/functions/admin-ui.php:
|
927 |
msgid "Monthly Plans"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../inc/functions/admin-ui.php:
|
931 |
msgid "One Time Plans"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../inc/functions/admin-ui.php:
|
935 |
msgid ""
|
936 |
"Monthly plans come with credits which is renewed every months. The billing "
|
937 |
"happens automatically each month or year depending the billing period you "
|
938 |
"choose."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
942 |
msgid "we recommend for you"
|
943 |
msgstr ""
|
|
|
|
|
944 |
|
945 |
-
#: ../inc/functions/admin-ui.php:
|
946 |
msgid "Choose plan"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
950 |
msgid "Need more?"
|
951 |
-
msgstr ""
|
952 |
|
953 |
-
#: ../inc/functions/admin-ui.php:
|
954 |
msgid "for special needs"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
958 |
msgid "Contact Us"
|
959 |
msgstr ""
|
|
|
|
|
|
|
960 |
|
961 |
-
#: ../inc/functions/admin-ui.php:
|
962 |
msgid ""
|
963 |
"One time plans are useful if you have a lots of existing images which need "
|
964 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
965 |
"You will pay only once."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../inc/functions/admin-ui.php:
|
|
|
969 |
msgid "Your order"
|
970 |
-
msgstr ""
|
971 |
|
972 |
-
#: ../inc/functions/admin-ui.php:
|
973 |
#, php-format
|
974 |
msgid "%scancel%sYou just removed %s"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../inc/functions/admin-ui.php:
|
978 |
msgid "Remove this item"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../inc/functions/admin-ui.php:
|
982 |
#, php-format
|
983 |
msgid "%s per month"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: ../inc/functions/admin-ui.php:
|
987 |
#, php-format
|
988 |
msgid "one time %s"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../inc/functions/admin-ui.php:
|
992 |
#, php-format
|
993 |
msgid ""
|
994 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
995 |
"per year!</strong>"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../inc/functions/admin-ui.php:
|
999 |
#, php-format
|
1000 |
msgid ""
|
1001 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
1002 |
"strong>"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../inc/functions/admin-ui.php:
|
1006 |
msgid "Thank you for being awesome!"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../inc/functions/admin-ui.php:
|
1010 |
msgid "What do our user think about Imagify"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../inc/functions/admin-ui.php:
|
1014 |
msgid "Secure Credit Card Payment"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../inc/functions/admin-ui.php:
|
1018 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../inc/functions/i18n.php:
|
1022 |
msgid "Let's get you started!"
|
1023 |
msgstr "Los geht’s!"
|
1024 |
|
1025 |
-
#: ../inc/functions/i18n.php:
|
1026 |
msgid "Enter your email to get an API key:"
|
1027 |
msgstr "Geben Sie Ihre E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
|
1028 |
|
1029 |
-
#: ../inc/functions/i18n.php:
|
1030 |
msgid "Sign Up"
|
1031 |
msgstr "Konto anlegen"
|
1032 |
|
1033 |
-
#: ../inc/functions/i18n.php:
|
1034 |
msgid "You need to specify an email!"
|
1035 |
msgstr "Sie müssen eine E-Mail-Adresse angeben."
|
1036 |
|
1037 |
-
#: ../inc/functions/i18n.php:
|
1038 |
msgid "Congratulations!"
|
1039 |
msgstr "Glückwunsch!"
|
1040 |
|
1041 |
-
#: ../inc/functions/i18n.php:
|
1042 |
msgid ""
|
1043 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1044 |
"are going to receive an email with API key."
|
@@ -1046,23 +1062,27 @@ msgstr ""
|
|
1046 |
"Ihr Konto ist jetzt angelegt. Überprüfen Sie Ihr E-Mail-Postfach, Sie "
|
1047 |
"erhalten eine E-Mail mit Ihrem API-Schlüssel."
|
1048 |
|
1049 |
-
#: ../inc/functions/i18n.php:
|
1050 |
msgid "Connect to Imagify!"
|
1051 |
msgstr "Verbindung zu Imagify herstellen"
|
1052 |
|
1053 |
-
#: ../inc/functions/i18n.php:
|
1054 |
msgid "Paste your API key below:"
|
1055 |
msgstr "Fügen Sie Ihren API-Schlüssel hier ein:"
|
1056 |
|
1057 |
-
#: ../inc/functions/i18n.php:
|
1058 |
msgid "Connect me"
|
1059 |
msgstr "Verbinden"
|
1060 |
|
1061 |
-
#: ../inc/functions/i18n.php:
|
1062 |
msgid "Check in progress..."
|
1063 |
msgstr "API-Schlüssel wird geprüft…"
|
1064 |
|
1065 |
#: ../inc/functions/i18n.php:30
|
|
|
|
|
|
|
|
|
1066 |
msgid ""
|
1067 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1068 |
"optimize your images."
|
@@ -1070,15 +1090,15 @@ msgstr ""
|
|
1070 |
"Ihr API-Schlüssel ist gültig. Sie können jetzt Ihre Einstellungen für die "
|
1071 |
"Bildoptimierung mit Imagify wählen."
|
1072 |
|
1073 |
-
#: ../inc/functions/i18n.php:
|
1074 |
msgid "Cancel"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../inc/functions/i18n.php:
|
1078 |
msgid "Don't Need a Parachute?"
|
1079 |
msgstr "Sie brauchen keinen Fallschirm?"
|
1080 |
|
1081 |
-
#: ../inc/functions/i18n.php:
|
1082 |
msgid ""
|
1083 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1084 |
"images to another compression level and restore your original images in case "
|
@@ -1088,19 +1108,19 @@ msgstr ""
|
|
1088 |
"erneut mit einem anderen Level komprimieren, oder deren Originale "
|
1089 |
"wiederherstellen können."
|
1090 |
|
1091 |
-
#: ../inc/functions/i18n.php:
|
1092 |
msgid "Original Image"
|
1093 |
msgstr "Originalbild"
|
1094 |
|
1095 |
-
#: ../inc/functions/i18n.php:
|
1096 |
msgid "Optimized Image"
|
1097 |
msgstr "Optimiertes Bild"
|
1098 |
|
1099 |
-
#: ../inc/functions/i18n.php:
|
1100 |
msgid "Please wait..."
|
1101 |
msgstr "Einen Moment bitte …"
|
1102 |
|
1103 |
-
#: ../inc/functions/i18n.php:
|
1104 |
msgid ""
|
1105 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1106 |
"the number of images."
|
@@ -1108,11 +1128,11 @@ msgstr ""
|
|
1108 |
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
|
1109 |
"…"
|
1110 |
|
1111 |
-
#: ../inc/functions/i18n.php:
|
1112 |
msgid "Oops, There is something wrong!"
|
1113 |
msgstr "Hm, etwas ist schief gelaufen."
|
1114 |
|
1115 |
-
#: ../inc/functions/i18n.php:
|
1116 |
msgid ""
|
1117 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1118 |
"Try again and if the issue still persist, please contact us!"
|
@@ -1121,19 +1141,19 @@ msgstr ""
|
|
1121 |
"aufgetreten. Versuchen Sie es noch einmal; falls der Fehler sich wiederholt, "
|
1122 |
"kontaktieren Sie bitte den Imagify-Support."
|
1123 |
|
1124 |
-
#: ../inc/functions/i18n.php:
|
1125 |
msgid "Error"
|
1126 |
msgstr "Fehler"
|
1127 |
|
1128 |
-
#: ../inc/functions/i18n.php:
|
1129 |
msgid "Hold on!"
|
1130 |
msgstr "Moment, bitte!"
|
1131 |
|
1132 |
-
#: ../inc/functions/i18n.php:
|
1133 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1134 |
msgstr "Imagify hat alle Ihre Bilder optimiert. Glückwunsch!"
|
1135 |
|
1136 |
-
#: ../inc/functions/i18n.php:
|
1137 |
#, php-format
|
1138 |
msgid ""
|
1139 |
"Discover @imagify, the new compression tool to optimize your images for "
|
@@ -1142,17 +1162,17 @@ msgstr ""
|
|
1142 |
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
|
1143 |
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
|
1144 |
|
1145 |
-
#: ../inc/functions/i18n.php:
|
1146 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1147 |
msgstr ""
|
1148 |
"Imagify arbeitet noch. Möchten Sie diese Seite wirklich verlassen und den "
|
1149 |
"Prozess abbrechen?"
|
1150 |
|
1151 |
-
#: ../inc/functions/i18n.php:
|
1152 |
msgid "F j, Y"
|
1153 |
msgstr "j. F Y"
|
1154 |
|
1155 |
-
#: ../inc/functions/process.php:
|
1156 |
msgid ""
|
1157 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1158 |
"couple of minutes."
|
@@ -1160,41 +1180,29 @@ msgstr ""
|
|
1160 |
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuchen "
|
1161 |
"Sie es in ein paar Minuten noch einmal."
|
1162 |
|
1163 |
-
#: ../inc/functions/process.php:
|
1164 |
msgid "External HTTP requests are blocked"
|
1165 |
msgstr "Externe HTTP-Anfragen werden blockiert"
|
1166 |
|
1167 |
-
#: ../inc/functions/process.php:
|
1168 |
msgid "File path is empty"
|
1169 |
msgstr "Datei-Pfad ist leer"
|
1170 |
|
1171 |
-
#: ../inc/functions/process.php:
|
1172 |
#, php-format
|
1173 |
msgid "Could not find %s"
|
1174 |
msgstr "%s wurde nicht gefunden"
|
1175 |
|
1176 |
-
#: ../inc/functions/process.php:
|
1177 |
#, php-format
|
1178 |
msgid "%s is not writable"
|
1179 |
msgstr "%s ist nicht beschreibbar."
|
1180 |
|
1181 |
-
#: ../inc/functions/process.php:
|
1182 |
#, php-format
|
1183 |
msgid "Skipped (%s), image not found."
|
1184 |
msgstr "Übersprungen (%s), Bild nicht gefunden."
|
1185 |
|
1186 |
-
#: ../assets/js/sweetalert.min.js:1
|
1187 |
-
msgid "./utils"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: ../assets/js/sweetalert.min.js:1
|
1191 |
-
msgid "./handle-swal-dom"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: ../assets/js/sweetalert.min.js:1
|
1195 |
-
msgid "./handle-dom"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
#~ msgid "https://wordpress.org/plugins/imagify"
|
1199 |
#~ msgstr "https://de.wordpress.org/plugins/imagify"
|
1200 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-09-23 11:14-0500\n"
|
6 |
+
"PO-Revision-Date: 2016-09-23 11:16-0500\n"
|
7 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Generator: Poedit 1.6.4\n"
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
26 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
|
27 |
+
#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
|
28 |
+
#: ../inc/functions/i18n.php:64
|
29 |
msgid "Optimize"
|
30 |
msgstr "Optimieren"
|
31 |
|
32 |
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
33 |
+
#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
|
34 |
msgid "Restore Original"
|
35 |
msgstr "Original wiederherstellen"
|
36 |
|
43 |
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
|
44 |
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
|
45 |
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
|
46 |
+
#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
|
47 |
msgid "Optimizing..."
|
48 |
msgstr "Wird optimiert …"
|
49 |
|
50 |
+
#: ../inc/admin/ajax.php:507
|
51 |
msgid "Oops, It's almost over!"
|
52 |
msgstr "Hoppla, es wird langsam eng."
|
53 |
|
54 |
+
#: ../inc/admin/ajax.php:508
|
55 |
#, php-format
|
56 |
msgid ""
|
57 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
60 |
"In Kürze werden Sie Ihr Guthaben verbraucht haben.%sAktualisieren Sie Ihr "
|
61 |
"Abo, um Ihre Bilder auch in Zukunft zu optimieren."
|
62 |
|
63 |
+
#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
|
64 |
msgid "View My Subscription"
|
65 |
msgstr "Mein Abo ansehen"
|
66 |
|
67 |
+
#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
|
68 |
+
#: ../inc/functions/i18n.php:84
|
69 |
msgid "Oops, It's Over!"
|
70 |
msgstr "Alles hat ein Ende…"
|
71 |
|
72 |
+
#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
|
73 |
+
#: ../inc/functions/i18n.php:101
|
74 |
#, php-format
|
75 |
msgid ""
|
76 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
79 |
"Sie haben Ihr Guthaben für diesen Monat aufgebraucht. <strong>%s</strong> "
|
80 |
"werden Ihnen am <strong>%s</strong> wieder zur Verfügung stehen."
|
81 |
|
82 |
+
#: ../inc/admin/ajax.php:519
|
83 |
msgid "Upgrade My Subscription"
|
84 |
msgstr "Mein Abo aktualisieren"
|
85 |
|
86 |
+
#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
|
87 |
msgid "Account status"
|
88 |
msgstr "Kontostatus"
|
89 |
|
90 |
+
#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
|
91 |
msgid "Your subscription:"
|
92 |
msgstr "Ihr Abo:"
|
93 |
|
94 |
+
#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
|
95 |
#, php-format
|
96 |
msgid "You have %s space credit left"
|
97 |
msgstr "Sie haben noch %s Guthaben"
|
98 |
|
99 |
+
#: ../inc/admin/ajax.php:559
|
100 |
msgid "View my subscription"
|
101 |
msgstr "Mein Abo ansehen"
|
102 |
|
103 |
+
#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
|
104 |
msgid "Compare Original VS Optimized"
|
105 |
msgstr "Vergleiche Original mit optimiert"
|
106 |
|
107 |
#: ../inc/admin/meta-boxes.php:17 ../inc/admin/meta-boxes.php:24
|
108 |
#: ../inc/admin/upload.php:12
|
109 |
+
#, fuzzy
|
110 |
msgid "Imagify"
|
111 |
+
msgstr "Verbindung zu Imagify herstellen"
|
112 |
|
113 |
#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:195
|
114 |
msgid "Invalid API key"
|
118 |
msgid "Check your Settings"
|
119 |
msgstr "Überprüfen Sie Ihre Einstellungen"
|
120 |
|
121 |
+
#: ../inc/admin/options.php:119
|
122 |
msgid "Cheatin’ uh?"
|
123 |
msgstr "Ts, ts, ts …"
|
124 |
|
125 |
+
#: ../inc/admin/options.php:127
|
126 |
msgid "<strong>ERROR</strong>: options page not found."
|
127 |
msgstr "<strong>Fehler</strong>: Einstellungsseite nicht gefunden."
|
128 |
|
248 |
|
249 |
#: ../inc/admin/ui/bulk.php:220
|
250 |
#, php-format
|
251 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
|
|
|
|
252 |
msgstr ""
|
253 |
+
"Alle Bilder größer als %s werden optimiert, wenn Sie einen bezahlten Tarif "
|
254 |
+
"nutzen."
|
255 |
|
256 |
#: ../inc/admin/ui/bulk.php:239
|
257 |
msgid "Well done!"
|
284 |
msgstr "Original"
|
285 |
|
286 |
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
|
287 |
+
#: ../inc/functions/i18n.php:80
|
288 |
msgid "Optimized"
|
289 |
msgstr "Optimiert"
|
290 |
|
321 |
msgid "%sStart the bulk optimization%s"
|
322 |
msgstr "%sStapelverarbeitung starten%s"
|
323 |
|
324 |
+
#: ../inc/admin/ui/notices.php:24
|
325 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
326 |
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
|
327 |
|
328 |
+
#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
|
329 |
+
#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
|
330 |
+
#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
|
331 |
msgid "Dismiss this notice"
|
332 |
msgstr "Diese Meldung verwerfen"
|
333 |
|
334 |
+
#: ../inc/admin/ui/notices.php:33
|
335 |
msgid "Create an Account"
|
336 |
msgstr "Konto anlegen"
|
337 |
|
338 |
+
#: ../inc/admin/ui/notices.php:34
|
339 |
msgid ""
|
340 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
341 |
"account in a few seconds!"
|
343 |
"Registrieren Sie Ihr Konto bei Imagify (kostenfrei, dauert nur ein paar "
|
344 |
"Sekunden), um anschließend Ihre Bilder in WordPress zu optimieren."
|
345 |
|
346 |
+
#: ../inc/admin/ui/notices.php:37
|
347 |
msgid "Sign up, It's FREE!"
|
348 |
msgstr "Mein Konto kostenfrei anlegen"
|
349 |
|
350 |
+
#: ../inc/admin/ui/notices.php:43
|
351 |
msgid "Enter your API Key"
|
352 |
msgstr "API-Schlüssel eingeben"
|
353 |
|
354 |
+
#: ../inc/admin/ui/notices.php:44
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"Save your API Key you have received by email or you can get it on your "
|
361 |
"Mail erhalten haben. Sie können ihn auch jederzeit in Ihren "
|
362 |
"%sKontoeinstellungen%s abrufen."
|
363 |
|
364 |
+
#: ../inc/admin/ui/notices.php:47
|
365 |
msgid "I have my API key"
|
366 |
msgstr "Meinen API-Schlüssel eingeben"
|
367 |
|
368 |
+
#: ../inc/admin/ui/notices.php:53
|
369 |
msgid "Configure it"
|
370 |
msgstr "Einstellungen wählen"
|
371 |
|
372 |
+
#: ../inc/admin/ui/notices.php:54
|
373 |
msgid ""
|
374 |
"It’s almost done! You have just to configure your optimization settings."
|
375 |
msgstr ""
|
376 |
"Fast fertig! Wählen Sie nun Ihre Einstellungen für Imagify. Anschließend "
|
377 |
"können Sie alle Ihre Bilder von Imagify automatisch optimieren lassen."
|
378 |
|
379 |
+
#: ../inc/admin/ui/notices.php:55
|
380 |
msgid "Go to Settings"
|
381 |
msgstr "Meine Einstellungen wählen"
|
382 |
|
383 |
+
#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
|
384 |
+
#: ../inc/functions/i18n.php:78
|
385 |
msgid "Your API key isn't valid!"
|
386 |
msgstr "Ihr API-Schlüssel ist ungültig."
|
387 |
|
388 |
+
#: ../inc/admin/ui/notices.php:90
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Go to your Imagify account page to get your API Key and specify it on "
|
397 |
"%2$slegen Sie kostenfrei ein Konto an%3$s, um einen API-Schlüssel zu "
|
398 |
"erhalten."
|
399 |
|
400 |
+
#: ../inc/admin/ui/notices.php:142
|
401 |
msgid ""
|
402 |
"The following plugins are not compatible with this plugin and may cause "
|
403 |
"unexpected results:"
|
405 |
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
|
406 |
"unerwartete Ergebnisse verursachen:"
|
407 |
|
408 |
+
#: ../inc/admin/ui/notices.php:148
|
409 |
msgid "Deactivate"
|
410 |
msgstr "Deaktivieren"
|
411 |
|
412 |
+
#: ../inc/admin/ui/notices.php:178
|
413 |
msgid "The external HTTP requests are blocked!"
|
414 |
msgstr "Externe HTTP-Anfragen werden blockiert."
|
415 |
|
416 |
+
#: ../inc/admin/ui/notices.php:179
|
417 |
msgid ""
|
418 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
419 |
"config.php</code> to block all external HTTP requests."
|
422 |
"config.php</em> die PHP-Konstante <code>WP_HTTP_BLOCK_EXTERNAL</code> "
|
423 |
"gesetzt ist.\n"
|
424 |
|
425 |
+
#: ../inc/admin/ui/notices.php:181
|
426 |
msgid ""
|
427 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
428 |
"config.php</code> file so that it works correctly."
|
430 |
"Um Ihre Bilder optimieren zu können, fügen Sie den folgenden Code zu Ihrer "
|
431 |
"<em>wp-config.php</em> hinzu."
|
432 |
|
433 |
+
#: ../inc/admin/ui/notices.php:182
|
434 |
msgid "Click on the field and press Ctrl-A to select all."
|
435 |
msgstr ""
|
436 |
"Klicken Sie auf das Feld und drücken Sie ctrl+A (cmd+A) für Alles auswählen."
|
437 |
|
438 |
+
#: ../inc/admin/ui/notices.php:219
|
439 |
msgid "You're missing out!"
|
440 |
msgstr "Sie verpassen etwas!"
|
441 |
|
442 |
+
#: ../inc/admin/ui/notices.php:220
|
443 |
msgid "Use the List view to optimize images with Imagify."
|
444 |
msgstr "In der Listenansicht können Sie Ihre Bilder direkt zu optimieren."
|
445 |
|
446 |
+
#: ../inc/admin/ui/notices.php:221
|
447 |
msgid "Switch to the List View"
|
448 |
msgstr "Zur Listenansicht wechseln"
|
449 |
|
450 |
+
#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
|
451 |
+
#: ../inc/functions/i18n.php:101
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
457 |
"Um Ihre Bilder auch in Zukunft zu optimieren, loggen Sie sich bei Imagify.io "
|
458 |
"ein und %skaufen Sie ein einmaliges Guthaben oder ein Abo%s."
|
459 |
|
460 |
+
#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
|
461 |
msgid "Discover the best caching plugin to speed up your website."
|
462 |
msgstr ""
|
463 |
"Entdecken Sie das beste Caching-Plugin, um Ihre Website schneller zu machen."
|
464 |
|
465 |
+
#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
|
466 |
#, php-format
|
467 |
msgid "%sGet %s off%s with this coupon code:%s"
|
468 |
msgstr "%sErhalten Sie %s Rabatt%s mit diesem Gutschein-Code:%s"
|
469 |
|
470 |
+
#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
|
471 |
msgid "Get WP Rocket now"
|
472 |
msgstr "Holen Sie sich WP Rocket jetzt"
|
473 |
|
474 |
+
#: ../inc/admin/ui/notices.php:363
|
475 |
#, php-format
|
476 |
msgid ""
|
477 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
478 |
"your website's speed by reducing your images size."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
|
482 |
#, php-format
|
483 |
msgid ""
|
484 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
495 |
msgid "API Key"
|
496 |
msgstr "API-Schlüssel"
|
497 |
|
498 |
+
#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
|
499 |
msgid "Your API key is valid."
|
500 |
msgstr "Ihr API-Schlüssel ist gültig."
|
501 |
|
703 |
"maximaler Reduktion der Dateigröße zu riskieren."
|
704 |
|
705 |
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
|
706 |
+
#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
|
707 |
msgid "Close"
|
708 |
msgstr "Schließen"
|
709 |
|
731 |
|
732 |
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
|
733 |
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
|
734 |
+
#: ../inc/functions/i18n.php:62
|
735 |
msgid "File Size:"
|
736 |
msgstr "Dateigröße:"
|
737 |
|
738 |
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
|
739 |
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
|
740 |
+
#: ../inc/functions/i18n.php:63
|
741 |
msgid "Original Saving:"
|
742 |
msgstr "Optimiert um:"
|
743 |
|
744 |
+
#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
|
745 |
msgid "Unoptimized"
|
746 |
msgstr "Nicht Optimiert"
|
747 |
|
757 |
msgid "All images"
|
758 |
msgstr "Alle Bilder"
|
759 |
|
760 |
+
#: ../inc/classes/class-attachment.php:297
|
761 |
msgid ""
|
762 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
763 |
"you want to optimize it."
|
817 |
msgid "%s can't be optimized"
|
818 |
msgstr "%s kann nicht optimiert werden."
|
819 |
|
820 |
+
#: ../inc/functions/admin-ui.php:240
|
821 |
msgid "What plan do I need?"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../inc/functions/admin-ui.php:244
|
825 |
msgid "You're new to Imagify?"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../inc/functions/admin-ui.php:245
|
829 |
msgid ""
|
830 |
"Let us help you by analyzing your existing images and determinate the best "
|
831 |
"plan for you"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../inc/functions/admin-ui.php:280
|
835 |
msgid "Choose Plan"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../inc/functions/admin-ui.php:281
|
839 |
+
#, fuzzy
|
840 |
msgid "Payment Info"
|
841 |
+
msgstr "Weitere Informationen"
|
842 |
|
843 |
+
#: ../inc/functions/admin-ui.php:286
|
844 |
msgid "We analysed your images"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../inc/functions/admin-ui.php:292
|
848 |
+
#, fuzzy, php-format
|
849 |
msgid "You have %s images"
|
850 |
+
msgstr "Du hast noch %s Guthaben"
|
851 |
|
852 |
+
#: ../inc/functions/admin-ui.php:298
|
853 |
#, php-format
|
854 |
msgid "You actually have %s of images in your library."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../inc/functions/admin-ui.php:302
|
858 |
#, php-format
|
859 |
msgid "You upload around %s of images per month."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../inc/functions/admin-ui.php:309
|
863 |
msgid "We recommend you this plan"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../inc/functions/admin-ui.php:314
|
867 |
msgid "Subscribe a monthly plan"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../inc/functions/admin-ui.php:315
|
871 |
msgid "Subscribe a yearly plan"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
|
875 |
+
#: ../inc/functions/admin-ui.php:623
|
876 |
+
#, fuzzy
|
877 |
msgid "Monthly"
|
878 |
msgstr ""
|
879 |
+
"Bedenke, dass jede ausgewählte Bildgröße dein monatliches Nutzungsvolumen "
|
880 |
+
"bei Imagify beeinflusst."
|
881 |
|
882 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
883 |
+
#: ../inc/functions/admin-ui.php:626
|
884 |
msgid "Yearly"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
888 |
+
#: ../inc/functions/admin-ui.php:626
|
889 |
msgid "2 months free"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
|
893 |
+
#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
|
894 |
+
#, fuzzy
|
895 |
msgid "/month"
|
896 |
msgstr ""
|
897 |
+
"Du hast dein Guthaben für diesen Monat aufgebraucht. <strong>%s</strong> "
|
898 |
+
"werden dir am <strong>%s</strong> wieder zur Verfügung stehen."
|
899 |
|
900 |
+
#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
|
901 |
+
#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
|
902 |
#, php-format
|
903 |
msgid "approx: %s images"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
|
907 |
#, php-format
|
908 |
msgid ""
|
909 |
"%s per<br>\n"
|
910 |
"additionnal Gb"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
|
914 |
+
#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
|
915 |
msgid "Choose another plan"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../inc/functions/admin-ui.php:371
|
919 |
msgid "Optimize the images you already have, buy a one-time plan"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../inc/functions/admin-ui.php:407
|
923 |
msgid "Checkout"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../inc/functions/admin-ui.php:411
|
927 |
msgid ""
|
928 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
929 |
"happens automatically each month or year depending the billing period you "
|
930 |
"choose."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../inc/functions/admin-ui.php:435
|
934 |
msgid "Monthly Plans"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../inc/functions/admin-ui.php:440
|
938 |
msgid "One Time Plans"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../inc/functions/admin-ui.php:450
|
942 |
msgid ""
|
943 |
"Monthly plans come with credits which is renewed every months. The billing "
|
944 |
"happens automatically each month or year depending the billing period you "
|
945 |
"choose."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
|
949 |
+
#, fuzzy
|
950 |
msgid "we recommend for you"
|
951 |
msgstr ""
|
952 |
+
"Wähle diese Einstellung, wenn dir die perfekte Qualität deiner Bilder "
|
953 |
+
"wichtig ist."
|
954 |
|
955 |
+
#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
|
956 |
msgid "Choose plan"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: ../inc/functions/admin-ui.php:498
|
960 |
+
#, fuzzy
|
961 |
msgid "Need more?"
|
962 |
+
msgstr "Weitere Informationen"
|
963 |
|
964 |
+
#: ../inc/functions/admin-ui.php:499
|
965 |
msgid "for special needs"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../inc/functions/admin-ui.php:503
|
969 |
+
#, fuzzy
|
970 |
msgid "Contact Us"
|
971 |
msgstr ""
|
972 |
+
"Ein unbekannter Fehler ist beim Sammeln der nicht optimierten Bilder "
|
973 |
+
"aufgetreten. Versuche es noch einmal; falls der Fehler sich wiederholt, "
|
974 |
+
"kontaktiere bitte den Imagify-Support."
|
975 |
|
976 |
+
#: ../inc/functions/admin-ui.php:510
|
977 |
msgid ""
|
978 |
"One time plans are useful if you have a lots of existing images which need "
|
979 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
980 |
"You will pay only once."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: ../inc/functions/admin-ui.php:563
|
984 |
+
#, fuzzy
|
985 |
msgid "Your order"
|
986 |
+
msgstr "Dein Abo:"
|
987 |
|
988 |
+
#: ../inc/functions/admin-ui.php:568
|
989 |
#, php-format
|
990 |
msgid "%scancel%sYou just removed %s"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
|
994 |
msgid "Remove this item"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: ../inc/functions/admin-ui.php:583
|
998 |
#, php-format
|
999 |
msgid "%s per month"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../inc/functions/admin-ui.php:604
|
1003 |
#, php-format
|
1004 |
msgid "one time %s"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../inc/functions/admin-ui.php:617
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
1011 |
"per year!</strong>"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: ../inc/functions/admin-ui.php:618
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
1018 |
"strong>"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: ../inc/functions/admin-ui.php:657
|
1022 |
msgid "Thank you for being awesome!"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: ../inc/functions/admin-ui.php:668
|
1026 |
msgid "What do our user think about Imagify"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../inc/functions/admin-ui.php:702
|
1030 |
msgid "Secure Credit Card Payment"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../inc/functions/admin-ui.php:703
|
1034 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: ../inc/functions/i18n.php:20
|
1038 |
msgid "Let's get you started!"
|
1039 |
msgstr "Los geht’s!"
|
1040 |
|
1041 |
+
#: ../inc/functions/i18n.php:21
|
1042 |
msgid "Enter your email to get an API key:"
|
1043 |
msgstr "Geben Sie Ihre E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
|
1044 |
|
1045 |
+
#: ../inc/functions/i18n.php:22
|
1046 |
msgid "Sign Up"
|
1047 |
msgstr "Konto anlegen"
|
1048 |
|
1049 |
+
#: ../inc/functions/i18n.php:23
|
1050 |
msgid "You need to specify an email!"
|
1051 |
msgstr "Sie müssen eine E-Mail-Adresse angeben."
|
1052 |
|
1053 |
+
#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
|
1054 |
msgid "Congratulations!"
|
1055 |
msgstr "Glückwunsch!"
|
1056 |
|
1057 |
+
#: ../inc/functions/i18n.php:25
|
1058 |
msgid ""
|
1059 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1060 |
"are going to receive an email with API key."
|
1062 |
"Ihr Konto ist jetzt angelegt. Überprüfen Sie Ihr E-Mail-Postfach, Sie "
|
1063 |
"erhalten eine E-Mail mit Ihrem API-Schlüssel."
|
1064 |
|
1065 |
+
#: ../inc/functions/i18n.php:26
|
1066 |
msgid "Connect to Imagify!"
|
1067 |
msgstr "Verbindung zu Imagify herstellen"
|
1068 |
|
1069 |
+
#: ../inc/functions/i18n.php:27
|
1070 |
msgid "Paste your API key below:"
|
1071 |
msgstr "Fügen Sie Ihren API-Schlüssel hier ein:"
|
1072 |
|
1073 |
+
#: ../inc/functions/i18n.php:28
|
1074 |
msgid "Connect me"
|
1075 |
msgstr "Verbinden"
|
1076 |
|
1077 |
+
#: ../inc/functions/i18n.php:29
|
1078 |
msgid "Check in progress..."
|
1079 |
msgstr "API-Schlüssel wird geprüft…"
|
1080 |
|
1081 |
#: ../inc/functions/i18n.php:30
|
1082 |
+
msgid "You need to specify your api key!"
|
1083 |
+
msgstr "Sie müssen einen API-Schlüssel angeben!"
|
1084 |
+
|
1085 |
+
#: ../inc/functions/i18n.php:32
|
1086 |
msgid ""
|
1087 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1088 |
"optimize your images."
|
1090 |
"Ihr API-Schlüssel ist gültig. Sie können jetzt Ihre Einstellungen für die "
|
1091 |
"Bildoptimierung mit Imagify wählen."
|
1092 |
|
1093 |
+
#: ../inc/functions/i18n.php:34
|
1094 |
msgid "Cancel"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../inc/functions/i18n.php:41
|
1098 |
msgid "Don't Need a Parachute?"
|
1099 |
msgstr "Sie brauchen keinen Fallschirm?"
|
1100 |
|
1101 |
+
#: ../inc/functions/i18n.php:42
|
1102 |
msgid ""
|
1103 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1104 |
"images to another compression level and restore your original images in case "
|
1108 |
"erneut mit einem anderen Level komprimieren, oder deren Originale "
|
1109 |
"wiederherstellen können."
|
1110 |
|
1111 |
+
#: ../inc/functions/i18n.php:58
|
1112 |
msgid "Original Image"
|
1113 |
msgstr "Originalbild"
|
1114 |
|
1115 |
+
#: ../inc/functions/i18n.php:59
|
1116 |
msgid "Optimized Image"
|
1117 |
msgstr "Optimiertes Bild"
|
1118 |
|
1119 |
+
#: ../inc/functions/i18n.php:73
|
1120 |
msgid "Please wait..."
|
1121 |
msgstr "Einen Moment bitte …"
|
1122 |
|
1123 |
+
#: ../inc/functions/i18n.php:74
|
1124 |
msgid ""
|
1125 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1126 |
"the number of images."
|
1128 |
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
|
1129 |
"…"
|
1130 |
|
1131 |
+
#: ../inc/functions/i18n.php:76
|
1132 |
msgid "Oops, There is something wrong!"
|
1133 |
msgstr "Hm, etwas ist schief gelaufen."
|
1134 |
|
1135 |
+
#: ../inc/functions/i18n.php:77
|
1136 |
msgid ""
|
1137 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1138 |
"Try again and if the issue still persist, please contact us!"
|
1141 |
"aufgetreten. Versuchen Sie es noch einmal; falls der Fehler sich wiederholt, "
|
1142 |
"kontaktieren Sie bitte den Imagify-Support."
|
1143 |
|
1144 |
+
#: ../inc/functions/i18n.php:82
|
1145 |
msgid "Error"
|
1146 |
msgstr "Fehler"
|
1147 |
|
1148 |
+
#: ../inc/functions/i18n.php:85
|
1149 |
msgid "Hold on!"
|
1150 |
msgstr "Moment, bitte!"
|
1151 |
|
1152 |
+
#: ../inc/functions/i18n.php:86
|
1153 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1154 |
msgstr "Imagify hat alle Ihre Bilder optimiert. Glückwunsch!"
|
1155 |
|
1156 |
+
#: ../inc/functions/i18n.php:88
|
1157 |
#, php-format
|
1158 |
msgid ""
|
1159 |
"Discover @imagify, the new compression tool to optimize your images for "
|
1162 |
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
|
1163 |
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
|
1164 |
|
1165 |
+
#: ../inc/functions/i18n.php:92
|
1166 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1167 |
msgstr ""
|
1168 |
"Imagify arbeitet noch. Möchten Sie diese Seite wirklich verlassen und den "
|
1169 |
"Prozess abbrechen?"
|
1170 |
|
1171 |
+
#: ../inc/functions/i18n.php:101
|
1172 |
msgid "F j, Y"
|
1173 |
msgstr "j. F Y"
|
1174 |
|
1175 |
+
#: ../inc/functions/process.php:40
|
1176 |
msgid ""
|
1177 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1178 |
"couple of minutes."
|
1180 |
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuchen "
|
1181 |
"Sie es in ein paar Minuten noch einmal."
|
1182 |
|
1183 |
+
#: ../inc/functions/process.php:46
|
1184 |
msgid "External HTTP requests are blocked"
|
1185 |
msgstr "Externe HTTP-Anfragen werden blockiert"
|
1186 |
|
1187 |
+
#: ../inc/functions/process.php:52
|
1188 |
msgid "File path is empty"
|
1189 |
msgstr "Datei-Pfad ist leer"
|
1190 |
|
1191 |
+
#: ../inc/functions/process.php:58
|
1192 |
#, php-format
|
1193 |
msgid "Could not find %s"
|
1194 |
msgstr "%s wurde nicht gefunden"
|
1195 |
|
1196 |
+
#: ../inc/functions/process.php:63
|
1197 |
#, php-format
|
1198 |
msgid "%s is not writable"
|
1199 |
msgstr "%s ist nicht beschreibbar."
|
1200 |
|
1201 |
+
#: ../inc/functions/process.php:72
|
1202 |
#, php-format
|
1203 |
msgid "Skipped (%s), image not found."
|
1204 |
msgstr "Übersprungen (%s), Bild nicht gefunden."
|
1205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1206 |
#~ msgid "https://wordpress.org/plugins/imagify"
|
1207 |
#~ msgstr "https://de.wordpress.org/plugins/imagify"
|
1208 |
|
languages/imagify-es_ES.mo
CHANGED
Binary file
|
languages/imagify-es_ES.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
-
"Last-Translator:
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -17,18 +17,18 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
|
|
22 |
|
23 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
|
25 |
-
#: inc/functions/admin-ui.php:
|
26 |
-
#: inc/functions/i18n.php:
|
27 |
msgid "Optimize"
|
28 |
msgstr "Optimizar"
|
29 |
|
30 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
31 |
-
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:
|
32 |
msgid "Restore Original"
|
33 |
msgstr "Recuperar tamaño original"
|
34 |
|
@@ -41,15 +41,15 @@ msgstr "Optimización masiva"
|
|
41 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
|
42 |
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
|
43 |
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
|
44 |
-
#: inc/functions/admin-ui.php:
|
45 |
msgid "Optimizing..."
|
46 |
msgstr "Optimizando…"
|
47 |
|
48 |
-
#: inc/admin/ajax.php:
|
49 |
msgid "Oops, It's almost over!"
|
50 |
msgstr "¡Ya casi está!"
|
51 |
|
52 |
-
#: inc/admin/ajax.php:
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
@@ -58,17 +58,17 @@ msgstr ""
|
|
58 |
"Ya has utilizado casi todo tu crédito.%sNo olvides ampliar tu suscripción "
|
59 |
"para poder seguir optimizando tus imágenes."
|
60 |
|
61 |
-
#: inc/admin/ajax.php:
|
62 |
msgid "View My Subscription"
|
63 |
msgstr "Ver mi suscripción"
|
64 |
|
65 |
-
#: inc/admin/ajax.php:
|
66 |
-
#: inc/functions/i18n.php:
|
67 |
msgid "Oops, It's Over!"
|
68 |
msgstr "¡Ya está!"
|
69 |
|
70 |
-
#: inc/admin/ajax.php:
|
71 |
-
#: inc/functions/i18n.php:
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
@@ -77,32 +77,31 @@ msgstr ""
|
|
77 |
"Has consumido todo tu crédito para este mes. Volverás a tener <strong>%s el "
|
78 |
"%s</strong>."
|
79 |
|
80 |
-
#: inc/admin/ajax.php:
|
81 |
msgid "Upgrade My Subscription"
|
82 |
msgstr "Actualizar mi suscripción"
|
83 |
|
84 |
-
#: inc/admin/ajax.php:
|
85 |
msgid "Account status"
|
86 |
msgstr "Estado de mi cuenta"
|
87 |
|
88 |
-
#: inc/admin/ajax.php:
|
89 |
msgid "Your subscription:"
|
90 |
msgstr "Tu suscripción:"
|
91 |
|
92 |
-
#: inc/admin/ajax.php:
|
93 |
#, php-format
|
94 |
msgid "You have %s space credit left"
|
95 |
msgstr "Te queda un saldo de %s"
|
96 |
|
97 |
-
#: inc/admin/ajax.php:
|
98 |
msgid "View my subscription"
|
99 |
msgstr "Ver mi suscripción"
|
100 |
|
101 |
-
#: inc/admin/media.php:63 inc/functions/i18n.php:
|
102 |
msgid "Compare Original VS Optimized"
|
103 |
msgstr "Compara original VS optimizada"
|
104 |
|
105 |
-
#. Plugin Name of the plugin/theme
|
106 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
107 |
#: inc/admin/upload.php:12
|
108 |
msgid "Imagify"
|
@@ -116,11 +115,11 @@ msgstr "Clave API no válida"
|
|
116 |
msgid "Check your Settings"
|
117 |
msgstr "Comprueba tu configuración"
|
118 |
|
119 |
-
#: inc/admin/options.php:
|
120 |
msgid "Cheatin’ uh?"
|
121 |
msgstr "Haciendo trampa ¿Uh?"
|
122 |
|
123 |
-
#: inc/admin/options.php:
|
124 |
msgid "<strong>ERROR</strong>: options page not found."
|
125 |
msgstr "<strong>ERROR</strong>: página de opciones no encontrada."
|
126 |
|
@@ -247,12 +246,9 @@ msgstr "Imagíficalo todo"
|
|
247 |
|
248 |
#: inc/admin/ui/bulk.php:220
|
249 |
#, php-format
|
250 |
-
msgid ""
|
251 |
-
"All images greater than %s will be optimized when using a paying monthly "
|
252 |
-
"plan."
|
253 |
msgstr ""
|
254 |
-
"Todas las imágenes
|
255 |
-
"plan de pago mensual."
|
256 |
|
257 |
#: inc/admin/ui/bulk.php:239
|
258 |
msgid "Well done!"
|
@@ -284,7 +280,7 @@ msgstr "Estado"
|
|
284 |
msgid "Original"
|
285 |
msgstr "Original"
|
286 |
|
287 |
-
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:
|
288 |
msgid "Optimized"
|
289 |
msgstr "Optimizado"
|
290 |
|
@@ -321,22 +317,22 @@ msgstr "Ganancia:"
|
|
321 |
msgid "%sStart the bulk optimization%s"
|
322 |
msgstr "%sEmpieza la optimización masiva%s"
|
323 |
|
324 |
-
#: inc/admin/ui/notices.php:
|
325 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
326 |
msgstr ""
|
327 |
"¡Bienvenido a Imagify, la mejor manera de optimizar fácilmente tus imágenes!"
|
328 |
|
329 |
-
#: inc/admin/ui/notices.php:
|
330 |
-
#: inc/admin/ui/notices.php:
|
331 |
-
#: inc/admin/ui/notices.php:
|
332 |
msgid "Dismiss this notice"
|
333 |
msgstr "Descarta este aviso"
|
334 |
|
335 |
-
#: inc/admin/ui/notices.php:
|
336 |
msgid "Create an Account"
|
337 |
msgstr "Crea una cuenta"
|
338 |
|
339 |
-
#: inc/admin/ui/notices.php:
|
340 |
msgid ""
|
341 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
342 |
"account in a few seconds!"
|
@@ -344,15 +340,15 @@ msgstr ""
|
|
344 |
"¿Todavía no tienes una cuenta Imagify? Optimiza tus imágenes creando una "
|
345 |
"cuenta en unos segundos!"
|
346 |
|
347 |
-
#: inc/admin/ui/notices.php:
|
348 |
msgid "Sign up, It's FREE!"
|
349 |
msgstr "Regístrate, ¡es GRATIS!"
|
350 |
|
351 |
-
#: inc/admin/ui/notices.php:
|
352 |
msgid "Enter your API Key"
|
353 |
msgstr "Ingresa tu clave API"
|
354 |
|
355 |
-
#: inc/admin/ui/notices.php:
|
356 |
#, php-format
|
357 |
msgid ""
|
358 |
"Save your API Key you have received by email or you can get it on your "
|
@@ -361,29 +357,30 @@ msgstr ""
|
|
361 |
"Guarda la clave API que has recibido por email, o consigue una en tu "
|
362 |
"%spágina de cuenta Imagify%s."
|
363 |
|
364 |
-
#: inc/admin/ui/notices.php:
|
365 |
msgid "I have my API key"
|
366 |
msgstr "Tengo mi clave API"
|
367 |
|
368 |
-
#: inc/admin/ui/notices.php:
|
369 |
msgid "Configure it"
|
370 |
msgstr "Configuralo"
|
371 |
|
372 |
-
#: inc/admin/ui/notices.php:
|
373 |
msgid ""
|
374 |
"It’s almost done! You have just to configure your optimization settings."
|
375 |
msgstr ""
|
376 |
"¡Casi está listo! Sólo te queda configurar tus ajustes de optimización."
|
377 |
|
378 |
-
#: inc/admin/ui/notices.php:
|
379 |
msgid "Go to Settings"
|
380 |
msgstr "Ve a la configuración"
|
381 |
|
382 |
-
#: inc/admin/ui/notices.php:
|
|
|
383 |
msgid "Your API key isn't valid!"
|
384 |
msgstr "¡Tu clave API no es válida!"
|
385 |
|
386 |
-
#: inc/admin/ui/notices.php:
|
387 |
#, php-format
|
388 |
msgid ""
|
389 |
"Go to your Imagify account page to get your API Key and specify it on "
|
@@ -394,7 +391,7 @@ msgstr ""
|
|
394 |
"en %1$stu configuración%3$s; si todavía no la tienes, %2$screa ahora una "
|
395 |
"cuenta gratuita%3$s."
|
396 |
|
397 |
-
#: inc/admin/ui/notices.php:
|
398 |
msgid ""
|
399 |
"The following plugins are not compatible with this plugin and may cause "
|
400 |
"unexpected results:"
|
@@ -402,15 +399,15 @@ msgstr ""
|
|
402 |
"Los plugin siguientes no son compatibles con este plugin y pueden causar "
|
403 |
"resultados inesperados:"
|
404 |
|
405 |
-
#: inc/admin/ui/notices.php:
|
406 |
msgid "Deactivate"
|
407 |
msgstr "Desactiva"
|
408 |
|
409 |
-
#: inc/admin/ui/notices.php:
|
410 |
msgid "The external HTTP requests are blocked!"
|
411 |
msgstr "¡Las solicitudes HTTP externas están bloqueadas!"
|
412 |
|
413 |
-
#: inc/admin/ui/notices.php:
|
414 |
msgid ""
|
415 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
416 |
"config.php</code> to block all external HTTP requests."
|
@@ -418,7 +415,7 @@ msgstr ""
|
|
418 |
"Has definido la constante <code>WP_HTTP_BLOCK_EXTERNAL</code> en <code>wp-"
|
419 |
"config.php</code> para bloquear las solicitudes HTTP externas."
|
420 |
|
421 |
-
#: inc/admin/ui/notices.php:
|
422 |
msgid ""
|
423 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
424 |
"config.php</code> file so that it works correctly."
|
@@ -426,24 +423,24 @@ msgstr ""
|
|
426 |
"Para optimizar tus imágenes, tienes que poner el siguiente código en tu "
|
427 |
"archivo <code>wp-config.php</code> para que funcione correctamente."
|
428 |
|
429 |
-
#: inc/admin/ui/notices.php:
|
430 |
msgid "Click on the field and press Ctrl-A to select all."
|
431 |
msgstr "Haz clic en el campo y pulse Ctrl-A para seleccionar todo."
|
432 |
|
433 |
-
#: inc/admin/ui/notices.php:
|
434 |
msgid "You're missing out!"
|
435 |
msgstr "¡Te lo estás perdiendo!"
|
436 |
|
437 |
-
#: inc/admin/ui/notices.php:
|
438 |
msgid "Use the List view to optimize images with Imagify."
|
439 |
msgstr "Utiliza la vista de lista para optimizar imágenes con Imagify."
|
440 |
|
441 |
-
#: inc/admin/ui/notices.php:
|
442 |
msgid "Switch to the List View"
|
443 |
msgstr "Cambia a la vista de lista"
|
444 |
|
445 |
-
#: inc/admin/ui/notices.php:
|
446 |
-
#: inc/functions/i18n.php:
|
447 |
#, php-format
|
448 |
msgid ""
|
449 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
@@ -452,20 +449,20 @@ msgstr ""
|
|
452 |
"Para seguir optimizando tus imágenes, inicia sesión en tu cuenta Imagify "
|
453 |
"para %scomprar un paquete o subscribir un plan %s."
|
454 |
|
455 |
-
#: inc/admin/ui/notices.php:
|
456 |
msgid "Discover the best caching plugin to speed up your website."
|
457 |
msgstr "Descubre el mejor plugin de caché para acelerar tu sitio Web."
|
458 |
|
459 |
-
#: inc/admin/ui/notices.php:
|
460 |
#, php-format
|
461 |
msgid "%sGet %s off%s with this coupon code:%s"
|
462 |
msgstr "Descuento del %s%s%s con este código de coupon:%s"
|
463 |
|
464 |
-
#: inc/admin/ui/notices.php:
|
465 |
msgid "Get WP Rocket now"
|
466 |
msgstr "Obten WP Rocket, ¡ya!"
|
467 |
|
468 |
-
#: inc/admin/ui/notices.php:
|
469 |
#, php-format
|
470 |
msgid ""
|
471 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
@@ -474,7 +471,7 @@ msgstr ""
|
|
474 |
"%1$s¡En hora buena!%2$s Has optimizado %1$s%3$d imágenes%2$s y ahora tu "
|
475 |
"sitio web es más rápido."
|
476 |
|
477 |
-
#: inc/admin/ui/notices.php:
|
478 |
#, php-format
|
479 |
msgid ""
|
480 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
@@ -491,7 +488,7 @@ msgstr "¿Tu sitio web es muy lento?"
|
|
491 |
msgid "API Key"
|
492 |
msgstr "Clave API"
|
493 |
|
494 |
-
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:
|
495 |
msgid "Your API key is valid."
|
496 |
msgstr "Tu clave API es válida."
|
497 |
|
@@ -698,7 +695,7 @@ msgstr ""
|
|
698 |
"aceptas perder algo de calidad en las imágenes."
|
699 |
|
700 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
701 |
-
#: inc/functions/admin-ui.php:
|
702 |
msgid "Close"
|
703 |
msgstr "Cierra"
|
704 |
|
@@ -726,17 +723,17 @@ msgstr "Nivel:"
|
|
726 |
|
727 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
728 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
729 |
-
#: inc/functions/i18n.php:
|
730 |
msgid "File Size:"
|
731 |
msgstr "Tamaño del archivo:"
|
732 |
|
733 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
734 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
735 |
-
#: inc/functions/i18n.php:
|
736 |
msgid "Original Saving:"
|
737 |
msgstr "Ahorro inicial:"
|
738 |
|
739 |
-
#: inc/admin/upload.php:42 inc/functions/i18n.php:
|
740 |
msgid "Unoptimized"
|
741 |
msgstr "No optimizado"
|
742 |
|
@@ -752,7 +749,7 @@ msgstr "Filtrar por estado"
|
|
752 |
msgid "All images"
|
753 |
msgstr "Todas las imágenes"
|
754 |
|
755 |
-
#: inc/classes/class-attachment.php:
|
756 |
msgid ""
|
757 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
758 |
"you want to optimize it."
|
@@ -812,228 +809,228 @@ msgstr "Re-optimiza a %s"
|
|
812 |
msgid "%s can't be optimized"
|
813 |
msgstr "%s no puede ser optimizado"
|
814 |
|
815 |
-
#: inc/functions/admin-ui.php:
|
816 |
msgid "What plan do I need?"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: inc/functions/admin-ui.php:
|
820 |
msgid "You're new to Imagify?"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: inc/functions/admin-ui.php:
|
824 |
msgid ""
|
825 |
"Let us help you by analyzing your existing images and determinate the best "
|
826 |
"plan for you"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: inc/functions/admin-ui.php:
|
830 |
msgid "Choose Plan"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: inc/functions/admin-ui.php:
|
834 |
msgid "Payment Info"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: inc/functions/admin-ui.php:
|
838 |
msgid "We analysed your images"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: inc/functions/admin-ui.php:
|
842 |
#, php-format
|
843 |
msgid "You have %s images"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: inc/functions/admin-ui.php:
|
847 |
#, php-format
|
848 |
msgid "You actually have %s of images in your library."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: inc/functions/admin-ui.php:
|
852 |
#, php-format
|
853 |
msgid "You upload around %s of images per month."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: inc/functions/admin-ui.php:
|
857 |
msgid "We recommend you this plan"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: inc/functions/admin-ui.php:
|
861 |
msgid "Subscribe a monthly plan"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/functions/admin-ui.php:
|
865 |
msgid "Subscribe a yearly plan"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc/functions/admin-ui.php:
|
869 |
-
#: inc/functions/admin-ui.php:
|
870 |
msgid "Monthly"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: inc/functions/admin-ui.php:
|
874 |
-
#: inc/functions/admin-ui.php:
|
875 |
msgid "Yearly"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: inc/functions/admin-ui.php:
|
879 |
-
#: inc/functions/admin-ui.php:
|
880 |
msgid "2 months free"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: inc/functions/admin-ui.php:
|
884 |
-
#: inc/functions/admin-ui.php:
|
885 |
msgid "/month"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: inc/functions/admin-ui.php:
|
889 |
-
#: inc/functions/admin-ui.php:
|
890 |
#, php-format
|
891 |
msgid "approx: %s images"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: inc/functions/admin-ui.php:
|
895 |
#, php-format
|
896 |
msgid ""
|
897 |
"%s per<br>\n"
|
898 |
"additionnal Gb"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: inc/functions/admin-ui.php:
|
902 |
-
#: inc/functions/admin-ui.php:
|
903 |
msgid "Choose another plan"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: inc/functions/admin-ui.php:
|
907 |
msgid "Optimize the images you already have, buy a one-time plan"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: inc/functions/admin-ui.php:
|
911 |
msgid "Checkout"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: inc/functions/admin-ui.php:
|
915 |
msgid ""
|
916 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
917 |
"happens automatically each month or year depending the billing period you "
|
918 |
"choose."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: inc/functions/admin-ui.php:
|
922 |
msgid "Monthly Plans"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: inc/functions/admin-ui.php:
|
926 |
msgid "One Time Plans"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: inc/functions/admin-ui.php:
|
930 |
msgid ""
|
931 |
"Monthly plans come with credits which is renewed every months. The billing "
|
932 |
"happens automatically each month or year depending the billing period you "
|
933 |
"choose."
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: inc/functions/admin-ui.php:
|
937 |
msgid "we recommend for you"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: inc/functions/admin-ui.php:
|
941 |
msgid "Choose plan"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: inc/functions/admin-ui.php:
|
945 |
msgid "Need more?"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: inc/functions/admin-ui.php:
|
949 |
msgid "for special needs"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: inc/functions/admin-ui.php:
|
953 |
msgid "Contact Us"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: inc/functions/admin-ui.php:
|
957 |
msgid ""
|
958 |
"One time plans are useful if you have a lots of existing images which need "
|
959 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
960 |
"You will pay only once."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/functions/admin-ui.php:
|
964 |
msgid "Your order"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: inc/functions/admin-ui.php:
|
968 |
#, php-format
|
969 |
msgid "%scancel%sYou just removed %s"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/functions/admin-ui.php:
|
973 |
msgid "Remove this item"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/functions/admin-ui.php:
|
977 |
#, php-format
|
978 |
msgid "%s per month"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: inc/functions/admin-ui.php:
|
982 |
#, php-format
|
983 |
msgid "one time %s"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: inc/functions/admin-ui.php:
|
987 |
#, php-format
|
988 |
msgid ""
|
989 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
990 |
"per year!</strong>"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: inc/functions/admin-ui.php:
|
994 |
#, php-format
|
995 |
msgid ""
|
996 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
997 |
"strong>"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: inc/functions/admin-ui.php:
|
1001 |
msgid "Thank you for being awesome!"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: inc/functions/admin-ui.php:
|
1005 |
msgid "What do our user think about Imagify"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: inc/functions/admin-ui.php:
|
1009 |
msgid "Secure Credit Card Payment"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: inc/functions/admin-ui.php:
|
1013 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: inc/functions/i18n.php:
|
1017 |
msgid "Let's get you started!"
|
1018 |
msgstr "¡Vamos a comenzar!"
|
1019 |
|
1020 |
-
#: inc/functions/i18n.php:
|
1021 |
msgid "Enter your email to get an API key:"
|
1022 |
msgstr "Ingresa tu email para obtener un clave API:"
|
1023 |
|
1024 |
-
#: inc/functions/i18n.php:
|
1025 |
msgid "Sign Up"
|
1026 |
msgstr "Registrate"
|
1027 |
|
1028 |
-
#: inc/functions/i18n.php:
|
1029 |
msgid "You need to specify an email!"
|
1030 |
msgstr "¡Es necesario especificar una dirección email!"
|
1031 |
|
1032 |
-
#: inc/functions/i18n.php:
|
1033 |
msgid "Congratulations!"
|
1034 |
msgstr "¡Enhorabuena!"
|
1035 |
|
1036 |
-
#: inc/functions/i18n.php:
|
1037 |
msgid ""
|
1038 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1039 |
"are going to receive an email with API key."
|
@@ -1041,23 +1038,27 @@ msgstr ""
|
|
1041 |
"Tu cuenta ha sido creada con éxito. Por favor, revisa tu buzón de correo, "
|
1042 |
"recibirás un email con la clave API."
|
1043 |
|
1044 |
-
#: inc/functions/i18n.php:
|
1045 |
msgid "Connect to Imagify!"
|
1046 |
msgstr "¡Conéctate a Imagify!"
|
1047 |
|
1048 |
-
#: inc/functions/i18n.php:
|
1049 |
msgid "Paste your API key below:"
|
1050 |
msgstr "Pega aquí abajo tu clave API:"
|
1051 |
|
1052 |
-
#: inc/functions/i18n.php:
|
1053 |
msgid "Connect me"
|
1054 |
msgstr "Conéctame"
|
1055 |
|
1056 |
-
#: inc/functions/i18n.php:
|
1057 |
msgid "Check in progress..."
|
1058 |
msgstr "Control en curso…"
|
1059 |
|
1060 |
#: inc/functions/i18n.php:30
|
|
|
|
|
|
|
|
|
1061 |
msgid ""
|
1062 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1063 |
"optimize your images."
|
@@ -1065,15 +1066,15 @@ msgstr ""
|
|
1065 |
"Tu clave API es válida. Ahora puedes configurar los parámetros de Imagify "
|
1066 |
"para optimizar tus imágenes."
|
1067 |
|
1068 |
-
#: inc/functions/i18n.php:
|
1069 |
msgid "Cancel"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: inc/functions/i18n.php:
|
1073 |
msgid "Don't Need a Parachute?"
|
1074 |
msgstr "¿No necesitas un paracaídas?"
|
1075 |
|
1076 |
-
#: inc/functions/i18n.php:
|
1077 |
msgid ""
|
1078 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1079 |
"images to another compression level and restore your original images in case "
|
@@ -1083,19 +1084,19 @@ msgstr ""
|
|
1083 |
"otro nivel de compresión ni restablecer la imagen original en caso de "
|
1084 |
"necesidad."
|
1085 |
|
1086 |
-
#: inc/functions/i18n.php:
|
1087 |
msgid "Original Image"
|
1088 |
msgstr "Imagen original"
|
1089 |
|
1090 |
-
#: inc/functions/i18n.php:
|
1091 |
msgid "Optimized Image"
|
1092 |
msgstr "Imagen optimizada"
|
1093 |
|
1094 |
-
#: inc/functions/i18n.php:
|
1095 |
msgid "Please wait..."
|
1096 |
msgstr "Espera, por favor…"
|
1097 |
|
1098 |
-
#: inc/functions/i18n.php:
|
1099 |
msgid ""
|
1100 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1101 |
"the number of images."
|
@@ -1103,11 +1104,11 @@ msgstr ""
|
|
1103 |
"Estamos tratando de obtener tus imágenes no optimizadas: esto puede tomar "
|
1104 |
"tiempo, dependiendo del número de imágenes."
|
1105 |
|
1106 |
-
#: inc/functions/i18n.php:
|
1107 |
msgid "Oops, There is something wrong!"
|
1108 |
msgstr "Ups, algo no ha ido bien!"
|
1109 |
|
1110 |
-
#: inc/functions/i18n.php:
|
1111 |
msgid ""
|
1112 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1113 |
"Try again and if the issue still persist, please contact us!"
|
@@ -1116,19 +1117,19 @@ msgstr ""
|
|
1116 |
"imágenes no optimizadas. Inténtalo otra vez y, si el problema persiste, "
|
1117 |
"contáctanos por favor!"
|
1118 |
|
1119 |
-
#: inc/functions/i18n.php:
|
1120 |
msgid "Error"
|
1121 |
msgstr "Error"
|
1122 |
|
1123 |
-
#: inc/functions/i18n.php:
|
1124 |
msgid "Hold on!"
|
1125 |
msgstr "¡Espera!"
|
1126 |
|
1127 |
-
#: inc/functions/i18n.php:
|
1128 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1129 |
msgstr "Todas tus imágenes han sido optimizadas por Imagify. ¡Enhorabuena!"
|
1130 |
|
1131 |
-
#: inc/functions/i18n.php:
|
1132 |
#, php-format
|
1133 |
msgid ""
|
1134 |
"Discover @imagify, the new compression tool to optimize your images for "
|
@@ -1137,15 +1138,15 @@ msgstr ""
|
|
1137 |
"Descubre @imagify, la nueva herramienta de compresión para optimizar tus "
|
1138 |
"imágenes gratuitamente. Me ha ahorrado %1$s de %2$s!"
|
1139 |
|
1140 |
-
#: inc/functions/i18n.php:
|
1141 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1142 |
msgstr "Imagify sigue procesando. Estás seguro que quieres dejar la página?"
|
1143 |
|
1144 |
-
#: inc/functions/i18n.php:
|
1145 |
msgid "F j, Y"
|
1146 |
msgstr "F j, Y"
|
1147 |
|
1148 |
-
#: inc/functions/process.php:
|
1149 |
msgid ""
|
1150 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1151 |
"couple of minutes."
|
@@ -1153,48 +1154,29 @@ msgstr ""
|
|
1153 |
"Lo sentimos, nuestros servidores están temporalmente inaccesibles. Por "
|
1154 |
"favor, inténtalo de nuevo en un par de minutos."
|
1155 |
|
1156 |
-
#: inc/functions/process.php:
|
1157 |
msgid "External HTTP requests are blocked"
|
1158 |
msgstr "Las peticiones HTTP externas están bloqueadas"
|
1159 |
|
1160 |
-
#: inc/functions/process.php:
|
1161 |
msgid "File path is empty"
|
1162 |
msgstr "La ruta del archivo está vacía"
|
1163 |
|
1164 |
-
#: inc/functions/process.php:
|
1165 |
#, php-format
|
1166 |
msgid "Could not find %s"
|
1167 |
msgstr "No se pudo encontrar %s"
|
1168 |
|
1169 |
-
#: inc/functions/process.php:
|
1170 |
#, php-format
|
1171 |
msgid "%s is not writable"
|
1172 |
msgstr "%s no tiene permisos de escritura"
|
1173 |
|
1174 |
-
#: inc/functions/process.php:
|
1175 |
#, php-format
|
1176 |
msgid "Skipped (%s), image not found."
|
1177 |
msgstr "Omitido (%s), imagen no encontrada."
|
1178 |
|
1179 |
-
#. Plugin URI of the plugin/theme
|
1180 |
-
msgid "https://wordpress.org/plugins/imagify/"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#. Description of the plugin/theme
|
1184 |
-
msgid ""
|
1185 |
-
"Dramaticaly reduce image file sizes without losing quality, make your "
|
1186 |
-
"website load faster, boost your SEO and save money on your bandwith using "
|
1187 |
-
"Imagify, the new most advanced image optimization tool."
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#. Author of the plugin/theme
|
1191 |
-
msgid "WP Media"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#. Author URI of the plugin/theme
|
1195 |
-
msgid "http://wp-media.me"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
#~ msgid "Your default setting:"
|
1199 |
#~ msgstr "Tu configuración por defecto:"
|
1200 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
+
"POT-Creation-Date: 2016-09-23 10:03-0500\n"
|
5 |
+
"PO-Revision-Date: 2016-09-23 11:02-0500\n"
|
6 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
|
25 |
+
#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
|
26 |
+
#: inc/functions/i18n.php:64
|
27 |
msgid "Optimize"
|
28 |
msgstr "Optimizar"
|
29 |
|
30 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
31 |
+
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
|
32 |
msgid "Restore Original"
|
33 |
msgstr "Recuperar tamaño original"
|
34 |
|
41 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
|
42 |
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
|
43 |
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
|
44 |
+
#: inc/functions/admin-ui.php:205 inc/functions/admin-ui.php:215
|
45 |
msgid "Optimizing..."
|
46 |
msgstr "Optimizando…"
|
47 |
|
48 |
+
#: inc/admin/ajax.php:507
|
49 |
msgid "Oops, It's almost over!"
|
50 |
msgstr "¡Ya casi está!"
|
51 |
|
52 |
+
#: inc/admin/ajax.php:508
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
58 |
"Ya has utilizado casi todo tu crédito.%sNo olvides ampliar tu suscripción "
|
59 |
"para poder seguir optimizando tus imágenes."
|
60 |
|
61 |
+
#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
|
62 |
msgid "View My Subscription"
|
63 |
msgstr "Ver mi suscripción"
|
64 |
|
65 |
+
#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
|
66 |
+
#: inc/functions/i18n.php:84
|
67 |
msgid "Oops, It's Over!"
|
68 |
msgstr "¡Ya está!"
|
69 |
|
70 |
+
#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
|
71 |
+
#: inc/functions/i18n.php:101
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
77 |
"Has consumido todo tu crédito para este mes. Volverás a tener <strong>%s el "
|
78 |
"%s</strong>."
|
79 |
|
80 |
+
#: inc/admin/ajax.php:519
|
81 |
msgid "Upgrade My Subscription"
|
82 |
msgstr "Actualizar mi suscripción"
|
83 |
|
84 |
+
#: inc/admin/ajax.php:538 inc/admin/ui/bulk.php:17
|
85 |
msgid "Account status"
|
86 |
msgstr "Estado de mi cuenta"
|
87 |
|
88 |
+
#: inc/admin/ajax.php:539 inc/admin/ui/bulk.php:18
|
89 |
msgid "Your subscription:"
|
90 |
msgstr "Tu suscripción:"
|
91 |
|
92 |
+
#: inc/admin/ajax.php:547 inc/admin/ui/bulk.php:48
|
93 |
#, php-format
|
94 |
msgid "You have %s space credit left"
|
95 |
msgstr "Te queda un saldo de %s"
|
96 |
|
97 |
+
#: inc/admin/ajax.php:559
|
98 |
msgid "View my subscription"
|
99 |
msgstr "Ver mi suscripción"
|
100 |
|
101 |
+
#: inc/admin/media.php:63 inc/functions/i18n.php:60
|
102 |
msgid "Compare Original VS Optimized"
|
103 |
msgstr "Compara original VS optimizada"
|
104 |
|
|
|
105 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
106 |
#: inc/admin/upload.php:12
|
107 |
msgid "Imagify"
|
115 |
msgid "Check your Settings"
|
116 |
msgstr "Comprueba tu configuración"
|
117 |
|
118 |
+
#: inc/admin/options.php:119
|
119 |
msgid "Cheatin’ uh?"
|
120 |
msgstr "Haciendo trampa ¿Uh?"
|
121 |
|
122 |
+
#: inc/admin/options.php:127
|
123 |
msgid "<strong>ERROR</strong>: options page not found."
|
124 |
msgstr "<strong>ERROR</strong>: página de opciones no encontrada."
|
125 |
|
246 |
|
247 |
#: inc/admin/ui/bulk.php:220
|
248 |
#, php-format
|
249 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
|
|
|
|
250 |
msgstr ""
|
251 |
+
"Todas las imágenes superiores a %s se pueden optimizar usando un plan de pago"
|
|
|
252 |
|
253 |
#: inc/admin/ui/bulk.php:239
|
254 |
msgid "Well done!"
|
280 |
msgid "Original"
|
281 |
msgstr "Original"
|
282 |
|
283 |
+
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
|
284 |
msgid "Optimized"
|
285 |
msgstr "Optimizado"
|
286 |
|
317 |
msgid "%sStart the bulk optimization%s"
|
318 |
msgstr "%sEmpieza la optimización masiva%s"
|
319 |
|
320 |
+
#: inc/admin/ui/notices.php:24
|
321 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
322 |
msgstr ""
|
323 |
"¡Bienvenido a Imagify, la mejor manera de optimizar fácilmente tus imágenes!"
|
324 |
|
325 |
+
#: inc/admin/ui/notices.php:26 inc/admin/ui/notices.php:92
|
326 |
+
#: inc/admin/ui/notices.php:186 inc/admin/ui/notices.php:223
|
327 |
+
#: inc/admin/ui/notices.php:263 inc/admin/ui/notices.php:370
|
328 |
msgid "Dismiss this notice"
|
329 |
msgstr "Descarta este aviso"
|
330 |
|
331 |
+
#: inc/admin/ui/notices.php:33
|
332 |
msgid "Create an Account"
|
333 |
msgstr "Crea una cuenta"
|
334 |
|
335 |
+
#: inc/admin/ui/notices.php:34
|
336 |
msgid ""
|
337 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
338 |
"account in a few seconds!"
|
340 |
"¿Todavía no tienes una cuenta Imagify? Optimiza tus imágenes creando una "
|
341 |
"cuenta en unos segundos!"
|
342 |
|
343 |
+
#: inc/admin/ui/notices.php:37
|
344 |
msgid "Sign up, It's FREE!"
|
345 |
msgstr "Regístrate, ¡es GRATIS!"
|
346 |
|
347 |
+
#: inc/admin/ui/notices.php:43
|
348 |
msgid "Enter your API Key"
|
349 |
msgstr "Ingresa tu clave API"
|
350 |
|
351 |
+
#: inc/admin/ui/notices.php:44
|
352 |
#, php-format
|
353 |
msgid ""
|
354 |
"Save your API Key you have received by email or you can get it on your "
|
357 |
"Guarda la clave API que has recibido por email, o consigue una en tu "
|
358 |
"%spágina de cuenta Imagify%s."
|
359 |
|
360 |
+
#: inc/admin/ui/notices.php:47
|
361 |
msgid "I have my API key"
|
362 |
msgstr "Tengo mi clave API"
|
363 |
|
364 |
+
#: inc/admin/ui/notices.php:53
|
365 |
msgid "Configure it"
|
366 |
msgstr "Configuralo"
|
367 |
|
368 |
+
#: inc/admin/ui/notices.php:54
|
369 |
msgid ""
|
370 |
"It’s almost done! You have just to configure your optimization settings."
|
371 |
msgstr ""
|
372 |
"¡Casi está listo! Sólo te queda configurar tus ajustes de optimización."
|
373 |
|
374 |
+
#: inc/admin/ui/notices.php:55
|
375 |
msgid "Go to Settings"
|
376 |
msgstr "Ve a la configuración"
|
377 |
|
378 |
+
#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
|
379 |
+
#: inc/functions/i18n.php:78
|
380 |
msgid "Your API key isn't valid!"
|
381 |
msgstr "¡Tu clave API no es válida!"
|
382 |
|
383 |
+
#: inc/admin/ui/notices.php:90
|
384 |
#, php-format
|
385 |
msgid ""
|
386 |
"Go to your Imagify account page to get your API Key and specify it on "
|
391 |
"en %1$stu configuración%3$s; si todavía no la tienes, %2$screa ahora una "
|
392 |
"cuenta gratuita%3$s."
|
393 |
|
394 |
+
#: inc/admin/ui/notices.php:142
|
395 |
msgid ""
|
396 |
"The following plugins are not compatible with this plugin and may cause "
|
397 |
"unexpected results:"
|
399 |
"Los plugin siguientes no son compatibles con este plugin y pueden causar "
|
400 |
"resultados inesperados:"
|
401 |
|
402 |
+
#: inc/admin/ui/notices.php:148
|
403 |
msgid "Deactivate"
|
404 |
msgstr "Desactiva"
|
405 |
|
406 |
+
#: inc/admin/ui/notices.php:178
|
407 |
msgid "The external HTTP requests are blocked!"
|
408 |
msgstr "¡Las solicitudes HTTP externas están bloqueadas!"
|
409 |
|
410 |
+
#: inc/admin/ui/notices.php:179
|
411 |
msgid ""
|
412 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
413 |
"config.php</code> to block all external HTTP requests."
|
415 |
"Has definido la constante <code>WP_HTTP_BLOCK_EXTERNAL</code> en <code>wp-"
|
416 |
"config.php</code> para bloquear las solicitudes HTTP externas."
|
417 |
|
418 |
+
#: inc/admin/ui/notices.php:181
|
419 |
msgid ""
|
420 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
421 |
"config.php</code> file so that it works correctly."
|
423 |
"Para optimizar tus imágenes, tienes que poner el siguiente código en tu "
|
424 |
"archivo <code>wp-config.php</code> para que funcione correctamente."
|
425 |
|
426 |
+
#: inc/admin/ui/notices.php:182
|
427 |
msgid "Click on the field and press Ctrl-A to select all."
|
428 |
msgstr "Haz clic en el campo y pulse Ctrl-A para seleccionar todo."
|
429 |
|
430 |
+
#: inc/admin/ui/notices.php:219
|
431 |
msgid "You're missing out!"
|
432 |
msgstr "¡Te lo estás perdiendo!"
|
433 |
|
434 |
+
#: inc/admin/ui/notices.php:220
|
435 |
msgid "Use the List view to optimize images with Imagify."
|
436 |
msgstr "Utiliza la vista de lista para optimizar imágenes con Imagify."
|
437 |
|
438 |
+
#: inc/admin/ui/notices.php:221
|
439 |
msgid "Switch to the List View"
|
440 |
msgstr "Cambia a la vista de lista"
|
441 |
|
442 |
+
#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
|
443 |
+
#: inc/functions/i18n.php:101
|
444 |
#, php-format
|
445 |
msgid ""
|
446 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
449 |
"Para seguir optimizando tus imágenes, inicia sesión en tu cuenta Imagify "
|
450 |
"para %scomprar un paquete o subscribir un plan %s."
|
451 |
|
452 |
+
#: inc/admin/ui/notices.php:314 inc/admin/ui/options.php:28
|
453 |
msgid "Discover the best caching plugin to speed up your website."
|
454 |
msgstr "Descubre el mejor plugin de caché para acelerar tu sitio Web."
|
455 |
|
456 |
+
#: inc/admin/ui/notices.php:317 inc/admin/ui/options.php:36
|
457 |
#, php-format
|
458 |
msgid "%sGet %s off%s with this coupon code:%s"
|
459 |
msgstr "Descuento del %s%s%s con este código de coupon:%s"
|
460 |
|
461 |
+
#: inc/admin/ui/notices.php:326 inc/admin/ui/options.php:41
|
462 |
msgid "Get WP Rocket now"
|
463 |
msgstr "Obten WP Rocket, ¡ya!"
|
464 |
|
465 |
+
#: inc/admin/ui/notices.php:363
|
466 |
#, php-format
|
467 |
msgid ""
|
468 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
471 |
"%1$s¡En hora buena!%2$s Has optimizado %1$s%3$d imágenes%2$s y ahora tu "
|
472 |
"sitio web es más rápido."
|
473 |
|
474 |
+
#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
|
475 |
#, php-format
|
476 |
msgid ""
|
477 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
488 |
msgid "API Key"
|
489 |
msgstr "Clave API"
|
490 |
|
491 |
+
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
|
492 |
msgid "Your API key is valid."
|
493 |
msgstr "Tu clave API es válida."
|
494 |
|
695 |
"aceptas perder algo de calidad en las imágenes."
|
696 |
|
697 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
698 |
+
#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
|
699 |
msgid "Close"
|
700 |
msgstr "Cierra"
|
701 |
|
723 |
|
724 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
725 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
726 |
+
#: inc/functions/i18n.php:62
|
727 |
msgid "File Size:"
|
728 |
msgstr "Tamaño del archivo:"
|
729 |
|
730 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
731 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
732 |
+
#: inc/functions/i18n.php:63
|
733 |
msgid "Original Saving:"
|
734 |
msgstr "Ahorro inicial:"
|
735 |
|
736 |
+
#: inc/admin/upload.php:42 inc/functions/i18n.php:81
|
737 |
msgid "Unoptimized"
|
738 |
msgstr "No optimizado"
|
739 |
|
749 |
msgid "All images"
|
750 |
msgstr "Todas las imágenes"
|
751 |
|
752 |
+
#: inc/classes/class-attachment.php:297
|
753 |
msgid ""
|
754 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
755 |
"you want to optimize it."
|
809 |
msgid "%s can't be optimized"
|
810 |
msgstr "%s no puede ser optimizado"
|
811 |
|
812 |
+
#: inc/functions/admin-ui.php:240
|
813 |
msgid "What plan do I need?"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: inc/functions/admin-ui.php:244
|
817 |
msgid "You're new to Imagify?"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: inc/functions/admin-ui.php:245
|
821 |
msgid ""
|
822 |
"Let us help you by analyzing your existing images and determinate the best "
|
823 |
"plan for you"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: inc/functions/admin-ui.php:280
|
827 |
msgid "Choose Plan"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/functions/admin-ui.php:281
|
831 |
msgid "Payment Info"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: inc/functions/admin-ui.php:286
|
835 |
msgid "We analysed your images"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: inc/functions/admin-ui.php:292
|
839 |
#, php-format
|
840 |
msgid "You have %s images"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: inc/functions/admin-ui.php:298
|
844 |
#, php-format
|
845 |
msgid "You actually have %s of images in your library."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/functions/admin-ui.php:302
|
849 |
#, php-format
|
850 |
msgid "You upload around %s of images per month."
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: inc/functions/admin-ui.php:309
|
854 |
msgid "We recommend you this plan"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: inc/functions/admin-ui.php:314
|
858 |
msgid "Subscribe a monthly plan"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: inc/functions/admin-ui.php:315
|
862 |
msgid "Subscribe a yearly plan"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
|
866 |
+
#: inc/functions/admin-ui.php:623
|
867 |
msgid "Monthly"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
|
871 |
+
#: inc/functions/admin-ui.php:626
|
872 |
msgid "Yearly"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
|
876 |
+
#: inc/functions/admin-ui.php:626
|
877 |
msgid "2 months free"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/functions/admin-ui.php:333 inc/functions/admin-ui.php:352
|
881 |
+
#: inc/functions/admin-ui.php:468 inc/functions/admin-ui.php:478
|
882 |
msgid "/month"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: inc/functions/admin-ui.php:335 inc/functions/admin-ui.php:383
|
886 |
+
#: inc/functions/admin-ui.php:470 inc/functions/admin-ui.php:521
|
887 |
#, php-format
|
888 |
msgid "approx: %s images"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: inc/functions/admin-ui.php:356 inc/functions/admin-ui.php:484
|
892 |
#, php-format
|
893 |
msgid ""
|
894 |
"%s per<br>\n"
|
895 |
"additionnal Gb"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: inc/functions/admin-ui.php:361 inc/functions/admin-ui.php:396
|
899 |
+
#: inc/functions/admin-ui.php:580 inc/functions/admin-ui.php:601
|
900 |
msgid "Choose another plan"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: inc/functions/admin-ui.php:371
|
904 |
msgid "Optimize the images you already have, buy a one-time plan"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: inc/functions/admin-ui.php:407
|
908 |
msgid "Checkout"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: inc/functions/admin-ui.php:411
|
912 |
msgid ""
|
913 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
914 |
"happens automatically each month or year depending the billing period you "
|
915 |
"choose."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: inc/functions/admin-ui.php:435
|
919 |
msgid "Monthly Plans"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: inc/functions/admin-ui.php:440
|
923 |
msgid "One Time Plans"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: inc/functions/admin-ui.php:450
|
927 |
msgid ""
|
928 |
"Monthly plans come with credits which is renewed every months. The billing "
|
929 |
"happens automatically each month or year depending the billing period you "
|
930 |
"choose."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: inc/functions/admin-ui.php:482 inc/functions/admin-ui.php:529
|
934 |
msgid "we recommend for you"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: inc/functions/admin-ui.php:490 inc/functions/admin-ui.php:533
|
938 |
msgid "Choose plan"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: inc/functions/admin-ui.php:498
|
942 |
msgid "Need more?"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: inc/functions/admin-ui.php:499
|
946 |
msgid "for special needs"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: inc/functions/admin-ui.php:503
|
950 |
msgid "Contact Us"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: inc/functions/admin-ui.php:510
|
954 |
msgid ""
|
955 |
"One time plans are useful if you have a lots of existing images which need "
|
956 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
957 |
"You will pay only once."
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: inc/functions/admin-ui.php:563
|
961 |
msgid "Your order"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: inc/functions/admin-ui.php:568
|
965 |
#, php-format
|
966 |
msgid "%scancel%sYou just removed %s"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: inc/functions/admin-ui.php:576 inc/functions/admin-ui.php:597
|
970 |
msgid "Remove this item"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: inc/functions/admin-ui.php:583
|
974 |
#, php-format
|
975 |
msgid "%s per month"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: inc/functions/admin-ui.php:604
|
979 |
#, php-format
|
980 |
msgid "one time %s"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: inc/functions/admin-ui.php:617
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
987 |
"per year!</strong>"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: inc/functions/admin-ui.php:618
|
991 |
#, php-format
|
992 |
msgid ""
|
993 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
994 |
"strong>"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/functions/admin-ui.php:657
|
998 |
msgid "Thank you for being awesome!"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: inc/functions/admin-ui.php:668
|
1002 |
msgid "What do our user think about Imagify"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: inc/functions/admin-ui.php:702
|
1006 |
msgid "Secure Credit Card Payment"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: inc/functions/admin-ui.php:703
|
1010 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: inc/functions/i18n.php:20
|
1014 |
msgid "Let's get you started!"
|
1015 |
msgstr "¡Vamos a comenzar!"
|
1016 |
|
1017 |
+
#: inc/functions/i18n.php:21
|
1018 |
msgid "Enter your email to get an API key:"
|
1019 |
msgstr "Ingresa tu email para obtener un clave API:"
|
1020 |
|
1021 |
+
#: inc/functions/i18n.php:22
|
1022 |
msgid "Sign Up"
|
1023 |
msgstr "Registrate"
|
1024 |
|
1025 |
+
#: inc/functions/i18n.php:23
|
1026 |
msgid "You need to specify an email!"
|
1027 |
msgstr "¡Es necesario especificar una dirección email!"
|
1028 |
|
1029 |
+
#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
|
1030 |
msgid "Congratulations!"
|
1031 |
msgstr "¡Enhorabuena!"
|
1032 |
|
1033 |
+
#: inc/functions/i18n.php:25
|
1034 |
msgid ""
|
1035 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1036 |
"are going to receive an email with API key."
|
1038 |
"Tu cuenta ha sido creada con éxito. Por favor, revisa tu buzón de correo, "
|
1039 |
"recibirás un email con la clave API."
|
1040 |
|
1041 |
+
#: inc/functions/i18n.php:26
|
1042 |
msgid "Connect to Imagify!"
|
1043 |
msgstr "¡Conéctate a Imagify!"
|
1044 |
|
1045 |
+
#: inc/functions/i18n.php:27
|
1046 |
msgid "Paste your API key below:"
|
1047 |
msgstr "Pega aquí abajo tu clave API:"
|
1048 |
|
1049 |
+
#: inc/functions/i18n.php:28
|
1050 |
msgid "Connect me"
|
1051 |
msgstr "Conéctame"
|
1052 |
|
1053 |
+
#: inc/functions/i18n.php:29
|
1054 |
msgid "Check in progress..."
|
1055 |
msgstr "Control en curso…"
|
1056 |
|
1057 |
#: inc/functions/i18n.php:30
|
1058 |
+
msgid "You need to specify your api key!"
|
1059 |
+
msgstr "¡Es necesario especificar una clave api!"
|
1060 |
+
|
1061 |
+
#: inc/functions/i18n.php:32
|
1062 |
msgid ""
|
1063 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1064 |
"optimize your images."
|
1066 |
"Tu clave API es válida. Ahora puedes configurar los parámetros de Imagify "
|
1067 |
"para optimizar tus imágenes."
|
1068 |
|
1069 |
+
#: inc/functions/i18n.php:34
|
1070 |
msgid "Cancel"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: inc/functions/i18n.php:41
|
1074 |
msgid "Don't Need a Parachute?"
|
1075 |
msgstr "¿No necesitas un paracaídas?"
|
1076 |
|
1077 |
+
#: inc/functions/i18n.php:42
|
1078 |
msgid ""
|
1079 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1080 |
"images to another compression level and restore your original images in case "
|
1084 |
"otro nivel de compresión ni restablecer la imagen original en caso de "
|
1085 |
"necesidad."
|
1086 |
|
1087 |
+
#: inc/functions/i18n.php:58
|
1088 |
msgid "Original Image"
|
1089 |
msgstr "Imagen original"
|
1090 |
|
1091 |
+
#: inc/functions/i18n.php:59
|
1092 |
msgid "Optimized Image"
|
1093 |
msgstr "Imagen optimizada"
|
1094 |
|
1095 |
+
#: inc/functions/i18n.php:73
|
1096 |
msgid "Please wait..."
|
1097 |
msgstr "Espera, por favor…"
|
1098 |
|
1099 |
+
#: inc/functions/i18n.php:74
|
1100 |
msgid ""
|
1101 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1102 |
"the number of images."
|
1104 |
"Estamos tratando de obtener tus imágenes no optimizadas: esto puede tomar "
|
1105 |
"tiempo, dependiendo del número de imágenes."
|
1106 |
|
1107 |
+
#: inc/functions/i18n.php:76
|
1108 |
msgid "Oops, There is something wrong!"
|
1109 |
msgstr "Ups, algo no ha ido bien!"
|
1110 |
|
1111 |
+
#: inc/functions/i18n.php:77
|
1112 |
msgid ""
|
1113 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1114 |
"Try again and if the issue still persist, please contact us!"
|
1117 |
"imágenes no optimizadas. Inténtalo otra vez y, si el problema persiste, "
|
1118 |
"contáctanos por favor!"
|
1119 |
|
1120 |
+
#: inc/functions/i18n.php:82
|
1121 |
msgid "Error"
|
1122 |
msgstr "Error"
|
1123 |
|
1124 |
+
#: inc/functions/i18n.php:85
|
1125 |
msgid "Hold on!"
|
1126 |
msgstr "¡Espera!"
|
1127 |
|
1128 |
+
#: inc/functions/i18n.php:86
|
1129 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1130 |
msgstr "Todas tus imágenes han sido optimizadas por Imagify. ¡Enhorabuena!"
|
1131 |
|
1132 |
+
#: inc/functions/i18n.php:88
|
1133 |
#, php-format
|
1134 |
msgid ""
|
1135 |
"Discover @imagify, the new compression tool to optimize your images for "
|
1138 |
"Descubre @imagify, la nueva herramienta de compresión para optimizar tus "
|
1139 |
"imágenes gratuitamente. Me ha ahorrado %1$s de %2$s!"
|
1140 |
|
1141 |
+
#: inc/functions/i18n.php:92
|
1142 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1143 |
msgstr "Imagify sigue procesando. Estás seguro que quieres dejar la página?"
|
1144 |
|
1145 |
+
#: inc/functions/i18n.php:101
|
1146 |
msgid "F j, Y"
|
1147 |
msgstr "F j, Y"
|
1148 |
|
1149 |
+
#: inc/functions/process.php:40
|
1150 |
msgid ""
|
1151 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1152 |
"couple of minutes."
|
1154 |
"Lo sentimos, nuestros servidores están temporalmente inaccesibles. Por "
|
1155 |
"favor, inténtalo de nuevo en un par de minutos."
|
1156 |
|
1157 |
+
#: inc/functions/process.php:46
|
1158 |
msgid "External HTTP requests are blocked"
|
1159 |
msgstr "Las peticiones HTTP externas están bloqueadas"
|
1160 |
|
1161 |
+
#: inc/functions/process.php:52
|
1162 |
msgid "File path is empty"
|
1163 |
msgstr "La ruta del archivo está vacía"
|
1164 |
|
1165 |
+
#: inc/functions/process.php:58
|
1166 |
#, php-format
|
1167 |
msgid "Could not find %s"
|
1168 |
msgstr "No se pudo encontrar %s"
|
1169 |
|
1170 |
+
#: inc/functions/process.php:63
|
1171 |
#, php-format
|
1172 |
msgid "%s is not writable"
|
1173 |
msgstr "%s no tiene permisos de escritura"
|
1174 |
|
1175 |
+
#: inc/functions/process.php:72
|
1176 |
#, php-format
|
1177 |
msgid "Skipped (%s), image not found."
|
1178 |
msgstr "Omitido (%s), imagen no encontrada."
|
1179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1180 |
#~ msgid "Your default setting:"
|
1181 |
#~ msgstr "Tu configuración por defecto:"
|
1182 |
|
languages/imagify-fr_FR.mo
CHANGED
Binary file
|
languages/imagify-fr_FR.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
-
"Last-Translator:
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
@@ -17,22 +17,24 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
|
|
22 |
|
23 |
-
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
-
#: inc/admin/
|
25 |
-
#: inc/functions/
|
|
|
26 |
msgid "Optimize"
|
27 |
msgstr "Optimiser"
|
28 |
|
29 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
30 |
-
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:
|
31 |
msgid "Restore Original"
|
32 |
msgstr "Restaurer l’original"
|
33 |
|
34 |
#: inc/3rd-party/nextgen-gallery/inc/admin/menu.php:16 inc/admin/menu.php:24
|
35 |
-
#: inc/admin/plugins.php:13 inc/admin/ui/bulk.php:81
|
|
|
36 |
msgid "Bulk Optimization"
|
37 |
msgstr "Optimisation en masse"
|
38 |
|
@@ -53,18 +55,20 @@ msgid ""
|
|
53 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
54 |
"subscription to continue optimizing your images."
|
55 |
msgstr ""
|
56 |
-
"Vous avez bientôt utilisé tout votre crédit.%sN’oubliez pas de mettre à
|
57 |
-
"votre abonnement pour continuer à optimiser vos images."
|
58 |
|
59 |
#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
|
60 |
msgid "View My Subscription"
|
61 |
msgstr "Voir mon abonnement"
|
62 |
|
63 |
-
#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
|
|
|
64 |
msgid "Oops, It's Over!"
|
65 |
msgstr "Oups, c’est fini !"
|
66 |
|
67 |
-
#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
|
|
|
68 |
#, php-format
|
69 |
msgid ""
|
70 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
@@ -94,11 +98,10 @@ msgstr "Il vous reste %s de crédit"
|
|
94 |
msgid "View my subscription"
|
95 |
msgstr "Voir mon abonnement"
|
96 |
|
97 |
-
#: inc/admin/media.php:63 inc/functions/i18n.php:
|
98 |
msgid "Compare Original VS Optimized"
|
99 |
msgstr "Comparer Originale VS Optimisée"
|
100 |
|
101 |
-
#. Plugin Name of the plugin/theme
|
102 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
103 |
#: inc/admin/upload.php:12
|
104 |
msgid "Imagify"
|
@@ -178,20 +181,20 @@ msgstr ""
|
|
178 |
#: inc/admin/ui/bulk.php:149
|
179 |
#, php-format
|
180 |
msgid ""
|
181 |
-
"If you have more than %s images, you will need to launch the bulk
|
182 |
-
"several times."
|
183 |
msgstr ""
|
184 |
"Si vous avez plus de %s images, vous devrez lancer l’optimisation en masse "
|
185 |
"plusieurs fois."
|
186 |
|
187 |
#: inc/admin/ui/bulk.php:153
|
188 |
msgid ""
|
189 |
-
"You must keep this page open while the bulk optimizaton is processing. If
|
190 |
-
"leave you can come back to continue where it left off."
|
191 |
msgstr ""
|
192 |
"Vous devez garder cette page ouverte pendant que l’optimisation en masse est "
|
193 |
-
"en cours. Si vous la quittez, vous pouvez revenir pour continuer là où vous
|
194 |
-
"étiez."
|
195 |
|
196 |
#: inc/admin/ui/bulk.php:164
|
197 |
msgid "Select Your Compression Level"
|
@@ -200,7 +203,8 @@ msgstr "Sélectionnez votre niveau de compression"
|
|
200 |
#: inc/admin/ui/bulk.php:166 inc/admin/ui/bulk.php:192
|
201 |
#: inc/admin/ui/options.php:136 inc/admin/ui/options.php:365
|
202 |
#: inc/admin/ui/options.php:404 inc/admin/ui/options.php:421
|
203 |
-
#: inc/admin/ui/options.php:481
|
|
|
204 |
#: inc/functions/admin-ui.php:153
|
205 |
msgid "Ultra"
|
206 |
msgstr "Ultra"
|
@@ -208,7 +212,8 @@ msgstr "Ultra"
|
|
208 |
#: inc/admin/ui/bulk.php:169 inc/admin/ui/bulk.php:187
|
209 |
#: inc/admin/ui/options.php:131 inc/admin/ui/options.php:352
|
210 |
#: inc/admin/ui/options.php:403 inc/admin/ui/options.php:416
|
211 |
-
#: inc/admin/ui/options.php:460
|
|
|
212 |
#: inc/functions/admin-ui.php:159
|
213 |
msgid "Aggressive"
|
214 |
msgstr "Agressif"
|
@@ -216,7 +221,8 @@ msgstr "Agressif"
|
|
216 |
#: inc/admin/ui/bulk.php:172 inc/admin/ui/bulk.php:182
|
217 |
#: inc/admin/ui/options.php:126 inc/admin/ui/options.php:339
|
218 |
#: inc/admin/ui/options.php:402 inc/admin/ui/options.php:411
|
219 |
-
#: inc/admin/ui/options.php:440
|
|
|
220 |
#: inc/functions/admin-ui.php:165
|
221 |
msgid "Normal"
|
222 |
msgstr "Normal"
|
@@ -242,11 +248,10 @@ msgstr "Imagif'em all"
|
|
242 |
|
243 |
#: inc/admin/ui/bulk.php:220
|
244 |
#, php-format
|
245 |
-
msgid ""
|
246 |
-
"All images greater than %s will be optimized when using a paying monthly plan."
|
247 |
msgstr ""
|
248 |
"Toutes les images de plus de %s seront optimisées lors de l'utilisation d'un "
|
249 |
-
"
|
250 |
|
251 |
#: inc/admin/ui/bulk.php:239
|
252 |
msgid "Well done!"
|
@@ -278,7 +283,7 @@ msgstr "Statut"
|
|
278 |
msgid "Original"
|
279 |
msgstr "Original"
|
280 |
|
281 |
-
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:
|
282 |
msgid "Optimized"
|
283 |
msgstr "Optimisées"
|
284 |
|
@@ -333,11 +338,11 @@ msgstr "Créer un compte"
|
|
333 |
|
334 |
#: inc/admin/ui/notices.php:34
|
335 |
msgid ""
|
336 |
-
"Don't have an Imagify account yet? Optimize your images by creating an
|
337 |
-
"in a few seconds!"
|
338 |
msgstr ""
|
339 |
-
"Vous n’avez pas encore de compte Imagify ? Optimiser vos images en
|
340 |
-
"un compte en quelques secondes !"
|
341 |
|
342 |
#: inc/admin/ui/notices.php:37
|
343 |
msgid "Sign up, It's FREE!"
|
@@ -365,7 +370,8 @@ msgid "Configure it"
|
|
365 |
msgstr "Configurer le"
|
366 |
|
367 |
#: inc/admin/ui/notices.php:54
|
368 |
-
msgid "
|
|
|
369 |
msgstr ""
|
370 |
"C’est bientôt terminé ! Vous avez juste à configurer vos paramètres "
|
371 |
"d'optimisation."
|
@@ -375,15 +381,16 @@ msgid "Go to Settings"
|
|
375 |
msgstr "Aller aux réglages"
|
376 |
|
377 |
#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
|
378 |
-
#: inc/functions/i18n.php:
|
379 |
msgid "Your API key isn't valid!"
|
380 |
msgstr "Votre clé API n’est pas valide !"
|
381 |
|
382 |
#: inc/admin/ui/notices.php:90
|
383 |
#, php-format
|
384 |
msgid ""
|
385 |
-
"Go to your Imagify account page to get your API Key and specify it on
|
386 |
-
"settings%3$s or %2$screate an account for free%3$s if you don't
|
|
|
387 |
msgstr ""
|
388 |
"Allez sur votre page de compte Imagify pour récupérer votre clé API et la "
|
389 |
"renseigner dans %1$svos réglages%3$s ou %2$scréez un compte gratuitement%3$s "
|
@@ -419,8 +426,8 @@ msgid ""
|
|
419 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
420 |
"config.php</code> file so that it works correctly."
|
421 |
msgstr ""
|
422 |
-
"Pour optimiser vos images, vous devez insérer le code suivant dans le
|
423 |
-
"<code>wp-config.php</code> afin que cela fonctionne correctement."
|
424 |
|
425 |
#: inc/admin/ui/notices.php:182
|
426 |
msgid "Click on the field and press Ctrl-A to select all."
|
@@ -438,12 +445,12 @@ msgstr "Utilisez la vue liste pour optimiser vos images avec Imagify."
|
|
438 |
msgid "Switch to the List View"
|
439 |
msgstr "Basculer en vue liste"
|
440 |
|
441 |
-
#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:
|
442 |
-
#: inc/functions/i18n.php:
|
443 |
#, php-format
|
444 |
msgid ""
|
445 |
-
"To continue to optimize your images, log in to your Imagify account to %sbuy
|
446 |
-
"pack or subscribe to a plan%s."
|
447 |
msgstr ""
|
448 |
"Pour continuer à optimiser vos images, connectez-vous à votre compte Imagify "
|
449 |
"pour %sacheter un pack ou souscrire à un plan%s."
|
@@ -467,8 +474,8 @@ msgid ""
|
|
467 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
468 |
"your website's speed by reducing your images size."
|
469 |
msgstr ""
|
470 |
-
"%1$sFélicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et améliorez
|
471 |
-
"temps de chargement de votre site en réduisant le poids de vos images."
|
472 |
|
473 |
#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
|
474 |
#, php-format
|
@@ -487,7 +494,7 @@ msgstr "Votre site est trop lent ?"
|
|
487 |
msgid "API Key"
|
488 |
msgstr "Clé API"
|
489 |
|
490 |
-
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:
|
491 |
msgid "Your API key is valid."
|
492 |
msgstr "Votre clé API est valide."
|
493 |
|
@@ -544,10 +551,10 @@ msgid ""
|
|
544 |
"after resizing. The new width should not be less than your largest thumbnail "
|
545 |
"width, which is actually %spx."
|
546 |
msgstr ""
|
547 |
-
"Cette option est recommendée pour réduire les images trop grandes. Vous
|
548 |
-
"économiser jusqu'à 80%% du poids après le redimensionnement. La
|
549 |
-
"largeur ne doit pas être inférieure à la plus grande largeur de vos
|
550 |
-
"qui est actuellement de %spx."
|
551 |
|
552 |
#: inc/admin/ui/options.php:209 inc/admin/ui/options.php:212
|
553 |
msgid "EXIF Data"
|
@@ -571,9 +578,9 @@ msgid ""
|
|
571 |
"If you are a photographer, you may be interested in this option if you are "
|
572 |
"displaying on your pages some info like the model of your camera."
|
573 |
msgstr ""
|
574 |
-
"Si vous êtes un photographe, vous pourriez être intéressé par cette option
|
575 |
-
"vous affichez quelques infos comme votre le modèle de votre appareil
|
576 |
-
"vos pages."
|
577 |
|
578 |
#: inc/admin/ui/options.php:228
|
579 |
msgid "Files optimization"
|
@@ -617,11 +624,11 @@ msgstr "Enregistrer & Aller à l’optimisation en masse"
|
|
617 |
#: inc/admin/ui/options.php:328
|
618 |
#, php-format
|
619 |
msgid ""
|
620 |
-
"Once your settings saved, optimize all your images by using the %sImagify
|
621 |
-
"Optimization%s feature."
|
622 |
msgstr ""
|
623 |
-
"Une fois vos paramètres enregistrés, optimisez toutes vos images en
|
624 |
-
"la fonctionnalité d’%soptimisation en masse%s d’Imagify."
|
625 |
|
626 |
#: inc/admin/ui/options.php:336
|
627 |
msgid "You can choose three levels of compression"
|
@@ -639,19 +646,20 @@ msgstr ""
|
|
639 |
msgid ""
|
640 |
"If you want the perfect quality for your images, we recommend you that mode."
|
641 |
msgstr ""
|
642 |
-
"Si vous souhaitez des images d’une qualité parfaite, nous vous recommandons
|
643 |
-
"niveau."
|
644 |
|
645 |
#: inc/admin/ui/options.php:347
|
646 |
-
msgid "
|
|
|
647 |
msgstr ""
|
648 |
"Remarque: la réduction du poids des images sera moins importante par rapport "
|
649 |
"au mode agressif."
|
650 |
|
651 |
#: inc/admin/ui/options.php:354
|
652 |
msgid ""
|
653 |
-
"This mode provides perfect optimization of your images without any
|
654 |
-
"quality loss."
|
655 |
msgstr ""
|
656 |
"Ce niveau permet une optimisation idéale de vos images sans perte de qualité "
|
657 |
"notable."
|
@@ -661,8 +669,8 @@ msgid ""
|
|
661 |
"This will provide a drastic savings on the initial weight, with a small "
|
662 |
"reduction in image quality. Most of the time it's not even noticeable."
|
663 |
msgstr ""
|
664 |
-
"Cela permettra une réduction importante du poids initial avec une légère
|
665 |
-
"de la qualité d'image qui n’est pas perceptible à l’oeil humain."
|
666 |
|
667 |
#: inc/admin/ui/options.php:360
|
668 |
msgid "If you want the maximum weight reduction, we recommend using this mode."
|
@@ -672,10 +680,11 @@ msgstr ""
|
|
672 |
|
673 |
#: inc/admin/ui/options.php:367
|
674 |
msgid ""
|
675 |
-
"This mode will apply all available optimizations for maximum image
|
|
|
676 |
msgstr ""
|
677 |
-
"Ce niveau appliquera toutes les optimisations disponibles pour une
|
678 |
-
"des images maximale."
|
679 |
|
680 |
#: inc/admin/ui/options.php:370
|
681 |
msgid ""
|
@@ -694,7 +703,7 @@ msgstr ""
|
|
694 |
"baisse de qualité sur vos images, nous vous recommandons ce niveau."
|
695 |
|
696 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
697 |
-
#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:
|
698 |
msgid "Close"
|
699 |
msgstr "Fermer"
|
700 |
|
@@ -722,17 +731,17 @@ msgstr "Niveau :"
|
|
722 |
|
723 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
724 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
725 |
-
#: inc/functions/i18n.php:
|
726 |
msgid "File Size:"
|
727 |
msgstr "Poids du fichier:"
|
728 |
|
729 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
730 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
731 |
-
#: inc/functions/i18n.php:
|
732 |
msgid "Original Saving:"
|
733 |
msgstr "Gain sur l’original :"
|
734 |
|
735 |
-
#: inc/admin/upload.php:42 inc/functions/i18n.php:
|
736 |
msgid "Unoptimized"
|
737 |
msgstr "Non optimisées"
|
738 |
|
@@ -748,13 +757,13 @@ msgstr "Filtrer par statut"
|
|
748 |
msgid "All images"
|
749 |
msgstr "Toutes les images"
|
750 |
|
751 |
-
#: inc/classes/class-attachment.php:
|
752 |
msgid ""
|
753 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
754 |
"you want to optimize it."
|
755 |
msgstr ""
|
756 |
-
"Cette taille n’est pas autorisée à être optimisée. Mettez à jour les
|
757 |
-
"d’Imagify si vous souhaitez l’optimiser."
|
758 |
|
759 |
#: inc/common/admin-bar.php:48
|
760 |
#, php-format
|
@@ -961,13 +970,13 @@ msgstr "Nous contacter"
|
|
961 |
|
962 |
#: inc/functions/admin-ui.php:510
|
963 |
msgid ""
|
964 |
-
"One time plans are useful if you have a lots of existing images which need
|
965 |
-
"be optimized. You can use it for bulk optimizing all your past images.
|
966 |
-
"will pay only once."
|
967 |
msgstr ""
|
968 |
"Les plans « One Time » sont utiles si vous avez beaucoup d’images existantes "
|
969 |
-
"qui ont besoin d’être optimisées. Vous pouvez l’utiliser pour une
|
970 |
-
"en masse de vos images passées. Vous ne paierez qu’une fois."
|
971 |
|
972 |
#: inc/functions/admin-ui.php:563
|
973 |
msgid "Your order"
|
@@ -1004,7 +1013,8 @@ msgstr ""
|
|
1004 |
#: inc/functions/admin-ui.php:618
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
-
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</
|
|
|
1008 |
msgstr ""
|
1009 |
"Parfait !<br>Vous <strong class=\"imagify-dark\">économisez %s par "
|
1010 |
"an !</strong>"
|
@@ -1043,14 +1053,14 @@ msgid "You need to specify an email!"
|
|
1043 |
msgstr "Vous devez indiquer un e-mail !"
|
1044 |
|
1045 |
# SWAL : ne pas utiliser d’entité HTML échapée (ex: )
|
1046 |
-
#: inc/functions/i18n.php:24 inc/functions/i18n.php:
|
1047 |
msgid "Congratulations!"
|
1048 |
msgstr "Félicitations !"
|
1049 |
|
1050 |
#: inc/functions/i18n.php:25
|
1051 |
msgid ""
|
1052 |
-
"Your account has been succesfully created. Please check your mailbox, you
|
1053 |
-
"going to receive an email with API key."
|
1054 |
msgstr ""
|
1055 |
"Votre compte a été créé avec succès. Vérifiez votre boîte de réception, vous "
|
1056 |
"allez recevoir un e-mail avec votre clé API."
|
@@ -1072,23 +1082,27 @@ msgstr "Connectez-moi"
|
|
1072 |
msgid "Check in progress..."
|
1073 |
msgstr "Vérification en cours…"
|
1074 |
|
1075 |
-
#: inc/functions/i18n.php:
|
|
|
|
|
|
|
|
|
1076 |
msgid ""
|
1077 |
-
"Your API key is valid. You can now configure the Imagify settings to
|
1078 |
-
"your images."
|
1079 |
msgstr ""
|
1080 |
"Votre clé API est valide. Vous pouvez maintenant configurer les réglages "
|
1081 |
"d’Imagify pour optimiser vos images."
|
1082 |
|
1083 |
-
#: inc/functions/i18n.php:
|
1084 |
msgid "Cancel"
|
1085 |
-
msgstr ""
|
1086 |
|
1087 |
-
#: inc/functions/i18n.php:
|
1088 |
msgid "Don't Need a Parachute?"
|
1089 |
msgstr "Pas besoin d’un parachute ?"
|
1090 |
|
1091 |
-
#: inc/functions/i18n.php:
|
1092 |
msgid ""
|
1093 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1094 |
"images to another compression level and restore your original images in case "
|
@@ -1098,138 +1112,135 @@ msgstr ""
|
|
1098 |
"réoptimiser vos images à un autre niveau de compression et de restaurer vos "
|
1099 |
"images originales en cas de besoin."
|
1100 |
|
1101 |
-
#: inc/functions/i18n.php:
|
1102 |
msgid "Original Image"
|
1103 |
msgstr "Image d’origine"
|
1104 |
|
1105 |
-
#: inc/functions/i18n.php:
|
1106 |
msgid "Optimized Image"
|
1107 |
msgstr "Image optimisée"
|
1108 |
|
1109 |
-
#: inc/functions/i18n.php:
|
1110 |
msgid "Please wait..."
|
1111 |
msgstr "Un peu d’attente…"
|
1112 |
|
1113 |
-
#: inc/functions/i18n.php:
|
1114 |
msgid ""
|
1115 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1116 |
"the number of images."
|
1117 |
msgstr ""
|
1118 |
-
"Nous sommes en train de récupérer vos images non-optimisées, cela peut
|
1119 |
-
"du temps en fonction du nombre d’images."
|
1120 |
|
1121 |
-
#: inc/functions/i18n.php:
|
1122 |
msgid "Oops, There is something wrong!"
|
1123 |
msgstr "Oups, une erreur est survenue !"
|
1124 |
|
1125 |
-
#: inc/functions/i18n.php:
|
1126 |
msgid ""
|
1127 |
-
"An unknow error occurred when we tried to get all your unoptimized images.
|
1128 |
-
"again and if the issue still persist, please contact us!"
|
1129 |
msgstr ""
|
1130 |
"Une erreur inconnue est survenue lorsque nous avons essayé d’obtenir toutes "
|
1131 |
"vos images non optimisées. Essayez encore et si le problème persiste, "
|
1132 |
"contactez-nous !"
|
1133 |
|
1134 |
-
#: inc/functions/i18n.php:
|
1135 |
msgid "Error"
|
1136 |
msgstr "Erreur"
|
1137 |
|
1138 |
-
#: inc/functions/i18n.php:
|
1139 |
msgid "Hold on!"
|
1140 |
msgstr "Halte là !"
|
1141 |
|
1142 |
-
#: inc/functions/i18n.php:
|
1143 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1144 |
msgstr "Toutes vos images ont été optimisées par Imagify. Félicitations !"
|
1145 |
|
1146 |
-
#: inc/functions/i18n.php:
|
1147 |
#, php-format
|
1148 |
msgid ""
|
1149 |
-
"Discover @imagify, the new compression tool to optimize your images for
|
1150 |
-
"I saved %1$s out of %2$s!"
|
1151 |
msgstr ""
|
1152 |
-
"Découvrez @imagify, le nouvel outil de compression pour optimiser vos
|
1153 |
-
"J’ai optimisé %1$s sur %2$s !"
|
1154 |
|
1155 |
-
#: inc/functions/i18n.php:
|
1156 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1157 |
msgstr ""
|
1158 |
"Imagify travaille encore. Êtes-vous sûr(e) de vouloir quitter cette page ?"
|
1159 |
|
1160 |
-
#: inc/functions/i18n.php:
|
1161 |
msgid "F j, Y"
|
1162 |
-
msgstr ""
|
1163 |
|
1164 |
-
#: inc/functions/process.php:
|
1165 |
msgid ""
|
1166 |
-
"Sorry, our servers are temporarily unaccessible. Please, try again in a
|
1167 |
-
"of minutes."
|
1168 |
msgstr ""
|
1169 |
-
"Désolé, nos serveurs sont temporairement inaccessibles. Nous vous
|
1170 |
-
"de ré-essayer dans quelques minutes."
|
1171 |
|
1172 |
-
#: inc/functions/process.php:
|
1173 |
msgid "External HTTP requests are blocked"
|
1174 |
msgstr "Les requêtes HTTP externes sont bloquées"
|
1175 |
|
1176 |
-
#: inc/functions/process.php:
|
1177 |
msgid "File path is empty"
|
1178 |
msgstr "Le chemin du fichier est vide"
|
1179 |
|
1180 |
-
#: inc/functions/process.php:
|
1181 |
#, php-format
|
1182 |
msgid "Could not find %s"
|
1183 |
msgstr "Impossible de trouver %s"
|
1184 |
|
1185 |
-
#: inc/functions/process.php:
|
1186 |
#, php-format
|
1187 |
msgid "%s is not writable"
|
1188 |
msgstr "%s n’est pas accessible en écriture"
|
1189 |
|
1190 |
-
#: inc/functions/process.php:
|
1191 |
#, php-format
|
1192 |
msgid "Skipped (%s), image not found."
|
1193 |
msgstr "Ignoré (%s), image introuvable."
|
1194 |
|
1195 |
-
|
1196 |
-
|
1197 |
-
msgstr "https://fr.wordpress.org/plugins/imagify/"
|
1198 |
|
1199 |
-
|
1200 |
-
|
1201 |
-
"
|
1202 |
-
"
|
1203 |
-
|
1204 |
-
|
1205 |
-
"
|
1206 |
-
"
|
1207 |
-
"
|
1208 |
-
"le plus avancé pour optimiser vos images."
|
1209 |
|
1210 |
-
|
1211 |
-
|
1212 |
-
msgstr "WP Media"
|
1213 |
|
1214 |
-
|
1215 |
-
|
1216 |
-
msgstr "http://wp-media.me"
|
1217 |
|
1218 |
#~ msgid ""
|
1219 |
-
#~ "All images greater than %s%% will be optimized when using a paying
|
1220 |
-
#~ "plan."
|
1221 |
#~ msgstr ""
|
1222 |
-
#~ "Toutes les images de plus de %s %% seront optimisées lors de
|
1223 |
-
#~ "d'un abonnement mensuel payant."
|
1224 |
|
1225 |
#~ msgid "You optimized %s of images on your website"
|
1226 |
#~ msgstr "Vous avez optimisé %s des images de votre site"
|
1227 |
|
1228 |
#~ msgid ""
|
1229 |
-
#~ "Images greater than 5 MB will be optimized when using a paying monthly
|
|
|
1230 |
#~ msgstr ""
|
1231 |
-
#~ "Les images supérieures à 5 Mo seront optimisées lors de l'utilisation
|
1232 |
-
#~ "forfait mensuel payant."
|
1233 |
|
1234 |
#~ msgid "Your default setting:"
|
1235 |
#~ msgstr "Votre réglage par défaut :"
|
@@ -1247,15 +1258,16 @@ msgstr "http://wp-media.me"
|
|
1247 |
#~ msgstr ""
|
1248 |
#~ "Réduisez drastiquement le poids de vos images sans perte de qualité, "
|
1249 |
#~ "accélérez la rapidité de votre site, boostez votre SEO et économisez de "
|
1250 |
-
#~ "l’argent sur votre bande passante en utilisant Imagify, le nouvel outil
|
1251 |
-
#~ "plus avancé d’optimisation des images."
|
1252 |
|
1253 |
#~ msgid ""
|
1254 |
#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and "
|
1255 |
#~ "improved your website's by reducing your images size."
|
1256 |
#~ msgstr ""
|
1257 |
-
#~ "%1$Félicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et
|
1258 |
-
#~ "le temps de chargement de votre site en réduisant le poids de
|
|
|
1259 |
|
1260 |
#~ msgid ""
|
1261 |
#~ "Sorry, our servers are temporally unaccessible. Please, try again in a "
|
@@ -1275,21 +1287,22 @@ msgstr "http://wp-media.me"
|
|
1275 |
|
1276 |
#~ msgid ""
|
1277 |
#~ "If you are a photographer, you may be interested in by this option if you "
|
1278 |
-
#~ "are displaying some infos like your the model of your camera on your
|
|
|
1279 |
#~ msgstr ""
|
1280 |
-
#~ "Si vous êtes un photographe, vous pourriez être intéressé par cette
|
1281 |
-
#~ "si vous affichez quelques infos comme votre le modèle de votre
|
1282 |
-
#~ "photo sur vos pages."
|
1283 |
|
1284 |
#~ msgid "Checking in process..."
|
1285 |
#~ msgstr "Vérification en cours…"
|
1286 |
|
1287 |
#~ msgid ""
|
1288 |
-
#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and
|
1289 |
-
#~ "by %1$s%4$s%2$s%% your images size."
|
1290 |
#~ msgstr ""
|
1291 |
-
#~ "%1$sFélicitations%2$s, vous avez optimisé %1$s%3$d images %2$s et réduit
|
1292 |
-
#~ "%1$s%4$s%2$s%% le poids de vos images."
|
1293 |
|
1294 |
#~ msgid ""
|
1295 |
#~ "Keep all EXIF data from your images. Exif are informations stored in your "
|
@@ -1300,8 +1313,8 @@ msgstr "http://wp-media.me"
|
|
1300 |
#~ "d’exposition, ISO, etc …"
|
1301 |
|
1302 |
#~ msgid ""
|
1303 |
-
#~ "This will provide a huge savings on the initial weight. Sometimes the
|
1304 |
-
#~ "quality could be degraded."
|
1305 |
#~ msgstr ""
|
1306 |
#~ "Cela permettra de considérablement réduire le poids initial. Parfois, la "
|
1307 |
#~ "qualité de l’image pourra être légèrement dégradée."
|
@@ -1362,8 +1375,8 @@ msgstr "http://wp-media.me"
|
|
1362 |
#~ "niveau votre abonnement pour continuer à optimiser vos images."
|
1363 |
|
1364 |
#~ msgid ""
|
1365 |
-
#~ "You have almost used all your credit. Don't forget to upgrade your
|
1366 |
-
#~ "to continue optimizing your images."
|
1367 |
#~ msgstr ""
|
1368 |
#~ "Vous avez bientôt utilisé tout votre crédit. N’oubliez pas de mettre à "
|
1369 |
#~ "niveau votre abonnement pour continuer à optimiser vos images."
|
@@ -1398,12 +1411,12 @@ msgstr "http://wp-media.me"
|
|
1398 |
#~ "You can log in to your Imagify account to %sbuy a pack or subscribe to a "
|
1399 |
#~ "plan%s."
|
1400 |
#~ msgstr ""
|
1401 |
-
#~ "Vous pouvez vous connecter à votre compte Imagify pour %sacheter un pack
|
1402 |
-
#~ "souscrire à un plan%s."
|
1403 |
|
1404 |
#~ msgid ""
|
1405 |
-
#~ "You have consumed all your credits for this month. You will have <strong
|
1406 |
-
#~ "back on %s</strong>."
|
1407 |
#~ msgstr ""
|
1408 |
#~ "Vous avez consommé tous les crédits pour ce mois. Vous aurez à nouveau "
|
1409 |
#~ "<strong>%s le %s</strong>."
|
@@ -1441,11 +1454,11 @@ msgstr "http://wp-media.me"
|
|
1441 |
#~ "d’optimisation."
|
1442 |
|
1443 |
#~ msgid ""
|
1444 |
-
#~ "This mode is a lossless optimization, your images will be optimized
|
1445 |
-
#~ "any visible change."
|
1446 |
#~ msgstr ""
|
1447 |
-
#~ "Ce niveau permet d'optimiser sans perte, vos images seront optimisées
|
1448 |
-
#~ "aucun changement visible."
|
1449 |
|
1450 |
#~ msgid ""
|
1451 |
#~ "This mode will apply all optimizations available to compress furthermore "
|
@@ -1454,13 +1467,15 @@ msgstr "http://wp-media.me"
|
|
1454 |
#~ "Ce niveau appliquera toutes les optimisations disponibles pour compresser "
|
1455 |
#~ "les images."
|
1456 |
|
1457 |
-
#~ msgid "
|
|
|
1458 |
#~ msgstr ""
|
1459 |
#~ "Si vous souhaitez une réduction du poids plus performante, nous vous "
|
1460 |
#~ "recommandons ce niveau."
|
1461 |
|
1462 |
#~ msgid "Optimize automatically every image you will upload to WordPress."
|
1463 |
-
#~ msgstr "
|
|
|
1464 |
|
1465 |
#~ msgid ""
|
1466 |
#~ "Please be aware that optimizing a large number of images can take a while "
|
@@ -1501,15 +1516,16 @@ msgstr "http://wp-media.me"
|
|
1501 |
#~ "Is your WordPress website too slow? Discover the best caching plugin to "
|
1502 |
#~ "speed up your website."
|
1503 |
#~ msgstr ""
|
1504 |
-
#~ "Votre site WordPress est lent ? Découvrer le meilleur plugin de cache
|
1505 |
-
#~ "accélérer votre site."
|
1506 |
|
1507 |
#~ msgid ""
|
1508 |
#~ "Please be aware that optimizing a large number of images can take a whil "
|
1509 |
#~ "depends on your server and network speed."
|
1510 |
#~ msgstr ""
|
1511 |
-
#~ "Soyez conscient que l’optimisation d’une grand nombre d’images peut
|
1512 |
-
#~ "du temps en fonction de la rapidité de votre serveur et de votre
|
|
|
1513 |
|
1514 |
#~ msgid "Your API key isn't valid."
|
1515 |
#~ msgstr "Votre clé API n’est pas valide."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
+
"POT-Creation-Date: 2016-09-23 11:27-0500\n"
|
5 |
+
"PO-Revision-Date: 2016-09-23 14:54-0500\n"
|
6 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
+
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
|
25 |
+
#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
|
26 |
+
#: inc/functions/i18n.php:64
|
27 |
msgid "Optimize"
|
28 |
msgstr "Optimiser"
|
29 |
|
30 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
31 |
+
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
|
32 |
msgid "Restore Original"
|
33 |
msgstr "Restaurer l’original"
|
34 |
|
35 |
#: inc/3rd-party/nextgen-gallery/inc/admin/menu.php:16 inc/admin/menu.php:24
|
36 |
+
#: inc/admin/plugins.php:13 inc/admin/ui/bulk.php:81
|
37 |
+
#: inc/common/admin-bar.php:39
|
38 |
msgid "Bulk Optimization"
|
39 |
msgstr "Optimisation en masse"
|
40 |
|
55 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
56 |
"subscription to continue optimizing your images."
|
57 |
msgstr ""
|
58 |
+
"Vous avez bientôt utilisé tout votre crédit.%sN’oubliez pas de mettre à "
|
59 |
+
"niveau votre abonnement pour continuer à optimiser vos images."
|
60 |
|
61 |
#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
|
62 |
msgid "View My Subscription"
|
63 |
msgstr "Voir mon abonnement"
|
64 |
|
65 |
+
#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
|
66 |
+
#: inc/functions/i18n.php:84
|
67 |
msgid "Oops, It's Over!"
|
68 |
msgstr "Oups, c’est fini !"
|
69 |
|
70 |
+
#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
|
71 |
+
#: inc/functions/i18n.php:101
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
98 |
msgid "View my subscription"
|
99 |
msgstr "Voir mon abonnement"
|
100 |
|
101 |
+
#: inc/admin/media.php:63 inc/functions/i18n.php:60
|
102 |
msgid "Compare Original VS Optimized"
|
103 |
msgstr "Comparer Originale VS Optimisée"
|
104 |
|
|
|
105 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
106 |
#: inc/admin/upload.php:12
|
107 |
msgid "Imagify"
|
181 |
#: inc/admin/ui/bulk.php:149
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
+
"If you have more than %s images, you will need to launch the bulk "
|
185 |
+
"optimization several times."
|
186 |
msgstr ""
|
187 |
"Si vous avez plus de %s images, vous devrez lancer l’optimisation en masse "
|
188 |
"plusieurs fois."
|
189 |
|
190 |
#: inc/admin/ui/bulk.php:153
|
191 |
msgid ""
|
192 |
+
"You must keep this page open while the bulk optimizaton is processing. If "
|
193 |
+
"you leave you can come back to continue where it left off."
|
194 |
msgstr ""
|
195 |
"Vous devez garder cette page ouverte pendant que l’optimisation en masse est "
|
196 |
+
"en cours. Si vous la quittez, vous pouvez revenir pour continuer là où vous "
|
197 |
+
"en étiez."
|
198 |
|
199 |
#: inc/admin/ui/bulk.php:164
|
200 |
msgid "Select Your Compression Level"
|
203 |
#: inc/admin/ui/bulk.php:166 inc/admin/ui/bulk.php:192
|
204 |
#: inc/admin/ui/options.php:136 inc/admin/ui/options.php:365
|
205 |
#: inc/admin/ui/options.php:404 inc/admin/ui/options.php:421
|
206 |
+
#: inc/admin/ui/options.php:481
|
207 |
+
#: inc/classes/abstracts/abstract-attachment.php:114
|
208 |
#: inc/functions/admin-ui.php:153
|
209 |
msgid "Ultra"
|
210 |
msgstr "Ultra"
|
212 |
#: inc/admin/ui/bulk.php:169 inc/admin/ui/bulk.php:187
|
213 |
#: inc/admin/ui/options.php:131 inc/admin/ui/options.php:352
|
214 |
#: inc/admin/ui/options.php:403 inc/admin/ui/options.php:416
|
215 |
+
#: inc/admin/ui/options.php:460
|
216 |
+
#: inc/classes/abstracts/abstract-attachment.php:117
|
217 |
#: inc/functions/admin-ui.php:159
|
218 |
msgid "Aggressive"
|
219 |
msgstr "Agressif"
|
221 |
#: inc/admin/ui/bulk.php:172 inc/admin/ui/bulk.php:182
|
222 |
#: inc/admin/ui/options.php:126 inc/admin/ui/options.php:339
|
223 |
#: inc/admin/ui/options.php:402 inc/admin/ui/options.php:411
|
224 |
+
#: inc/admin/ui/options.php:440
|
225 |
+
#: inc/classes/abstracts/abstract-attachment.php:120
|
226 |
#: inc/functions/admin-ui.php:165
|
227 |
msgid "Normal"
|
228 |
msgstr "Normal"
|
248 |
|
249 |
#: inc/admin/ui/bulk.php:220
|
250 |
#, php-format
|
251 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
|
|
252 |
msgstr ""
|
253 |
"Toutes les images de plus de %s seront optimisées lors de l'utilisation d'un "
|
254 |
+
"plan payant."
|
255 |
|
256 |
#: inc/admin/ui/bulk.php:239
|
257 |
msgid "Well done!"
|
283 |
msgid "Original"
|
284 |
msgstr "Original"
|
285 |
|
286 |
+
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
|
287 |
msgid "Optimized"
|
288 |
msgstr "Optimisées"
|
289 |
|
338 |
|
339 |
#: inc/admin/ui/notices.php:34
|
340 |
msgid ""
|
341 |
+
"Don't have an Imagify account yet? Optimize your images by creating an "
|
342 |
+
"account in a few seconds!"
|
343 |
msgstr ""
|
344 |
+
"Vous n’avez pas encore de compte Imagify ? Optimiser vos images en "
|
345 |
+
"créant un compte en quelques secondes !"
|
346 |
|
347 |
#: inc/admin/ui/notices.php:37
|
348 |
msgid "Sign up, It's FREE!"
|
370 |
msgstr "Configurer le"
|
371 |
|
372 |
#: inc/admin/ui/notices.php:54
|
373 |
+
msgid ""
|
374 |
+
"It’s almost done! You have just to configure your optimization settings."
|
375 |
msgstr ""
|
376 |
"C’est bientôt terminé ! Vous avez juste à configurer vos paramètres "
|
377 |
"d'optimisation."
|
381 |
msgstr "Aller aux réglages"
|
382 |
|
383 |
#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
|
384 |
+
#: inc/functions/i18n.php:78
|
385 |
msgid "Your API key isn't valid!"
|
386 |
msgstr "Votre clé API n’est pas valide !"
|
387 |
|
388 |
#: inc/admin/ui/notices.php:90
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
+
"Go to your Imagify account page to get your API Key and specify it on "
|
392 |
+
"%1$syour settings%3$s or %2$screate an account for free%3$s if you don't "
|
393 |
+
"have one yet."
|
394 |
msgstr ""
|
395 |
"Allez sur votre page de compte Imagify pour récupérer votre clé API et la "
|
396 |
"renseigner dans %1$svos réglages%3$s ou %2$scréez un compte gratuitement%3$s "
|
426 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
427 |
"config.php</code> file so that it works correctly."
|
428 |
msgstr ""
|
429 |
+
"Pour optimiser vos images, vous devez insérer le code suivant dans le "
|
430 |
+
"fichier <code>wp-config.php</code> afin que cela fonctionne correctement."
|
431 |
|
432 |
#: inc/admin/ui/notices.php:182
|
433 |
msgid "Click on the field and press Ctrl-A to select all."
|
445 |
msgid "Switch to the List View"
|
446 |
msgstr "Basculer en vue liste"
|
447 |
|
448 |
+
#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
|
449 |
+
#: inc/functions/i18n.php:101
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
+
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
453 |
+
"a pack or subscribe to a plan%s."
|
454 |
msgstr ""
|
455 |
"Pour continuer à optimiser vos images, connectez-vous à votre compte Imagify "
|
456 |
"pour %sacheter un pack ou souscrire à un plan%s."
|
474 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
475 |
"your website's speed by reducing your images size."
|
476 |
msgstr ""
|
477 |
+
"%1$sFélicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et améliorez "
|
478 |
+
"le temps de chargement de votre site en réduisant le poids de vos images."
|
479 |
|
480 |
#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
|
481 |
#, php-format
|
494 |
msgid "API Key"
|
495 |
msgstr "Clé API"
|
496 |
|
497 |
+
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
|
498 |
msgid "Your API key is valid."
|
499 |
msgstr "Votre clé API est valide."
|
500 |
|
551 |
"after resizing. The new width should not be less than your largest thumbnail "
|
552 |
"width, which is actually %spx."
|
553 |
msgstr ""
|
554 |
+
"Cette option est recommendée pour réduire les images trop grandes. Vous "
|
555 |
+
"pouvez économiser jusqu'à 80%% du poids après le redimensionnement. La "
|
556 |
+
"nouvelle largeur ne doit pas être inférieure à la plus grande largeur de vos "
|
557 |
+
"miniatures qui est actuellement de %spx."
|
558 |
|
559 |
#: inc/admin/ui/options.php:209 inc/admin/ui/options.php:212
|
560 |
msgid "EXIF Data"
|
578 |
"If you are a photographer, you may be interested in this option if you are "
|
579 |
"displaying on your pages some info like the model of your camera."
|
580 |
msgstr ""
|
581 |
+
"Si vous êtes un photographe, vous pourriez être intéressé par cette option "
|
582 |
+
"si vous affichez quelques infos comme votre le modèle de votre appareil "
|
583 |
+
"photo sur vos pages."
|
584 |
|
585 |
#: inc/admin/ui/options.php:228
|
586 |
msgid "Files optimization"
|
624 |
#: inc/admin/ui/options.php:328
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
+
"Once your settings saved, optimize all your images by using the %sImagify "
|
628 |
+
"Bulk Optimization%s feature."
|
629 |
msgstr ""
|
630 |
+
"Une fois vos paramètres enregistrés, optimisez toutes vos images en "
|
631 |
+
"utilisant la fonctionnalité d’%soptimisation en masse%s d’Imagify."
|
632 |
|
633 |
#: inc/admin/ui/options.php:336
|
634 |
msgid "You can choose three levels of compression"
|
646 |
msgid ""
|
647 |
"If you want the perfect quality for your images, we recommend you that mode."
|
648 |
msgstr ""
|
649 |
+
"Si vous souhaitez des images d’une qualité parfaite, nous vous recommandons "
|
650 |
+
"ce niveau."
|
651 |
|
652 |
#: inc/admin/ui/options.php:347
|
653 |
+
msgid ""
|
654 |
+
"Note: the file size reduction will be less, compared to aggressive mode."
|
655 |
msgstr ""
|
656 |
"Remarque: la réduction du poids des images sera moins importante par rapport "
|
657 |
"au mode agressif."
|
658 |
|
659 |
#: inc/admin/ui/options.php:354
|
660 |
msgid ""
|
661 |
+
"This mode provides perfect optimization of your images without any "
|
662 |
+
"significant quality loss."
|
663 |
msgstr ""
|
664 |
"Ce niveau permet une optimisation idéale de vos images sans perte de qualité "
|
665 |
"notable."
|
669 |
"This will provide a drastic savings on the initial weight, with a small "
|
670 |
"reduction in image quality. Most of the time it's not even noticeable."
|
671 |
msgstr ""
|
672 |
+
"Cela permettra une réduction importante du poids initial avec une légère "
|
673 |
+
"perte de la qualité d'image qui n’est pas perceptible à l’oeil humain."
|
674 |
|
675 |
#: inc/admin/ui/options.php:360
|
676 |
msgid "If you want the maximum weight reduction, we recommend using this mode."
|
680 |
|
681 |
#: inc/admin/ui/options.php:367
|
682 |
msgid ""
|
683 |
+
"This mode will apply all available optimizations for maximum image "
|
684 |
+
"compression."
|
685 |
msgstr ""
|
686 |
+
"Ce niveau appliquera toutes les optimisations disponibles pour une "
|
687 |
+
"compression des images maximale."
|
688 |
|
689 |
#: inc/admin/ui/options.php:370
|
690 |
msgid ""
|
703 |
"baisse de qualité sur vos images, nous vous recommandons ce niveau."
|
704 |
|
705 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
706 |
+
#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
|
707 |
msgid "Close"
|
708 |
msgstr "Fermer"
|
709 |
|
731 |
|
732 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
733 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
734 |
+
#: inc/functions/i18n.php:62
|
735 |
msgid "File Size:"
|
736 |
msgstr "Poids du fichier:"
|
737 |
|
738 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
739 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
740 |
+
#: inc/functions/i18n.php:63
|
741 |
msgid "Original Saving:"
|
742 |
msgstr "Gain sur l’original :"
|
743 |
|
744 |
+
#: inc/admin/upload.php:42 inc/functions/i18n.php:81
|
745 |
msgid "Unoptimized"
|
746 |
msgstr "Non optimisées"
|
747 |
|
757 |
msgid "All images"
|
758 |
msgstr "Toutes les images"
|
759 |
|
760 |
+
#: inc/classes/class-attachment.php:297
|
761 |
msgid ""
|
762 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
763 |
"you want to optimize it."
|
764 |
msgstr ""
|
765 |
+
"Cette taille n’est pas autorisée à être optimisée. Mettez à jour les "
|
766 |
+
"réglages d’Imagify si vous souhaitez l’optimiser."
|
767 |
|
768 |
#: inc/common/admin-bar.php:48
|
769 |
#, php-format
|
970 |
|
971 |
#: inc/functions/admin-ui.php:510
|
972 |
msgid ""
|
973 |
+
"One time plans are useful if you have a lots of existing images which need "
|
974 |
+
"to be optimized. You can use it for bulk optimizing all your past images. "
|
975 |
+
"You will pay only once."
|
976 |
msgstr ""
|
977 |
"Les plans « One Time » sont utiles si vous avez beaucoup d’images existantes "
|
978 |
+
"qui ont besoin d’être optimisées. Vous pouvez l’utiliser pour une "
|
979 |
+
"optimisation en masse de vos images passées. Vous ne paierez qu’une fois."
|
980 |
|
981 |
#: inc/functions/admin-ui.php:563
|
982 |
msgid "Your order"
|
1013 |
#: inc/functions/admin-ui.php:618
|
1014 |
#, php-format
|
1015 |
msgid ""
|
1016 |
+
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
1017 |
+
"strong>"
|
1018 |
msgstr ""
|
1019 |
"Parfait !<br>Vous <strong class=\"imagify-dark\">économisez %s par "
|
1020 |
"an !</strong>"
|
1053 |
msgstr "Vous devez indiquer un e-mail !"
|
1054 |
|
1055 |
# SWAL : ne pas utiliser d’entité HTML échapée (ex: )
|
1056 |
+
#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
|
1057 |
msgid "Congratulations!"
|
1058 |
msgstr "Félicitations !"
|
1059 |
|
1060 |
#: inc/functions/i18n.php:25
|
1061 |
msgid ""
|
1062 |
+
"Your account has been succesfully created. Please check your mailbox, you "
|
1063 |
+
"are going to receive an email with API key."
|
1064 |
msgstr ""
|
1065 |
"Votre compte a été créé avec succès. Vérifiez votre boîte de réception, vous "
|
1066 |
"allez recevoir un e-mail avec votre clé API."
|
1082 |
msgid "Check in progress..."
|
1083 |
msgstr "Vérification en cours…"
|
1084 |
|
1085 |
+
#: inc/functions/i18n.php:30
|
1086 |
+
msgid "You need to specify your api key!"
|
1087 |
+
msgstr "Vous devez indiquer une clé api !"
|
1088 |
+
|
1089 |
+
#: inc/functions/i18n.php:32
|
1090 |
msgid ""
|
1091 |
+
"Your API key is valid. You can now configure the Imagify settings to "
|
1092 |
+
"optimize your images."
|
1093 |
msgstr ""
|
1094 |
"Votre clé API est valide. Vous pouvez maintenant configurer les réglages "
|
1095 |
"d’Imagify pour optimiser vos images."
|
1096 |
|
1097 |
+
#: inc/functions/i18n.php:34
|
1098 |
msgid "Cancel"
|
1099 |
+
msgstr "Annuler"
|
1100 |
|
1101 |
+
#: inc/functions/i18n.php:41
|
1102 |
msgid "Don't Need a Parachute?"
|
1103 |
msgstr "Pas besoin d’un parachute ?"
|
1104 |
|
1105 |
+
#: inc/functions/i18n.php:42
|
1106 |
msgid ""
|
1107 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1108 |
"images to another compression level and restore your original images in case "
|
1112 |
"réoptimiser vos images à un autre niveau de compression et de restaurer vos "
|
1113 |
"images originales en cas de besoin."
|
1114 |
|
1115 |
+
#: inc/functions/i18n.php:58
|
1116 |
msgid "Original Image"
|
1117 |
msgstr "Image d’origine"
|
1118 |
|
1119 |
+
#: inc/functions/i18n.php:59
|
1120 |
msgid "Optimized Image"
|
1121 |
msgstr "Image optimisée"
|
1122 |
|
1123 |
+
#: inc/functions/i18n.php:73
|
1124 |
msgid "Please wait..."
|
1125 |
msgstr "Un peu d’attente…"
|
1126 |
|
1127 |
+
#: inc/functions/i18n.php:74
|
1128 |
msgid ""
|
1129 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1130 |
"the number of images."
|
1131 |
msgstr ""
|
1132 |
+
"Nous sommes en train de récupérer vos images non-optimisées, cela peut "
|
1133 |
+
"prendre du temps en fonction du nombre d’images."
|
1134 |
|
1135 |
+
#: inc/functions/i18n.php:76
|
1136 |
msgid "Oops, There is something wrong!"
|
1137 |
msgstr "Oups, une erreur est survenue !"
|
1138 |
|
1139 |
+
#: inc/functions/i18n.php:77
|
1140 |
msgid ""
|
1141 |
+
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1142 |
+
"Try again and if the issue still persist, please contact us!"
|
1143 |
msgstr ""
|
1144 |
"Une erreur inconnue est survenue lorsque nous avons essayé d’obtenir toutes "
|
1145 |
"vos images non optimisées. Essayez encore et si le problème persiste, "
|
1146 |
"contactez-nous !"
|
1147 |
|
1148 |
+
#: inc/functions/i18n.php:82
|
1149 |
msgid "Error"
|
1150 |
msgstr "Erreur"
|
1151 |
|
1152 |
+
#: inc/functions/i18n.php:85
|
1153 |
msgid "Hold on!"
|
1154 |
msgstr "Halte là !"
|
1155 |
|
1156 |
+
#: inc/functions/i18n.php:86
|
1157 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1158 |
msgstr "Toutes vos images ont été optimisées par Imagify. Félicitations !"
|
1159 |
|
1160 |
+
#: inc/functions/i18n.php:88
|
1161 |
#, php-format
|
1162 |
msgid ""
|
1163 |
+
"Discover @imagify, the new compression tool to optimize your images for "
|
1164 |
+
"free. I saved %1$s out of %2$s!"
|
1165 |
msgstr ""
|
1166 |
+
"Découvrez @imagify, le nouvel outil de compression pour optimiser vos "
|
1167 |
+
"images. J’ai optimisé %1$s sur %2$s !"
|
1168 |
|
1169 |
+
#: inc/functions/i18n.php:92
|
1170 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1171 |
msgstr ""
|
1172 |
"Imagify travaille encore. Êtes-vous sûr(e) de vouloir quitter cette page ?"
|
1173 |
|
1174 |
+
#: inc/functions/i18n.php:101
|
1175 |
msgid "F j, Y"
|
1176 |
+
msgstr "j F Y"
|
1177 |
|
1178 |
+
#: inc/functions/process.php:40
|
1179 |
msgid ""
|
1180 |
+
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1181 |
+
"couple of minutes."
|
1182 |
msgstr ""
|
1183 |
+
"Désolé, nos serveurs sont temporairement inaccessibles. Nous vous "
|
1184 |
+
"recommandons de ré-essayer dans quelques minutes."
|
1185 |
|
1186 |
+
#: inc/functions/process.php:46
|
1187 |
msgid "External HTTP requests are blocked"
|
1188 |
msgstr "Les requêtes HTTP externes sont bloquées"
|
1189 |
|
1190 |
+
#: inc/functions/process.php:52
|
1191 |
msgid "File path is empty"
|
1192 |
msgstr "Le chemin du fichier est vide"
|
1193 |
|
1194 |
+
#: inc/functions/process.php:58
|
1195 |
#, php-format
|
1196 |
msgid "Could not find %s"
|
1197 |
msgstr "Impossible de trouver %s"
|
1198 |
|
1199 |
+
#: inc/functions/process.php:63
|
1200 |
#, php-format
|
1201 |
msgid "%s is not writable"
|
1202 |
msgstr "%s n’est pas accessible en écriture"
|
1203 |
|
1204 |
+
#: inc/functions/process.php:72
|
1205 |
#, php-format
|
1206 |
msgid "Skipped (%s), image not found."
|
1207 |
msgstr "Ignoré (%s), image introuvable."
|
1208 |
|
1209 |
+
#~ msgid "https://wordpress.org/plugins/imagify/"
|
1210 |
+
#~ msgstr "https://fr.wordpress.org/plugins/imagify/"
|
|
|
1211 |
|
1212 |
+
#~ msgid ""
|
1213 |
+
#~ "Dramaticaly reduce image file sizes without losing quality, make your "
|
1214 |
+
#~ "website load faster, boost your SEO and save money on your bandwith using "
|
1215 |
+
#~ "Imagify, the new most advanced image optimization tool."
|
1216 |
+
#~ msgstr ""
|
1217 |
+
#~ "Réduisez drastiquement la taille de vos images sans perte de qualité, "
|
1218 |
+
#~ "améliorez la vitesse de chargement de votre site web, boostez votre SEO "
|
1219 |
+
#~ "et économisez de la bande passante (et de l’argent) en utilisant Imagify, "
|
1220 |
+
#~ "l’outil le plus avancé pour optimiser vos images."
|
|
|
1221 |
|
1222 |
+
#~ msgid "WP Media"
|
1223 |
+
#~ msgstr "WP Media"
|
|
|
1224 |
|
1225 |
+
#~ msgid "http://wp-media.me"
|
1226 |
+
#~ msgstr "http://wp-media.me"
|
|
|
1227 |
|
1228 |
#~ msgid ""
|
1229 |
+
#~ "All images greater than %s%% will be optimized when using a paying "
|
1230 |
+
#~ "monthly plan."
|
1231 |
#~ msgstr ""
|
1232 |
+
#~ "Toutes les images de plus de %s %% seront optimisées lors de "
|
1233 |
+
#~ "l'utilisation d'un abonnement mensuel payant."
|
1234 |
|
1235 |
#~ msgid "You optimized %s of images on your website"
|
1236 |
#~ msgstr "Vous avez optimisé %s des images de votre site"
|
1237 |
|
1238 |
#~ msgid ""
|
1239 |
+
#~ "Images greater than 5 MB will be optimized when using a paying monthly "
|
1240 |
+
#~ "plan."
|
1241 |
#~ msgstr ""
|
1242 |
+
#~ "Les images supérieures à 5 Mo seront optimisées lors de l'utilisation "
|
1243 |
+
#~ "d'un forfait mensuel payant."
|
1244 |
|
1245 |
#~ msgid "Your default setting:"
|
1246 |
#~ msgstr "Votre réglage par défaut :"
|
1258 |
#~ msgstr ""
|
1259 |
#~ "Réduisez drastiquement le poids de vos images sans perte de qualité, "
|
1260 |
#~ "accélérez la rapidité de votre site, boostez votre SEO et économisez de "
|
1261 |
+
#~ "l’argent sur votre bande passante en utilisant Imagify, le nouvel outil "
|
1262 |
+
#~ "le plus avancé d’optimisation des images."
|
1263 |
|
1264 |
#~ msgid ""
|
1265 |
#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and "
|
1266 |
#~ "improved your website's by reducing your images size."
|
1267 |
#~ msgstr ""
|
1268 |
+
#~ "%1$Félicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et "
|
1269 |
+
#~ "améliorez le temps de chargement de votre site en réduisant le poids de "
|
1270 |
+
#~ "vos images."
|
1271 |
|
1272 |
#~ msgid ""
|
1273 |
#~ "Sorry, our servers are temporally unaccessible. Please, try again in a "
|
1287 |
|
1288 |
#~ msgid ""
|
1289 |
#~ "If you are a photographer, you may be interested in by this option if you "
|
1290 |
+
#~ "are displaying some infos like your the model of your camera on your "
|
1291 |
+
#~ "pages."
|
1292 |
#~ msgstr ""
|
1293 |
+
#~ "Si vous êtes un photographe, vous pourriez être intéressé par cette "
|
1294 |
+
#~ "option si vous affichez quelques infos comme votre le modèle de votre "
|
1295 |
+
#~ "appareil photo sur vos pages."
|
1296 |
|
1297 |
#~ msgid "Checking in process..."
|
1298 |
#~ msgstr "Vérification en cours…"
|
1299 |
|
1300 |
#~ msgid ""
|
1301 |
+
#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and "
|
1302 |
+
#~ "reduced by %1$s%4$s%2$s%% your images size."
|
1303 |
#~ msgstr ""
|
1304 |
+
#~ "%1$sFélicitations%2$s, vous avez optimisé %1$s%3$d images %2$s et réduit "
|
1305 |
+
#~ "de %1$s%4$s%2$s%% le poids de vos images."
|
1306 |
|
1307 |
#~ msgid ""
|
1308 |
#~ "Keep all EXIF data from your images. Exif are informations stored in your "
|
1313 |
#~ "d’exposition, ISO, etc …"
|
1314 |
|
1315 |
#~ msgid ""
|
1316 |
+
#~ "This will provide a huge savings on the initial weight. Sometimes the "
|
1317 |
+
#~ "image quality could be degraded."
|
1318 |
#~ msgstr ""
|
1319 |
#~ "Cela permettra de considérablement réduire le poids initial. Parfois, la "
|
1320 |
#~ "qualité de l’image pourra être légèrement dégradée."
|
1375 |
#~ "niveau votre abonnement pour continuer à optimiser vos images."
|
1376 |
|
1377 |
#~ msgid ""
|
1378 |
+
#~ "You have almost used all your credit. Don't forget to upgrade your "
|
1379 |
+
#~ "account to continue optimizing your images."
|
1380 |
#~ msgstr ""
|
1381 |
#~ "Vous avez bientôt utilisé tout votre crédit. N’oubliez pas de mettre à "
|
1382 |
#~ "niveau votre abonnement pour continuer à optimiser vos images."
|
1411 |
#~ "You can log in to your Imagify account to %sbuy a pack or subscribe to a "
|
1412 |
#~ "plan%s."
|
1413 |
#~ msgstr ""
|
1414 |
+
#~ "Vous pouvez vous connecter à votre compte Imagify pour %sacheter un pack "
|
1415 |
+
#~ "ou souscrire à un plan%s."
|
1416 |
|
1417 |
#~ msgid ""
|
1418 |
+
#~ "You have consumed all your credits for this month. You will have <strong>"
|
1419 |
+
#~ "%s back on %s</strong>."
|
1420 |
#~ msgstr ""
|
1421 |
#~ "Vous avez consommé tous les crédits pour ce mois. Vous aurez à nouveau "
|
1422 |
#~ "<strong>%s le %s</strong>."
|
1454 |
#~ "d’optimisation."
|
1455 |
|
1456 |
#~ msgid ""
|
1457 |
+
#~ "This mode is a lossless optimization, your images will be optimized "
|
1458 |
+
#~ "without any visible change."
|
1459 |
#~ msgstr ""
|
1460 |
+
#~ "Ce niveau permet d'optimiser sans perte, vos images seront optimisées "
|
1461 |
+
#~ "sans aucun changement visible."
|
1462 |
|
1463 |
#~ msgid ""
|
1464 |
#~ "This mode will apply all optimizations available to compress furthermore "
|
1467 |
#~ "Ce niveau appliquera toutes les optimisations disponibles pour compresser "
|
1468 |
#~ "les images."
|
1469 |
|
1470 |
+
#~ msgid ""
|
1471 |
+
#~ "If you want the highest weight reduction, we recommend you this mode."
|
1472 |
#~ msgstr ""
|
1473 |
#~ "Si vous souhaitez une réduction du poids plus performante, nous vous "
|
1474 |
#~ "recommandons ce niveau."
|
1475 |
|
1476 |
#~ msgid "Optimize automatically every image you will upload to WordPress."
|
1477 |
+
#~ msgstr ""
|
1478 |
+
#~ "Optimisez automatiquement chaque image que vous enverrez à WordPress."
|
1479 |
|
1480 |
#~ msgid ""
|
1481 |
#~ "Please be aware that optimizing a large number of images can take a while "
|
1516 |
#~ "Is your WordPress website too slow? Discover the best caching plugin to "
|
1517 |
#~ "speed up your website."
|
1518 |
#~ msgstr ""
|
1519 |
+
#~ "Votre site WordPress est lent ? Découvrer le meilleur plugin de cache "
|
1520 |
+
#~ "pour accélérer votre site."
|
1521 |
|
1522 |
#~ msgid ""
|
1523 |
#~ "Please be aware that optimizing a large number of images can take a whil "
|
1524 |
#~ "depends on your server and network speed."
|
1525 |
#~ msgstr ""
|
1526 |
+
#~ "Soyez conscient que l’optimisation d’une grand nombre d’images peut "
|
1527 |
+
#~ "prendre du temps en fonction de la rapidité de votre serveur et de votre "
|
1528 |
+
#~ "connexion."
|
1529 |
|
1530 |
#~ msgid "Your API key isn't valid."
|
1531 |
#~ msgstr "Votre clé API n’est pas valide."
|
languages/imagify-it_IT.mo
CHANGED
Binary file
|
languages/imagify-it_IT.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
-
"Last-Translator:
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -17,18 +17,18 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
|
|
22 |
|
23 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
|
25 |
-
#: inc/functions/admin-ui.php:
|
26 |
-
#: inc/functions/i18n.php:
|
27 |
msgid "Optimize"
|
28 |
msgstr "Ottimizza"
|
29 |
|
30 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
31 |
-
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:
|
32 |
msgid "Restore Original"
|
33 |
msgstr "Ripristina originale"
|
34 |
|
@@ -41,15 +41,15 @@ msgstr "Ottimizzazione massiva"
|
|
41 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
|
42 |
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
|
43 |
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
|
44 |
-
#: inc/functions/admin-ui.php:
|
45 |
msgid "Optimizing..."
|
46 |
msgstr "Ottimizzando…"
|
47 |
|
48 |
-
#: inc/admin/ajax.php:
|
49 |
msgid "Oops, It's almost over!"
|
50 |
msgstr "Ops, quasi finito!"
|
51 |
|
52 |
-
#: inc/admin/ajax.php:
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
@@ -58,17 +58,17 @@ msgstr ""
|
|
58 |
"Hai usato quasi tutto il tuo credito.%sNon dimenticare di aggiornare il tuo "
|
59 |
"abbonamento per continuare a ottimizzare le tue immagini."
|
60 |
|
61 |
-
#: inc/admin/ajax.php:
|
62 |
msgid "View My Subscription"
|
63 |
msgstr "Vedere il mio abbonamento"
|
64 |
|
65 |
-
#: inc/admin/ajax.php:
|
66 |
-
#: inc/functions/i18n.php:
|
67 |
msgid "Oops, It's Over!"
|
68 |
msgstr "Ops, finito!"
|
69 |
|
70 |
-
#: inc/admin/ajax.php:
|
71 |
-
#: inc/functions/i18n.php:
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
@@ -77,32 +77,31 @@ msgstr ""
|
|
77 |
"Hai consumato tutto il tuo credito per questo mese. Avrai di nuovo <strong>"
|
78 |
"%s il %s</strong>."
|
79 |
|
80 |
-
#: inc/admin/ajax.php:
|
81 |
msgid "Upgrade My Subscription"
|
82 |
msgstr "Aggiornare il mio abbonamento"
|
83 |
|
84 |
-
#: inc/admin/ajax.php:
|
85 |
msgid "Account status"
|
86 |
msgstr "Stato del mio account"
|
87 |
|
88 |
-
#: inc/admin/ajax.php:
|
89 |
msgid "Your subscription:"
|
90 |
msgstr "Il tuo abbonamento:"
|
91 |
|
92 |
-
#: inc/admin/ajax.php:
|
93 |
#, php-format
|
94 |
msgid "You have %s space credit left"
|
95 |
msgstr "Ti rimangono %s di spazio"
|
96 |
|
97 |
-
#: inc/admin/ajax.php:
|
98 |
msgid "View my subscription"
|
99 |
msgstr "Vedere il mio abbonamento"
|
100 |
|
101 |
-
#: inc/admin/media.php:63 inc/functions/i18n.php:
|
102 |
msgid "Compare Original VS Optimized"
|
103 |
msgstr "Confronta originale VS ottimizzata"
|
104 |
|
105 |
-
#. Plugin Name of the plugin/theme
|
106 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
107 |
#: inc/admin/upload.php:12
|
108 |
msgid "Imagify"
|
@@ -116,11 +115,11 @@ msgstr "Chiave API non valida"
|
|
116 |
msgid "Check your Settings"
|
117 |
msgstr "Verifica delle tue impostazioni"
|
118 |
|
119 |
-
#: inc/admin/options.php:
|
120 |
msgid "Cheatin’ uh?"
|
121 |
msgstr "Stai imbrogliando, vero?"
|
122 |
|
123 |
-
#: inc/admin/options.php:
|
124 |
msgid "<strong>ERROR</strong>: options page not found."
|
125 |
msgstr "<strong>Errore</strong>: pagina delle opzioni non trovata."
|
126 |
|
@@ -251,12 +250,10 @@ msgstr "Imagifica tutto!"
|
|
251 |
|
252 |
#: inc/admin/ui/bulk.php:220
|
253 |
#, php-format
|
254 |
-
msgid ""
|
255 |
-
"All images greater than %s will be optimized when using a paying monthly "
|
256 |
-
"plan."
|
257 |
msgstr ""
|
258 |
-
"Tutte le immagini superiori a %s
|
259 |
-
"
|
260 |
|
261 |
#: inc/admin/ui/bulk.php:239
|
262 |
msgid "Well done!"
|
@@ -288,7 +285,7 @@ msgstr "Stato"
|
|
288 |
msgid "Original"
|
289 |
msgstr "Originale"
|
290 |
|
291 |
-
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:
|
292 |
msgid "Optimized"
|
293 |
msgstr "Ottimizzato"
|
294 |
|
@@ -325,23 +322,23 @@ msgstr "Guadagno:"
|
|
325 |
msgid "%sStart the bulk optimization%s"
|
326 |
msgstr "%sInizia l’ottimizzazione massiva%s"
|
327 |
|
328 |
-
#: inc/admin/ui/notices.php:
|
329 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
330 |
msgstr ""
|
331 |
"Benvenuti su Imagify, il modo migliore per ottimizzare facilmente le vostre "
|
332 |
"immagini!"
|
333 |
|
334 |
-
#: inc/admin/ui/notices.php:
|
335 |
-
#: inc/admin/ui/notices.php:
|
336 |
-
#: inc/admin/ui/notices.php:
|
337 |
msgid "Dismiss this notice"
|
338 |
msgstr "Ignora questo avviso"
|
339 |
|
340 |
-
#: inc/admin/ui/notices.php:
|
341 |
msgid "Create an Account"
|
342 |
msgstr "Crea un account"
|
343 |
|
344 |
-
#: inc/admin/ui/notices.php:
|
345 |
msgid ""
|
346 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
347 |
"account in a few seconds!"
|
@@ -349,15 +346,15 @@ msgstr ""
|
|
349 |
"Ancora non hai un account Imagify? Ottimizza le tue immagini creando un "
|
350 |
"account in pochi secondi!"
|
351 |
|
352 |
-
#: inc/admin/ui/notices.php:
|
353 |
msgid "Sign up, It's FREE!"
|
354 |
msgstr "Registrati, è GRATIS!"
|
355 |
|
356 |
-
#: inc/admin/ui/notices.php:
|
357 |
msgid "Enter your API Key"
|
358 |
msgstr "Inserisci la tua chiave API"
|
359 |
|
360 |
-
#: inc/admin/ui/notices.php:
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"Save your API Key you have received by email or you can get it on your "
|
@@ -366,29 +363,30 @@ msgstr ""
|
|
366 |
"Salva la chiave API che hai ricevuto via email, oppure recuperala nella "
|
367 |
"pagina del %stuo account Imagify.%s"
|
368 |
|
369 |
-
#: inc/admin/ui/notices.php:
|
370 |
msgid "I have my API key"
|
371 |
msgstr "Ho la mia chiave API"
|
372 |
|
373 |
-
#: inc/admin/ui/notices.php:
|
374 |
msgid "Configure it"
|
375 |
msgstr "Configuralo"
|
376 |
|
377 |
-
#: inc/admin/ui/notices.php:
|
378 |
msgid ""
|
379 |
"It’s almost done! You have just to configure your optimization settings."
|
380 |
msgstr ""
|
381 |
"È quasi fatta! Devi solo configurare le tue impostazioni di ottimizzazione."
|
382 |
|
383 |
-
#: inc/admin/ui/notices.php:
|
384 |
msgid "Go to Settings"
|
385 |
msgstr "Vai alle impostazioni"
|
386 |
|
387 |
-
#: inc/admin/ui/notices.php:
|
|
|
388 |
msgid "Your API key isn't valid!"
|
389 |
msgstr "La tua chiave API non è valida!"
|
390 |
|
391 |
-
#: inc/admin/ui/notices.php:
|
392 |
#, php-format
|
393 |
msgid ""
|
394 |
"Go to your Imagify account page to get your API Key and specify it on "
|
@@ -399,7 +397,7 @@ msgstr ""
|
|
399 |
"specificala nelle %1$stue impostazioni%3$s oppure %2$screa un account gratis"
|
400 |
"%3$s se ancora non ne hai uno."
|
401 |
|
402 |
-
#: inc/admin/ui/notices.php:
|
403 |
msgid ""
|
404 |
"The following plugins are not compatible with this plugin and may cause "
|
405 |
"unexpected results:"
|
@@ -407,15 +405,15 @@ msgstr ""
|
|
407 |
"I seguenti plugin non sono compatibili con questo plugin e possono causare "
|
408 |
"risultati imprevisti:"
|
409 |
|
410 |
-
#: inc/admin/ui/notices.php:
|
411 |
msgid "Deactivate"
|
412 |
msgstr "Disattivare"
|
413 |
|
414 |
-
#: inc/admin/ui/notices.php:
|
415 |
msgid "The external HTTP requests are blocked!"
|
416 |
msgstr "Le richieste HTTP esterne sono bloccate!"
|
417 |
|
418 |
-
#: inc/admin/ui/notices.php:
|
419 |
msgid ""
|
420 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
421 |
"config.php</code> to block all external HTTP requests."
|
@@ -423,7 +421,7 @@ msgstr ""
|
|
423 |
"Hai definito la costante <code>WP_HTTP_BLOCK_EXTERNAL</code> nel file "
|
424 |
"<code>wp-config.php</code> per bloccare tutte le richieste HTTP esterne."
|
425 |
|
426 |
-
#: inc/admin/ui/notices.php:
|
427 |
msgid ""
|
428 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
429 |
"config.php</code> file so that it works correctly."
|
@@ -431,26 +429,26 @@ msgstr ""
|
|
431 |
"Per ottimizzare le tue immagini, devi inserire il codice seguente nel tuo "
|
432 |
"file <code>wp-config.php</code> in modo che funzioni correttamente."
|
433 |
|
434 |
-
#: inc/admin/ui/notices.php:
|
435 |
msgid "Click on the field and press Ctrl-A to select all."
|
436 |
msgstr "Fare clic sul campo e premere Ctrl-A per selezionare tutto."
|
437 |
|
438 |
-
#: inc/admin/ui/notices.php:
|
439 |
msgid "You're missing out!"
|
440 |
msgstr "Ti stai perdendo qualcosa!"
|
441 |
|
442 |
-
#: inc/admin/ui/notices.php:
|
443 |
msgid "Use the List view to optimize images with Imagify."
|
444 |
msgstr ""
|
445 |
"Utilizzare la visualizzazione di Lista per ottimizzare le immagini con "
|
446 |
"Imagify."
|
447 |
|
448 |
-
#: inc/admin/ui/notices.php:
|
449 |
msgid "Switch to the List View"
|
450 |
msgstr "Passa a visualizzazione Lista"
|
451 |
|
452 |
-
#: inc/admin/ui/notices.php:
|
453 |
-
#: inc/functions/i18n.php:
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
@@ -459,20 +457,20 @@ msgstr ""
|
|
459 |
"Per continuare a ottimizzare le tue immagini, entra nel tuo account Imagify "
|
460 |
"per %scomprare un pack o sottoscrivere un abbonamento %s."
|
461 |
|
462 |
-
#: inc/admin/ui/notices.php:
|
463 |
msgid "Discover the best caching plugin to speed up your website."
|
464 |
msgstr "Scopri i migliori plugin di cache per velocizzare il tuo sito Web."
|
465 |
|
466 |
-
#: inc/admin/ui/notices.php:
|
467 |
#, php-format
|
468 |
msgid "%sGet %s off%s with this coupon code:%s"
|
469 |
msgstr "Ottieni il %s%s%s di sconto usando questo coupon:%s"
|
470 |
|
471 |
-
#: inc/admin/ui/notices.php:
|
472 |
msgid "Get WP Rocket now"
|
473 |
msgstr "Acquista WP Rocket!"
|
474 |
|
475 |
-
#: inc/admin/ui/notices.php:
|
476 |
#, php-format
|
477 |
msgid ""
|
478 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
@@ -481,7 +479,7 @@ msgstr ""
|
|
481 |
"%1$sCongratulazioni!%2$s Hai ottimizzato %1$s%3$d immagini%2$s e velocizzato "
|
482 |
"così il tuo sito web."
|
483 |
|
484 |
-
#: inc/admin/ui/notices.php:
|
485 |
#, php-format
|
486 |
msgid ""
|
487 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
@@ -498,7 +496,7 @@ msgstr "Il tuo sito web è troppo lento?"
|
|
498 |
msgid "API Key"
|
499 |
msgstr "Chiave API"
|
500 |
|
501 |
-
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:
|
502 |
msgid "Your API key is valid."
|
503 |
msgstr "La tua chiave API è valida."
|
504 |
|
@@ -711,7 +709,7 @@ msgstr ""
|
|
711 |
"un po’ la qualità, ti raccomandiamo di usare questa modalità."
|
712 |
|
713 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
714 |
-
#: inc/functions/admin-ui.php:
|
715 |
msgid "Close"
|
716 |
msgstr "Chiudi"
|
717 |
|
@@ -739,17 +737,17 @@ msgstr "Livello:"
|
|
739 |
|
740 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
741 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
742 |
-
#: inc/functions/i18n.php:
|
743 |
msgid "File Size:"
|
744 |
msgstr "Dimensione del file:"
|
745 |
|
746 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
747 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
748 |
-
#: inc/functions/i18n.php:
|
749 |
msgid "Original Saving:"
|
750 |
msgstr "Risparmio originale:"
|
751 |
|
752 |
-
#: inc/admin/upload.php:42 inc/functions/i18n.php:
|
753 |
msgid "Unoptimized"
|
754 |
msgstr "Non ottimizzato"
|
755 |
|
@@ -765,7 +763,7 @@ msgstr "Filtra per stato"
|
|
765 |
msgid "All images"
|
766 |
msgstr "Tutte le immagini"
|
767 |
|
768 |
-
#: inc/classes/class-attachment.php:
|
769 |
msgid ""
|
770 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
771 |
"you want to optimize it."
|
@@ -825,228 +823,228 @@ msgstr "Ri-ottimizza a %s"
|
|
825 |
msgid "%s can't be optimized"
|
826 |
msgstr "%s non ottimizzabile"
|
827 |
|
828 |
-
#: inc/functions/admin-ui.php:
|
829 |
msgid "What plan do I need?"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: inc/functions/admin-ui.php:
|
833 |
msgid "You're new to Imagify?"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: inc/functions/admin-ui.php:
|
837 |
msgid ""
|
838 |
"Let us help you by analyzing your existing images and determinate the best "
|
839 |
"plan for you"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: inc/functions/admin-ui.php:
|
843 |
msgid "Choose Plan"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: inc/functions/admin-ui.php:
|
847 |
msgid "Payment Info"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: inc/functions/admin-ui.php:
|
851 |
msgid "We analysed your images"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: inc/functions/admin-ui.php:
|
855 |
#, php-format
|
856 |
msgid "You have %s images"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: inc/functions/admin-ui.php:
|
860 |
#, php-format
|
861 |
msgid "You actually have %s of images in your library."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/functions/admin-ui.php:
|
865 |
#, php-format
|
866 |
msgid "You upload around %s of images per month."
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: inc/functions/admin-ui.php:
|
870 |
msgid "We recommend you this plan"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: inc/functions/admin-ui.php:
|
874 |
msgid "Subscribe a monthly plan"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: inc/functions/admin-ui.php:
|
878 |
msgid "Subscribe a yearly plan"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: inc/functions/admin-ui.php:
|
882 |
-
#: inc/functions/admin-ui.php:
|
883 |
msgid "Monthly"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: inc/functions/admin-ui.php:
|
887 |
-
#: inc/functions/admin-ui.php:
|
888 |
msgid "Yearly"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: inc/functions/admin-ui.php:
|
892 |
-
#: inc/functions/admin-ui.php:
|
893 |
msgid "2 months free"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: inc/functions/admin-ui.php:
|
897 |
-
#: inc/functions/admin-ui.php:
|
898 |
msgid "/month"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: inc/functions/admin-ui.php:
|
902 |
-
#: inc/functions/admin-ui.php:
|
903 |
#, php-format
|
904 |
msgid "approx: %s images"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: inc/functions/admin-ui.php:
|
908 |
#, php-format
|
909 |
msgid ""
|
910 |
"%s per<br>\n"
|
911 |
"additionnal Gb"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: inc/functions/admin-ui.php:
|
915 |
-
#: inc/functions/admin-ui.php:
|
916 |
msgid "Choose another plan"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: inc/functions/admin-ui.php:
|
920 |
msgid "Optimize the images you already have, buy a one-time plan"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: inc/functions/admin-ui.php:
|
924 |
msgid "Checkout"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: inc/functions/admin-ui.php:
|
928 |
msgid ""
|
929 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
930 |
"happens automatically each month or year depending the billing period you "
|
931 |
"choose."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: inc/functions/admin-ui.php:
|
935 |
msgid "Monthly Plans"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: inc/functions/admin-ui.php:
|
939 |
msgid "One Time Plans"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: inc/functions/admin-ui.php:
|
943 |
msgid ""
|
944 |
"Monthly plans come with credits which is renewed every months. The billing "
|
945 |
"happens automatically each month or year depending the billing period you "
|
946 |
"choose."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: inc/functions/admin-ui.php:
|
950 |
msgid "we recommend for you"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: inc/functions/admin-ui.php:
|
954 |
msgid "Choose plan"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: inc/functions/admin-ui.php:
|
958 |
msgid "Need more?"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: inc/functions/admin-ui.php:
|
962 |
msgid "for special needs"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: inc/functions/admin-ui.php:
|
966 |
msgid "Contact Us"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: inc/functions/admin-ui.php:
|
970 |
msgid ""
|
971 |
"One time plans are useful if you have a lots of existing images which need "
|
972 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
973 |
"You will pay only once."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: inc/functions/admin-ui.php:
|
977 |
msgid "Your order"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: inc/functions/admin-ui.php:
|
981 |
#, php-format
|
982 |
msgid "%scancel%sYou just removed %s"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: inc/functions/admin-ui.php:
|
986 |
msgid "Remove this item"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: inc/functions/admin-ui.php:
|
990 |
#, php-format
|
991 |
msgid "%s per month"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: inc/functions/admin-ui.php:
|
995 |
#, php-format
|
996 |
msgid "one time %s"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: inc/functions/admin-ui.php:
|
1000 |
#, php-format
|
1001 |
msgid ""
|
1002 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
1003 |
"per year!</strong>"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: inc/functions/admin-ui.php:
|
1007 |
#, php-format
|
1008 |
msgid ""
|
1009 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
1010 |
"strong>"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: inc/functions/admin-ui.php:
|
1014 |
msgid "Thank you for being awesome!"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: inc/functions/admin-ui.php:
|
1018 |
msgid "What do our user think about Imagify"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: inc/functions/admin-ui.php:
|
1022 |
msgid "Secure Credit Card Payment"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: inc/functions/admin-ui.php:
|
1026 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: inc/functions/i18n.php:
|
1030 |
msgid "Let's get you started!"
|
1031 |
msgstr "Iniziamo!"
|
1032 |
|
1033 |
-
#: inc/functions/i18n.php:
|
1034 |
msgid "Enter your email to get an API key:"
|
1035 |
msgstr "Inserisci la tua email per ottenere una chiave API:"
|
1036 |
|
1037 |
-
#: inc/functions/i18n.php:
|
1038 |
msgid "Sign Up"
|
1039 |
msgstr "Registrati"
|
1040 |
|
1041 |
-
#: inc/functions/i18n.php:
|
1042 |
msgid "You need to specify an email!"
|
1043 |
msgstr "È necessario specificare un indirizzo email!"
|
1044 |
|
1045 |
-
#: inc/functions/i18n.php:
|
1046 |
msgid "Congratulations!"
|
1047 |
msgstr "Congratulazioni!"
|
1048 |
|
1049 |
-
#: inc/functions/i18n.php:
|
1050 |
msgid ""
|
1051 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1052 |
"are going to receive an email with API key."
|
@@ -1054,23 +1052,27 @@ msgstr ""
|
|
1054 |
"Il tuo account è stato creato con successo. Per favore controlla la tua "
|
1055 |
"casella email, stai per ricevere un messaggio con la chiave API."
|
1056 |
|
1057 |
-
#: inc/functions/i18n.php:
|
1058 |
msgid "Connect to Imagify!"
|
1059 |
msgstr "Connettiti a Imagify!"
|
1060 |
|
1061 |
-
#: inc/functions/i18n.php:
|
1062 |
msgid "Paste your API key below:"
|
1063 |
msgstr "Incolla qui sotto la chiave API:"
|
1064 |
|
1065 |
-
#: inc/functions/i18n.php:
|
1066 |
msgid "Connect me"
|
1067 |
msgstr "Connettimi"
|
1068 |
|
1069 |
-
#: inc/functions/i18n.php:
|
1070 |
msgid "Check in progress..."
|
1071 |
msgstr "Verifica in corso…"
|
1072 |
|
1073 |
#: inc/functions/i18n.php:30
|
|
|
|
|
|
|
|
|
1074 |
msgid ""
|
1075 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1076 |
"optimize your images."
|
@@ -1078,15 +1080,15 @@ msgstr ""
|
|
1078 |
"La tua chiave API è valida. Ora puoi configurare le impostazioni di Imagify "
|
1079 |
"per ottimizzare le tue immagini."
|
1080 |
|
1081 |
-
#: inc/functions/i18n.php:
|
1082 |
msgid "Cancel"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: inc/functions/i18n.php:
|
1086 |
msgid "Don't Need a Parachute?"
|
1087 |
msgstr "Non hai bisogno di un paracadute?"
|
1088 |
|
1089 |
-
#: inc/functions/i18n.php:
|
1090 |
msgid ""
|
1091 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1092 |
"images to another compression level and restore your original images in case "
|
@@ -1096,19 +1098,19 @@ msgstr ""
|
|
1096 |
"immagini a un altro livello di compressione o ripristinare le originali in "
|
1097 |
"caso di necessità."
|
1098 |
|
1099 |
-
#: inc/functions/i18n.php:
|
1100 |
msgid "Original Image"
|
1101 |
msgstr "Immagine originale"
|
1102 |
|
1103 |
-
#: inc/functions/i18n.php:
|
1104 |
msgid "Optimized Image"
|
1105 |
msgstr "Immagine ottimizzata"
|
1106 |
|
1107 |
-
#: inc/functions/i18n.php:
|
1108 |
msgid "Please wait..."
|
1109 |
msgstr "Attendere per favore…"
|
1110 |
|
1111 |
-
#: inc/functions/i18n.php:
|
1112 |
msgid ""
|
1113 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1114 |
"the number of images."
|
@@ -1116,11 +1118,11 @@ msgstr ""
|
|
1116 |
"Stiamo cercando di ottenere le immagini non ottimizzate, il che potrebbe "
|
1117 |
"richiedere del tempo in base al numero di immagini."
|
1118 |
|
1119 |
-
#: inc/functions/i18n.php:
|
1120 |
msgid "Oops, There is something wrong!"
|
1121 |
msgstr "Ups, qualcosa è andato storto!"
|
1122 |
|
1123 |
-
#: inc/functions/i18n.php:
|
1124 |
msgid ""
|
1125 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1126 |
"Try again and if the issue still persist, please contact us!"
|
@@ -1129,20 +1131,20 @@ msgstr ""
|
|
1129 |
"immagini non ottimizzate. Prova di nuovo e, se il problema persiste, "
|
1130 |
"contattaci per favore!"
|
1131 |
|
1132 |
-
#: inc/functions/i18n.php:
|
1133 |
msgid "Error"
|
1134 |
msgstr "Errore"
|
1135 |
|
1136 |
-
#: inc/functions/i18n.php:
|
1137 |
msgid "Hold on!"
|
1138 |
msgstr "Resisti!"
|
1139 |
|
1140 |
-
#: inc/functions/i18n.php:
|
1141 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1142 |
msgstr ""
|
1143 |
"Tutte le tue immagini sono state ottimizzate da Imagify. Congratulazioni!"
|
1144 |
|
1145 |
-
#: inc/functions/i18n.php:
|
1146 |
#, php-format
|
1147 |
msgid ""
|
1148 |
"Discover @imagify, the new compression tool to optimize your images for "
|
@@ -1151,16 +1153,16 @@ msgstr ""
|
|
1151 |
"Scopri @imagify, il nuovo strumento di compressione per ottimizzare le tue "
|
1152 |
"immagini gratuitamente. Ho risparmiato %1$s di %2$s!"
|
1153 |
|
1154 |
-
#: inc/functions/i18n.php:
|
1155 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1156 |
msgstr ""
|
1157 |
"Imagify sta ancora lavorando. Sei sicuro di voler abbandonare la pagina?"
|
1158 |
|
1159 |
-
#: inc/functions/i18n.php:
|
1160 |
msgid "F j, Y"
|
1161 |
msgstr "F j, Y"
|
1162 |
|
1163 |
-
#: inc/functions/process.php:
|
1164 |
msgid ""
|
1165 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1166 |
"couple of minutes."
|
@@ -1168,48 +1170,29 @@ msgstr ""
|
|
1168 |
"Ci scusiamo, i nostri server sono temporalmente inaccessibili. Per favore, "
|
1169 |
"riprova fra qualche minuto."
|
1170 |
|
1171 |
-
#: inc/functions/process.php:
|
1172 |
msgid "External HTTP requests are blocked"
|
1173 |
msgstr "Le richieste HTTP esterne sono bloccate"
|
1174 |
|
1175 |
-
#: inc/functions/process.php:
|
1176 |
msgid "File path is empty"
|
1177 |
msgstr "Il percorso del file è vuoto"
|
1178 |
|
1179 |
-
#: inc/functions/process.php:
|
1180 |
#, php-format
|
1181 |
msgid "Could not find %s"
|
1182 |
msgstr "Impossibile trovare %s"
|
1183 |
|
1184 |
-
#: inc/functions/process.php:
|
1185 |
#, php-format
|
1186 |
msgid "%s is not writable"
|
1187 |
msgstr "%s non è riscrivibile"
|
1188 |
|
1189 |
-
#: inc/functions/process.php:
|
1190 |
#, php-format
|
1191 |
msgid "Skipped (%s), image not found."
|
1192 |
msgstr "Abbiamo saltato (%s), immagine non trovata."
|
1193 |
|
1194 |
-
#. Plugin URI of the plugin/theme
|
1195 |
-
msgid "https://wordpress.org/plugins/imagify/"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#. Description of the plugin/theme
|
1199 |
-
msgid ""
|
1200 |
-
"Dramaticaly reduce image file sizes without losing quality, make your "
|
1201 |
-
"website load faster, boost your SEO and save money on your bandwith using "
|
1202 |
-
"Imagify, the new most advanced image optimization tool."
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#. Author of the plugin/theme
|
1206 |
-
msgid "WP Media"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#. Author URI of the plugin/theme
|
1210 |
-
msgid "http://wp-media.me"
|
1211 |
-
msgstr ""
|
1212 |
-
|
1213 |
#~ msgid "Your default setting:"
|
1214 |
#~ msgstr "Impostazioni standard:"
|
1215 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Imagify\n"
|
4 |
+
"POT-Creation-Date: 2016-09-23 11:02-0500\n"
|
5 |
+
"PO-Revision-Date: 2016-09-23 11:03-0500\n"
|
6 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-WPHeader: imagify.php\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
24 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
|
25 |
+
#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
|
26 |
+
#: inc/functions/i18n.php:64
|
27 |
msgid "Optimize"
|
28 |
msgstr "Ottimizza"
|
29 |
|
30 |
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
31 |
+
#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
|
32 |
msgid "Restore Original"
|
33 |
msgstr "Ripristina originale"
|
34 |
|
41 |
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
|
42 |
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
|
43 |
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
|
44 |
+
#: inc/functions/admin-ui.php:205 inc/functions/admin-ui.php:215
|
45 |
msgid "Optimizing..."
|
46 |
msgstr "Ottimizzando…"
|
47 |
|
48 |
+
#: inc/admin/ajax.php:507
|
49 |
msgid "Oops, It's almost over!"
|
50 |
msgstr "Ops, quasi finito!"
|
51 |
|
52 |
+
#: inc/admin/ajax.php:508
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"You have almost used all your credit.%sDon't forget to upgrade your "
|
58 |
"Hai usato quasi tutto il tuo credito.%sNon dimenticare di aggiornare il tuo "
|
59 |
"abbonamento per continuare a ottimizzare le tue immagini."
|
60 |
|
61 |
+
#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
|
62 |
msgid "View My Subscription"
|
63 |
msgstr "Vedere il mio abbonamento"
|
64 |
|
65 |
+
#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
|
66 |
+
#: inc/functions/i18n.php:84
|
67 |
msgid "Oops, It's Over!"
|
68 |
msgstr "Ops, finito!"
|
69 |
|
70 |
+
#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
|
71 |
+
#: inc/functions/i18n.php:101
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"You have consumed all your credit for this month. You will have <strong>%s "
|
77 |
"Hai consumato tutto il tuo credito per questo mese. Avrai di nuovo <strong>"
|
78 |
"%s il %s</strong>."
|
79 |
|
80 |
+
#: inc/admin/ajax.php:519
|
81 |
msgid "Upgrade My Subscription"
|
82 |
msgstr "Aggiornare il mio abbonamento"
|
83 |
|
84 |
+
#: inc/admin/ajax.php:538 inc/admin/ui/bulk.php:17
|
85 |
msgid "Account status"
|
86 |
msgstr "Stato del mio account"
|
87 |
|
88 |
+
#: inc/admin/ajax.php:539 inc/admin/ui/bulk.php:18
|
89 |
msgid "Your subscription:"
|
90 |
msgstr "Il tuo abbonamento:"
|
91 |
|
92 |
+
#: inc/admin/ajax.php:547 inc/admin/ui/bulk.php:48
|
93 |
#, php-format
|
94 |
msgid "You have %s space credit left"
|
95 |
msgstr "Ti rimangono %s di spazio"
|
96 |
|
97 |
+
#: inc/admin/ajax.php:559
|
98 |
msgid "View my subscription"
|
99 |
msgstr "Vedere il mio abbonamento"
|
100 |
|
101 |
+
#: inc/admin/media.php:63 inc/functions/i18n.php:60
|
102 |
msgid "Compare Original VS Optimized"
|
103 |
msgstr "Confronta originale VS ottimizzata"
|
104 |
|
|
|
105 |
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
|
106 |
#: inc/admin/upload.php:12
|
107 |
msgid "Imagify"
|
115 |
msgid "Check your Settings"
|
116 |
msgstr "Verifica delle tue impostazioni"
|
117 |
|
118 |
+
#: inc/admin/options.php:119
|
119 |
msgid "Cheatin’ uh?"
|
120 |
msgstr "Stai imbrogliando, vero?"
|
121 |
|
122 |
+
#: inc/admin/options.php:127
|
123 |
msgid "<strong>ERROR</strong>: options page not found."
|
124 |
msgstr "<strong>Errore</strong>: pagina delle opzioni non trovata."
|
125 |
|
250 |
|
251 |
#: inc/admin/ui/bulk.php:220
|
252 |
#, php-format
|
253 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
|
|
|
|
254 |
msgstr ""
|
255 |
+
"Tutte le immagini superiori a %s possono essere ottimizzate usando un piano "
|
256 |
+
"a pagamento"
|
257 |
|
258 |
#: inc/admin/ui/bulk.php:239
|
259 |
msgid "Well done!"
|
285 |
msgid "Original"
|
286 |
msgstr "Originale"
|
287 |
|
288 |
+
#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
|
289 |
msgid "Optimized"
|
290 |
msgstr "Ottimizzato"
|
291 |
|
322 |
msgid "%sStart the bulk optimization%s"
|
323 |
msgstr "%sInizia l’ottimizzazione massiva%s"
|
324 |
|
325 |
+
#: inc/admin/ui/notices.php:24
|
326 |
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
327 |
msgstr ""
|
328 |
"Benvenuti su Imagify, il modo migliore per ottimizzare facilmente le vostre "
|
329 |
"immagini!"
|
330 |
|
331 |
+
#: inc/admin/ui/notices.php:26 inc/admin/ui/notices.php:92
|
332 |
+
#: inc/admin/ui/notices.php:186 inc/admin/ui/notices.php:223
|
333 |
+
#: inc/admin/ui/notices.php:263 inc/admin/ui/notices.php:370
|
334 |
msgid "Dismiss this notice"
|
335 |
msgstr "Ignora questo avviso"
|
336 |
|
337 |
+
#: inc/admin/ui/notices.php:33
|
338 |
msgid "Create an Account"
|
339 |
msgstr "Crea un account"
|
340 |
|
341 |
+
#: inc/admin/ui/notices.php:34
|
342 |
msgid ""
|
343 |
"Don't have an Imagify account yet? Optimize your images by creating an "
|
344 |
"account in a few seconds!"
|
346 |
"Ancora non hai un account Imagify? Ottimizza le tue immagini creando un "
|
347 |
"account in pochi secondi!"
|
348 |
|
349 |
+
#: inc/admin/ui/notices.php:37
|
350 |
msgid "Sign up, It's FREE!"
|
351 |
msgstr "Registrati, è GRATIS!"
|
352 |
|
353 |
+
#: inc/admin/ui/notices.php:43
|
354 |
msgid "Enter your API Key"
|
355 |
msgstr "Inserisci la tua chiave API"
|
356 |
|
357 |
+
#: inc/admin/ui/notices.php:44
|
358 |
#, php-format
|
359 |
msgid ""
|
360 |
"Save your API Key you have received by email or you can get it on your "
|
363 |
"Salva la chiave API che hai ricevuto via email, oppure recuperala nella "
|
364 |
"pagina del %stuo account Imagify.%s"
|
365 |
|
366 |
+
#: inc/admin/ui/notices.php:47
|
367 |
msgid "I have my API key"
|
368 |
msgstr "Ho la mia chiave API"
|
369 |
|
370 |
+
#: inc/admin/ui/notices.php:53
|
371 |
msgid "Configure it"
|
372 |
msgstr "Configuralo"
|
373 |
|
374 |
+
#: inc/admin/ui/notices.php:54
|
375 |
msgid ""
|
376 |
"It’s almost done! You have just to configure your optimization settings."
|
377 |
msgstr ""
|
378 |
"È quasi fatta! Devi solo configurare le tue impostazioni di ottimizzazione."
|
379 |
|
380 |
+
#: inc/admin/ui/notices.php:55
|
381 |
msgid "Go to Settings"
|
382 |
msgstr "Vai alle impostazioni"
|
383 |
|
384 |
+
#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
|
385 |
+
#: inc/functions/i18n.php:78
|
386 |
msgid "Your API key isn't valid!"
|
387 |
msgstr "La tua chiave API non è valida!"
|
388 |
|
389 |
+
#: inc/admin/ui/notices.php:90
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"Go to your Imagify account page to get your API Key and specify it on "
|
397 |
"specificala nelle %1$stue impostazioni%3$s oppure %2$screa un account gratis"
|
398 |
"%3$s se ancora non ne hai uno."
|
399 |
|
400 |
+
#: inc/admin/ui/notices.php:142
|
401 |
msgid ""
|
402 |
"The following plugins are not compatible with this plugin and may cause "
|
403 |
"unexpected results:"
|
405 |
"I seguenti plugin non sono compatibili con questo plugin e possono causare "
|
406 |
"risultati imprevisti:"
|
407 |
|
408 |
+
#: inc/admin/ui/notices.php:148
|
409 |
msgid "Deactivate"
|
410 |
msgstr "Disattivare"
|
411 |
|
412 |
+
#: inc/admin/ui/notices.php:178
|
413 |
msgid "The external HTTP requests are blocked!"
|
414 |
msgstr "Le richieste HTTP esterne sono bloccate!"
|
415 |
|
416 |
+
#: inc/admin/ui/notices.php:179
|
417 |
msgid ""
|
418 |
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
419 |
"config.php</code> to block all external HTTP requests."
|
421 |
"Hai definito la costante <code>WP_HTTP_BLOCK_EXTERNAL</code> nel file "
|
422 |
"<code>wp-config.php</code> per bloccare tutte le richieste HTTP esterne."
|
423 |
|
424 |
+
#: inc/admin/ui/notices.php:181
|
425 |
msgid ""
|
426 |
"To optimize your images, you have to put the following code in your <code>wp-"
|
427 |
"config.php</code> file so that it works correctly."
|
429 |
"Per ottimizzare le tue immagini, devi inserire il codice seguente nel tuo "
|
430 |
"file <code>wp-config.php</code> in modo che funzioni correttamente."
|
431 |
|
432 |
+
#: inc/admin/ui/notices.php:182
|
433 |
msgid "Click on the field and press Ctrl-A to select all."
|
434 |
msgstr "Fare clic sul campo e premere Ctrl-A per selezionare tutto."
|
435 |
|
436 |
+
#: inc/admin/ui/notices.php:219
|
437 |
msgid "You're missing out!"
|
438 |
msgstr "Ti stai perdendo qualcosa!"
|
439 |
|
440 |
+
#: inc/admin/ui/notices.php:220
|
441 |
msgid "Use the List view to optimize images with Imagify."
|
442 |
msgstr ""
|
443 |
"Utilizzare la visualizzazione di Lista per ottimizzare le immagini con "
|
444 |
"Imagify."
|
445 |
|
446 |
+
#: inc/admin/ui/notices.php:221
|
447 |
msgid "Switch to the List View"
|
448 |
msgstr "Passa a visualizzazione Lista"
|
449 |
|
450 |
+
#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
|
451 |
+
#: inc/functions/i18n.php:101
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
457 |
"Per continuare a ottimizzare le tue immagini, entra nel tuo account Imagify "
|
458 |
"per %scomprare un pack o sottoscrivere un abbonamento %s."
|
459 |
|
460 |
+
#: inc/admin/ui/notices.php:314 inc/admin/ui/options.php:28
|
461 |
msgid "Discover the best caching plugin to speed up your website."
|
462 |
msgstr "Scopri i migliori plugin di cache per velocizzare il tuo sito Web."
|
463 |
|
464 |
+
#: inc/admin/ui/notices.php:317 inc/admin/ui/options.php:36
|
465 |
#, php-format
|
466 |
msgid "%sGet %s off%s with this coupon code:%s"
|
467 |
msgstr "Ottieni il %s%s%s di sconto usando questo coupon:%s"
|
468 |
|
469 |
+
#: inc/admin/ui/notices.php:326 inc/admin/ui/options.php:41
|
470 |
msgid "Get WP Rocket now"
|
471 |
msgstr "Acquista WP Rocket!"
|
472 |
|
473 |
+
#: inc/admin/ui/notices.php:363
|
474 |
#, php-format
|
475 |
msgid ""
|
476 |
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
479 |
"%1$sCongratulazioni!%2$s Hai ottimizzato %1$s%3$d immagini%2$s e velocizzato "
|
480 |
"così il tuo sito web."
|
481 |
|
482 |
+
#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
|
483 |
#, php-format
|
484 |
msgid ""
|
485 |
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
496 |
msgid "API Key"
|
497 |
msgstr "Chiave API"
|
498 |
|
499 |
+
#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
|
500 |
msgid "Your API key is valid."
|
501 |
msgstr "La tua chiave API è valida."
|
502 |
|
709 |
"un po’ la qualità, ti raccomandiamo di usare questa modalità."
|
710 |
|
711 |
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
|
712 |
+
#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
|
713 |
msgid "Close"
|
714 |
msgstr "Chiudi"
|
715 |
|
737 |
|
738 |
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
|
739 |
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
|
740 |
+
#: inc/functions/i18n.php:62
|
741 |
msgid "File Size:"
|
742 |
msgstr "Dimensione del file:"
|
743 |
|
744 |
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
|
745 |
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
|
746 |
+
#: inc/functions/i18n.php:63
|
747 |
msgid "Original Saving:"
|
748 |
msgstr "Risparmio originale:"
|
749 |
|
750 |
+
#: inc/admin/upload.php:42 inc/functions/i18n.php:81
|
751 |
msgid "Unoptimized"
|
752 |
msgstr "Non ottimizzato"
|
753 |
|
763 |
msgid "All images"
|
764 |
msgstr "Tutte le immagini"
|
765 |
|
766 |
+
#: inc/classes/class-attachment.php:297
|
767 |
msgid ""
|
768 |
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
769 |
"you want to optimize it."
|
823 |
msgid "%s can't be optimized"
|
824 |
msgstr "%s non ottimizzabile"
|
825 |
|
826 |
+
#: inc/functions/admin-ui.php:240
|
827 |
msgid "What plan do I need?"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: inc/functions/admin-ui.php:244
|
831 |
msgid "You're new to Imagify?"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: inc/functions/admin-ui.php:245
|
835 |
msgid ""
|
836 |
"Let us help you by analyzing your existing images and determinate the best "
|
837 |
"plan for you"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: inc/functions/admin-ui.php:280
|
841 |
msgid "Choose Plan"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: inc/functions/admin-ui.php:281
|
845 |
msgid "Payment Info"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: inc/functions/admin-ui.php:286
|
849 |
msgid "We analysed your images"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: inc/functions/admin-ui.php:292
|
853 |
#, php-format
|
854 |
msgid "You have %s images"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: inc/functions/admin-ui.php:298
|
858 |
#, php-format
|
859 |
msgid "You actually have %s of images in your library."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: inc/functions/admin-ui.php:302
|
863 |
#, php-format
|
864 |
msgid "You upload around %s of images per month."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: inc/functions/admin-ui.php:309
|
868 |
msgid "We recommend you this plan"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: inc/functions/admin-ui.php:314
|
872 |
msgid "Subscribe a monthly plan"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: inc/functions/admin-ui.php:315
|
876 |
msgid "Subscribe a yearly plan"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
|
880 |
+
#: inc/functions/admin-ui.php:623
|
881 |
msgid "Monthly"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
|
885 |
+
#: inc/functions/admin-ui.php:626
|
886 |
msgid "Yearly"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
|
890 |
+
#: inc/functions/admin-ui.php:626
|
891 |
msgid "2 months free"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: inc/functions/admin-ui.php:333 inc/functions/admin-ui.php:352
|
895 |
+
#: inc/functions/admin-ui.php:468 inc/functions/admin-ui.php:478
|
896 |
msgid "/month"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: inc/functions/admin-ui.php:335 inc/functions/admin-ui.php:383
|
900 |
+
#: inc/functions/admin-ui.php:470 inc/functions/admin-ui.php:521
|
901 |
#, php-format
|
902 |
msgid "approx: %s images"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: inc/functions/admin-ui.php:356 inc/functions/admin-ui.php:484
|
906 |
#, php-format
|
907 |
msgid ""
|
908 |
"%s per<br>\n"
|
909 |
"additionnal Gb"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: inc/functions/admin-ui.php:361 inc/functions/admin-ui.php:396
|
913 |
+
#: inc/functions/admin-ui.php:580 inc/functions/admin-ui.php:601
|
914 |
msgid "Choose another plan"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: inc/functions/admin-ui.php:371
|
918 |
msgid "Optimize the images you already have, buy a one-time plan"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: inc/functions/admin-ui.php:407
|
922 |
msgid "Checkout"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: inc/functions/admin-ui.php:411
|
926 |
msgid ""
|
927 |
"Monthly plans comes with credits which is renewed every months. The billing "
|
928 |
"happens automatically each month or year depending the billing period you "
|
929 |
"choose."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: inc/functions/admin-ui.php:435
|
933 |
msgid "Monthly Plans"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: inc/functions/admin-ui.php:440
|
937 |
msgid "One Time Plans"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: inc/functions/admin-ui.php:450
|
941 |
msgid ""
|
942 |
"Monthly plans come with credits which is renewed every months. The billing "
|
943 |
"happens automatically each month or year depending the billing period you "
|
944 |
"choose."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: inc/functions/admin-ui.php:482 inc/functions/admin-ui.php:529
|
948 |
msgid "we recommend for you"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: inc/functions/admin-ui.php:490 inc/functions/admin-ui.php:533
|
952 |
msgid "Choose plan"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: inc/functions/admin-ui.php:498
|
956 |
msgid "Need more?"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: inc/functions/admin-ui.php:499
|
960 |
msgid "for special needs"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: inc/functions/admin-ui.php:503
|
964 |
msgid "Contact Us"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: inc/functions/admin-ui.php:510
|
968 |
msgid ""
|
969 |
"One time plans are useful if you have a lots of existing images which need "
|
970 |
"to be optimized. You can use it for bulk optimizing all your past images. "
|
971 |
"You will pay only once."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: inc/functions/admin-ui.php:563
|
975 |
msgid "Your order"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: inc/functions/admin-ui.php:568
|
979 |
#, php-format
|
980 |
msgid "%scancel%sYou just removed %s"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: inc/functions/admin-ui.php:576 inc/functions/admin-ui.php:597
|
984 |
msgid "Remove this item"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: inc/functions/admin-ui.php:583
|
988 |
#, php-format
|
989 |
msgid "%s per month"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: inc/functions/admin-ui.php:604
|
993 |
#, php-format
|
994 |
msgid "one time %s"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: inc/functions/admin-ui.php:617
|
998 |
#, php-format
|
999 |
msgid ""
|
1000 |
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
1001 |
"per year!</strong>"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: inc/functions/admin-ui.php:618
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
1008 |
"strong>"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: inc/functions/admin-ui.php:657
|
1012 |
msgid "Thank you for being awesome!"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: inc/functions/admin-ui.php:668
|
1016 |
msgid "What do our user think about Imagify"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: inc/functions/admin-ui.php:702
|
1020 |
msgid "Secure Credit Card Payment"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: inc/functions/admin-ui.php:703
|
1024 |
msgid "This is secure 128-bits SSL encrypted payment"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: inc/functions/i18n.php:20
|
1028 |
msgid "Let's get you started!"
|
1029 |
msgstr "Iniziamo!"
|
1030 |
|
1031 |
+
#: inc/functions/i18n.php:21
|
1032 |
msgid "Enter your email to get an API key:"
|
1033 |
msgstr "Inserisci la tua email per ottenere una chiave API:"
|
1034 |
|
1035 |
+
#: inc/functions/i18n.php:22
|
1036 |
msgid "Sign Up"
|
1037 |
msgstr "Registrati"
|
1038 |
|
1039 |
+
#: inc/functions/i18n.php:23
|
1040 |
msgid "You need to specify an email!"
|
1041 |
msgstr "È necessario specificare un indirizzo email!"
|
1042 |
|
1043 |
+
#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
|
1044 |
msgid "Congratulations!"
|
1045 |
msgstr "Congratulazioni!"
|
1046 |
|
1047 |
+
#: inc/functions/i18n.php:25
|
1048 |
msgid ""
|
1049 |
"Your account has been succesfully created. Please check your mailbox, you "
|
1050 |
"are going to receive an email with API key."
|
1052 |
"Il tuo account è stato creato con successo. Per favore controlla la tua "
|
1053 |
"casella email, stai per ricevere un messaggio con la chiave API."
|
1054 |
|
1055 |
+
#: inc/functions/i18n.php:26
|
1056 |
msgid "Connect to Imagify!"
|
1057 |
msgstr "Connettiti a Imagify!"
|
1058 |
|
1059 |
+
#: inc/functions/i18n.php:27
|
1060 |
msgid "Paste your API key below:"
|
1061 |
msgstr "Incolla qui sotto la chiave API:"
|
1062 |
|
1063 |
+
#: inc/functions/i18n.php:28
|
1064 |
msgid "Connect me"
|
1065 |
msgstr "Connettimi"
|
1066 |
|
1067 |
+
#: inc/functions/i18n.php:29
|
1068 |
msgid "Check in progress..."
|
1069 |
msgstr "Verifica in corso…"
|
1070 |
|
1071 |
#: inc/functions/i18n.php:30
|
1072 |
+
msgid "You need to specify your api key!"
|
1073 |
+
msgstr "È necessario specificare un api key!"
|
1074 |
+
|
1075 |
+
#: inc/functions/i18n.php:32
|
1076 |
msgid ""
|
1077 |
"Your API key is valid. You can now configure the Imagify settings to "
|
1078 |
"optimize your images."
|
1080 |
"La tua chiave API è valida. Ora puoi configurare le impostazioni di Imagify "
|
1081 |
"per ottimizzare le tue immagini."
|
1082 |
|
1083 |
+
#: inc/functions/i18n.php:34
|
1084 |
msgid "Cancel"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: inc/functions/i18n.php:41
|
1088 |
msgid "Don't Need a Parachute?"
|
1089 |
msgstr "Non hai bisogno di un paracadute?"
|
1090 |
|
1091 |
+
#: inc/functions/i18n.php:42
|
1092 |
msgid ""
|
1093 |
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1094 |
"images to another compression level and restore your original images in case "
|
1098 |
"immagini a un altro livello di compressione o ripristinare le originali in "
|
1099 |
"caso di necessità."
|
1100 |
|
1101 |
+
#: inc/functions/i18n.php:58
|
1102 |
msgid "Original Image"
|
1103 |
msgstr "Immagine originale"
|
1104 |
|
1105 |
+
#: inc/functions/i18n.php:59
|
1106 |
msgid "Optimized Image"
|
1107 |
msgstr "Immagine ottimizzata"
|
1108 |
|
1109 |
+
#: inc/functions/i18n.php:73
|
1110 |
msgid "Please wait..."
|
1111 |
msgstr "Attendere per favore…"
|
1112 |
|
1113 |
+
#: inc/functions/i18n.php:74
|
1114 |
msgid ""
|
1115 |
"We are trying to get your unoptimized images, it may take time depending on "
|
1116 |
"the number of images."
|
1118 |
"Stiamo cercando di ottenere le immagini non ottimizzate, il che potrebbe "
|
1119 |
"richiedere del tempo in base al numero di immagini."
|
1120 |
|
1121 |
+
#: inc/functions/i18n.php:76
|
1122 |
msgid "Oops, There is something wrong!"
|
1123 |
msgstr "Ups, qualcosa è andato storto!"
|
1124 |
|
1125 |
+
#: inc/functions/i18n.php:77
|
1126 |
msgid ""
|
1127 |
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1128 |
"Try again and if the issue still persist, please contact us!"
|
1131 |
"immagini non ottimizzate. Prova di nuovo e, se il problema persiste, "
|
1132 |
"contattaci per favore!"
|
1133 |
|
1134 |
+
#: inc/functions/i18n.php:82
|
1135 |
msgid "Error"
|
1136 |
msgstr "Errore"
|
1137 |
|
1138 |
+
#: inc/functions/i18n.php:85
|
1139 |
msgid "Hold on!"
|
1140 |
msgstr "Resisti!"
|
1141 |
|
1142 |
+
#: inc/functions/i18n.php:86
|
1143 |
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1144 |
msgstr ""
|
1145 |
"Tutte le tue immagini sono state ottimizzate da Imagify. Congratulazioni!"
|
1146 |
|
1147 |
+
#: inc/functions/i18n.php:88
|
1148 |
#, php-format
|
1149 |
msgid ""
|
1150 |
"Discover @imagify, the new compression tool to optimize your images for "
|
1153 |
"Scopri @imagify, il nuovo strumento di compressione per ottimizzare le tue "
|
1154 |
"immagini gratuitamente. Ho risparmiato %1$s di %2$s!"
|
1155 |
|
1156 |
+
#: inc/functions/i18n.php:92
|
1157 |
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1158 |
msgstr ""
|
1159 |
"Imagify sta ancora lavorando. Sei sicuro di voler abbandonare la pagina?"
|
1160 |
|
1161 |
+
#: inc/functions/i18n.php:101
|
1162 |
msgid "F j, Y"
|
1163 |
msgstr "F j, Y"
|
1164 |
|
1165 |
+
#: inc/functions/process.php:40
|
1166 |
msgid ""
|
1167 |
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1168 |
"couple of minutes."
|
1170 |
"Ci scusiamo, i nostri server sono temporalmente inaccessibili. Per favore, "
|
1171 |
"riprova fra qualche minuto."
|
1172 |
|
1173 |
+
#: inc/functions/process.php:46
|
1174 |
msgid "External HTTP requests are blocked"
|
1175 |
msgstr "Le richieste HTTP esterne sono bloccate"
|
1176 |
|
1177 |
+
#: inc/functions/process.php:52
|
1178 |
msgid "File path is empty"
|
1179 |
msgstr "Il percorso del file è vuoto"
|
1180 |
|
1181 |
+
#: inc/functions/process.php:58
|
1182 |
#, php-format
|
1183 |
msgid "Could not find %s"
|
1184 |
msgstr "Impossibile trovare %s"
|
1185 |
|
1186 |
+
#: inc/functions/process.php:63
|
1187 |
#, php-format
|
1188 |
msgid "%s is not writable"
|
1189 |
msgstr "%s non è riscrivibile"
|
1190 |
|
1191 |
+
#: inc/functions/process.php:72
|
1192 |
#, php-format
|
1193 |
msgid "Skipped (%s), image not found."
|
1194 |
msgstr "Abbiamo saltato (%s), immagine non trovata."
|
1195 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1196 |
#~ msgid "Your default setting:"
|
1197 |
#~ msgstr "Impostazioni standard:"
|
1198 |
|
languages/imagify.pot
CHANGED
@@ -1,919 +1,1157 @@
|
|
1 |
-
# Loco Gettext template
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"X-Poedit-
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
"
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
#: ../inc/admin/
|
126 |
-
msgid "
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
#: ../inc/admin/
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: ../inc/admin/
|
180 |
-
msgid "
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../inc/admin/
|
184 |
-
msgid "
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
#:
|
197 |
-
msgid "
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
#:
|
203 |
-
msgid "
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: ../inc/admin/
|
207 |
-
#:
|
208 |
-
#: /inc/
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: ../inc/admin/
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
#: ../inc/admin/
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
#: ../inc/
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
msgid ""
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
#: ../inc/
|
291 |
-
msgid "
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: ../inc/admin/
|
295 |
-
msgid "
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: ../inc/admin/
|
299 |
-
msgid "
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
msgid "
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: ../inc/admin/ui/
|
329 |
-
msgid "
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: ../inc/admin/ui/
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
"
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
#:
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
#:
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
#: ../inc/admin/ui/
|
411 |
-
msgid "
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: ../inc/admin/ui/
|
415 |
-
msgid "
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
msgid "
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
msgid "
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
msgid "
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
msgid "
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
msgid "
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../inc/admin/ui/
|
489 |
-
msgid "
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
|
493 |
-
#:
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
#: ../inc/admin/ui/
|
513 |
-
msgid "
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../inc/admin/ui/
|
517 |
-
msgid "
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
msgid ""
|
554 |
-
"
|
555 |
-
"
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
#: ../inc/admin/ui/options.php:
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
"
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: ../inc/admin/ui/options.php:
|
653 |
-
msgid "
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
msgid ""
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
#: ../inc/admin
|
698 |
-
msgid "
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: ../inc/admin/ui/options.php:
|
702 |
-
|
703 |
-
|
704 |
-
"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: ../inc/admin/ui/options.php:
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
#: ../inc/admin/
|
723 |
-
msgid "
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: ../inc/admin/
|
727 |
-
msgid "
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
"
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: ../inc/admin
|
757 |
-
msgid ""
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
"
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
"
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
# @todo
|
782 |
-
#: ../inc/admin/ui
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
#: ../inc/admin
|
799 |
-
msgid "
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
#:
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
#: ../inc/
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
#: ../inc/functions/admin-ui.php:
|
854 |
-
msgid "
|
855 |
-
msgstr ""
|
856 |
-
|
857 |
-
#: ../inc/functions/admin-ui.php:
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
msgid "
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
#: /inc/functions/admin-ui.php:
|
881 |
-
|
882 |
-
msgid "
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Loco Gettext template
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Imagify\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2016-09-23 10:02-0500\n"
|
7 |
+
"PO-Revision-Date: 2016-09-23 10:02-0500\n"
|
8 |
+
"Last-Translator: Rémy Perona <remperona@gmail.com>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"POT-Revision-Date: Fri Feb 19 2016 11:04:48 GMT+0100 (CET)\n"
|
14 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Generator: Poedit 1.6.4\n"
|
23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
24 |
+
|
25 |
+
# @todo Context should be provided for translators.
|
26 |
+
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
|
27 |
+
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
|
28 |
+
#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
|
29 |
+
#: ../inc/functions/i18n.php:64
|
30 |
+
msgid "Optimize"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
|
34 |
+
#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
|
35 |
+
msgid "Restore Original"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../inc/3rd-party/nextgen-gallery/inc/admin/menu.php:16
|
39 |
+
#: ../inc/admin/menu.php:24 ../inc/admin/plugins.php:13
|
40 |
+
#: ../inc/admin/ui/bulk.php:81 ../inc/common/admin-bar.php:39
|
41 |
+
msgid "Bulk Optimization"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
# @todo Context should be provided for translators. Also, use ellipsis (https://en.wikipedia.org/wiki/Ellipsis) as 1 character (http://unicode.org/cldr/utility/character.jsp?a=2026)
|
45 |
+
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
|
46 |
+
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
|
47 |
+
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
|
48 |
+
#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
|
49 |
+
msgid "Optimizing..."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
|
53 |
+
#: ../inc/admin/ajax.php:507
|
54 |
+
msgid "Oops, It's almost over!"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
# @todo %s = 2 new lines. Problem: May not be suitable in all languages, should be inline HTML.
|
58 |
+
#: ../inc/admin/ajax.php:508
|
59 |
+
#, php-format
|
60 |
+
msgid ""
|
61 |
+
"You have almost used all your credit.%sDon't forget to upgrade your "
|
62 |
+
"subscription to continue optimizing your images."
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
# @todo Is this a heading? Otherwise don’t capitalize.
|
66 |
+
#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
|
67 |
+
msgid "View My Subscription"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
|
71 |
+
#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
|
72 |
+
#: ../inc/functions/i18n.php:84
|
73 |
+
msgid "Oops, It's Over!"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
# @todo Inappropriate use of %s. Translators should be able to switch order of arguments, therefore should be %1$s and %2$s.
|
77 |
+
#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
|
78 |
+
#: ../inc/functions/i18n.php:101
|
79 |
+
#, php-format
|
80 |
+
msgid ""
|
81 |
+
"You have consumed all your credit for this month. You will have <strong>%s "
|
82 |
+
"back on %s</strong>."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
# @todo Is this a heading? Otherwise don’t capitalize.
|
86 |
+
#: ../inc/admin/ajax.php:519
|
87 |
+
msgid "Upgrade My Subscription"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
# @todo Is this a heading? Then capitalize.
|
91 |
+
#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
|
92 |
+
msgid "Account status"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
|
96 |
+
msgid "Your subscription:"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
|
100 |
+
#, php-format
|
101 |
+
msgid "You have %s space credit left"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../inc/admin/ajax.php:559
|
105 |
+
msgid "View my subscription"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
|
109 |
+
msgid "Compare Original VS Optimized"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../inc/admin/meta-boxes.php:17 ../inc/admin/meta-boxes.php:24
|
113 |
+
#: ../inc/admin/upload.php:12
|
114 |
+
msgid "Imagify"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:195
|
118 |
+
msgid "Invalid API key"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../inc/admin/meta-boxes.php:21 ../inc/functions/admin-ui.php:197
|
122 |
+
msgid "Check your Settings"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../inc/admin/options.php:119
|
126 |
+
msgid "Cheatin’ uh?"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
# @todo Add meaning for users. is it important to know what an options page is? Why? Is there any action required?
|
130 |
+
#: ../inc/admin/options.php:127
|
131 |
+
msgid "<strong>ERROR</strong>: options page not found."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: ../inc/admin/plugins.php:14 ../inc/admin/ui/options.php:74
|
135 |
+
#: ../inc/common/admin-bar.php:30
|
136 |
+
msgid "Settings"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: ../inc/admin/ui/bulk.php:60
|
140 |
+
msgid "Upgrade your account to continue optimizing your images"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../inc/admin/ui/bulk.php:64
|
144 |
+
msgid "More info"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../inc/admin/ui/bulk.php:91
|
148 |
+
msgid "Overview"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: ../inc/admin/ui/bulk.php:99
|
152 |
+
#, php-format
|
153 |
+
msgid "You optimized %s images of your website"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../inc/admin/ui/bulk.php:103
|
157 |
+
msgid "Statistics"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
# @todo Use typographical apostrophe. Why isn’t the string constructed with an argument (%s) that represents a value?
|
161 |
+
#: ../inc/admin/ui/bulk.php:115
|
162 |
+
msgid "that's the number of images you optimized with Imagify"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: ../inc/admin/ui/bulk.php:120
|
166 |
+
msgid "Original size"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: ../inc/admin/ui/bulk.php:125
|
170 |
+
msgid "Optimized size"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
# @todo New lines should not be added via argument, but via inline HTML.
|
174 |
+
#: ../inc/admin/ui/bulk.php:136
|
175 |
+
#, php-format
|
176 |
+
msgid "that's the size you saved %sby using Imagify"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: ../inc/admin/ui/bulk.php:142
|
180 |
+
msgid "Information"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: ../inc/admin/ui/bulk.php:146
|
184 |
+
msgid ""
|
185 |
+
"Please be aware that optimizing a large number of images can take a while "
|
186 |
+
"depending on your server and network speed."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: ../inc/admin/ui/bulk.php:149
|
190 |
+
#, php-format
|
191 |
+
msgid ""
|
192 |
+
"If you have more than %s images, you will need to launch the bulk "
|
193 |
+
"optimization several times."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: ../inc/admin/ui/bulk.php:153
|
197 |
+
msgid ""
|
198 |
+
"You must keep this page open while the bulk optimizaton is processing. If "
|
199 |
+
"you leave you can come back to continue where it left off."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../inc/admin/ui/bulk.php:164
|
203 |
+
msgid "Select Your Compression Level"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: ../inc/admin/ui/bulk.php:166 ../inc/admin/ui/bulk.php:192
|
207 |
+
#: ../inc/admin/ui/options.php:136 ../inc/admin/ui/options.php:365
|
208 |
+
#: ../inc/admin/ui/options.php:404 ../inc/admin/ui/options.php:421
|
209 |
+
#: ../inc/admin/ui/options.php:481
|
210 |
+
#: ../inc/classes/abstracts/abstract-attachment.php:114
|
211 |
+
#: ../inc/functions/admin-ui.php:153
|
212 |
+
msgid "Ultra"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: ../inc/admin/ui/bulk.php:169 ../inc/admin/ui/bulk.php:187
|
216 |
+
#: ../inc/admin/ui/options.php:131 ../inc/admin/ui/options.php:352
|
217 |
+
#: ../inc/admin/ui/options.php:403 ../inc/admin/ui/options.php:416
|
218 |
+
#: ../inc/admin/ui/options.php:460
|
219 |
+
#: ../inc/classes/abstracts/abstract-attachment.php:117
|
220 |
+
#: ../inc/functions/admin-ui.php:159
|
221 |
+
msgid "Aggressive"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: ../inc/admin/ui/bulk.php:172 ../inc/admin/ui/bulk.php:182
|
225 |
+
#: ../inc/admin/ui/options.php:126 ../inc/admin/ui/options.php:339
|
226 |
+
#: ../inc/admin/ui/options.php:402 ../inc/admin/ui/options.php:411
|
227 |
+
#: ../inc/admin/ui/options.php:440
|
228 |
+
#: ../inc/classes/abstracts/abstract-attachment.php:120
|
229 |
+
#: ../inc/functions/admin-ui.php:165
|
230 |
+
msgid "Normal"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: ../inc/admin/ui/bulk.php:176
|
234 |
+
#, php-format
|
235 |
+
msgid "Your default setting: %s"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
# @todo Use typographical apostrophe. Also, the link should be implemented as inline HTML with a placeholder for the URL, in order for translators to be able to switch its position.
|
239 |
+
#: ../inc/admin/ui/bulk.php:201
|
240 |
+
#, php-format
|
241 |
+
msgid "Don't forget to check %syour settings%s before bulk optimization."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../inc/admin/ui/bulk.php:208
|
245 |
+
msgid "Let's go!"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
# @todo Use typographical apostrophe.
|
249 |
+
#: ../inc/admin/ui/bulk.php:215
|
250 |
+
msgid "Imagif'em all"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: ../inc/admin/ui/bulk.php:220
|
254 |
+
#, php-format
|
255 |
+
msgid "All images greater than %s will be optimized when using a paid plan."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: ../inc/admin/ui/bulk.php:239
|
259 |
+
msgid "Well done!"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: ../inc/admin/ui/bulk.php:240
|
263 |
+
#, php-format
|
264 |
+
msgid "you saved %1$s out of %2$s"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: ../inc/admin/ui/bulk.php:245
|
268 |
+
msgid "Share your awesome result"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: ../inc/admin/ui/bulk.php:260
|
272 |
+
msgid "Compression process results"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: ../inc/admin/ui/bulk.php:263
|
276 |
+
msgid "Filename"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: ../inc/admin/ui/bulk.php:264
|
280 |
+
msgid "Status"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../inc/admin/ui/bulk.php:265 ../inc/admin/ui/options.php:401
|
284 |
+
#: ../inc/admin/ui/options.php:406 ../inc/admin/ui/options.php:430
|
285 |
+
msgid "Original"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
# @todo Context for translators should be provided.
|
289 |
+
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
|
290 |
+
#: ../inc/functions/i18n.php:80
|
291 |
+
msgid "Optimized"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../inc/admin/ui/bulk.php:267
|
295 |
+
msgid "Percentage"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: ../inc/admin/ui/bulk.php:268
|
299 |
+
msgid "Thumbnails optimized"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: ../inc/admin/ui/bulk.php:269
|
303 |
+
msgid "Overall saving"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: ../inc/admin/ui/bulk.php:274
|
307 |
+
msgid "file"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: ../inc/admin/ui/bulk.php:275
|
311 |
+
msgid "error"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: ../inc/admin/ui/bulk.php:276
|
315 |
+
msgid "Total:"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: ../inc/admin/ui/bulk.php:277
|
319 |
+
msgid "Gain:"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
# @todo The link should be implemented as inline HTML with a placeholder for the URL, in order for translators to be able to switch its position.
|
323 |
+
#: ../inc/admin/ui/bulk.php:294
|
324 |
+
#, php-format
|
325 |
+
msgid "%sStart the bulk optimization%s"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: ../inc/admin/ui/notices.php:24
|
329 |
+
msgid "Welcome to Imagify, the best way to easily optimize your images!"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
|
333 |
+
#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
|
334 |
+
#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
|
335 |
+
msgid "Dismiss this notice"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
# @todo Probably don’t capitalize.
|
339 |
+
#: ../inc/admin/ui/notices.php:33
|
340 |
+
msgid "Create an Account"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: ../inc/admin/ui/notices.php:34
|
344 |
+
msgid ""
|
345 |
+
"Don't have an Imagify account yet? Optimize your images by creating an "
|
346 |
+
"account in a few seconds!"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
# @todo “it’s” should not be capitalized.
|
350 |
+
#: ../inc/admin/ui/notices.php:37
|
351 |
+
msgid "Sign up, It's FREE!"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: ../inc/admin/ui/notices.php:43
|
355 |
+
msgid "Enter your API Key"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
# @todo The link should be implemented as inline HTML with a placeholder for the URL, in order for translators to be able to switch its position. Also, “e-mail”.
|
359 |
+
#: ../inc/admin/ui/notices.php:44
|
360 |
+
#, php-format
|
361 |
+
msgid ""
|
362 |
+
"Save your API Key you have received by email or you can get it on your "
|
363 |
+
"%sImagify account page%s."
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: ../inc/admin/ui/notices.php:47
|
367 |
+
msgid "I have my API key"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: ../inc/admin/ui/notices.php:53
|
371 |
+
msgid "Configure it"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
# @todo “You just have to”. Better “Just configure a few optimization settings.”
|
375 |
+
#: ../inc/admin/ui/notices.php:54
|
376 |
+
msgid ""
|
377 |
+
"It’s almost done! You have just to configure your optimization settings."
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: ../inc/admin/ui/notices.php:55
|
381 |
+
msgid "Go to Settings"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
# @todo . instead of !
|
385 |
+
#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
|
386 |
+
#: ../inc/functions/i18n.php:78
|
387 |
+
msgid "Your API key isn't valid!"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
# @todo The links should be implemented as inline HTML with a placeholders for URLs, in order for translators to be able to switch their positions.
|
391 |
+
#: ../inc/admin/ui/notices.php:90
|
392 |
+
#, php-format
|
393 |
+
msgid ""
|
394 |
+
"Go to your Imagify account page to get your API Key and specify it on "
|
395 |
+
"%1$syour settings%3$s or %2$screate an account for free%3$s if you don't "
|
396 |
+
"have one yet."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../inc/admin/ui/notices.php:142
|
400 |
+
msgid ""
|
401 |
+
"The following plugins are not compatible with this plugin and may cause "
|
402 |
+
"unexpected results:"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: ../inc/admin/ui/notices.php:148
|
406 |
+
msgid "Deactivate"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
# @todo . instead of !
|
410 |
+
#: ../inc/admin/ui/notices.php:178
|
411 |
+
msgid "The external HTTP requests are blocked!"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../inc/admin/ui/notices.php:179
|
415 |
+
msgid ""
|
416 |
+
"You defined the <code>WP_HTTP_BLOCK_EXTERNAL</code> constant in the <code>wp-"
|
417 |
+
"config.php</code> to block all external HTTP requests."
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: ../inc/admin/ui/notices.php:181
|
421 |
+
msgid ""
|
422 |
+
"To optimize your images, you have to put the following code in your <code>wp-"
|
423 |
+
"config.php</code> file so that it works correctly."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: ../inc/admin/ui/notices.php:182
|
427 |
+
msgid "Click on the field and press Ctrl-A to select all."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: ../inc/admin/ui/notices.php:219
|
431 |
+
msgid "You're missing out!"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: ../inc/admin/ui/notices.php:220
|
435 |
+
msgid "Use the List view to optimize images with Imagify."
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: ../inc/admin/ui/notices.php:221
|
439 |
+
msgid "Switch to the List View"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
# @todo Better: “To continue optimizing your images”. Also, the link should be implemented as inline HTML with a placeholder for the URL, in order for translators to be able to switch its position.
|
443 |
+
#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
|
444 |
+
#: ../inc/functions/i18n.php:101
|
445 |
+
#, php-format
|
446 |
+
msgid ""
|
447 |
+
"To continue to optimize your images, log in to your Imagify account to %sbuy "
|
448 |
+
"a pack or subscribe to a plan%s."
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
|
452 |
+
msgid "Discover the best caching plugin to speed up your website."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
456 |
+
#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
|
457 |
+
#, php-format
|
458 |
+
msgid "%sGet %s off%s with this coupon code:%s"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
|
462 |
+
msgid "Get WP Rocket now"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../inc/admin/ui/notices.php:363
|
466 |
+
#, php-format
|
467 |
+
msgid ""
|
468 |
+
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
|
469 |
+
"your website's speed by reducing your images size."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
473 |
+
#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
|
474 |
+
#, php-format
|
475 |
+
msgid ""
|
476 |
+
"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
|
477 |
+
"WordPress.org%s!"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: ../inc/admin/ui/options.php:22
|
481 |
+
msgid "Is your website too slow?"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: ../inc/admin/ui/options.php:84
|
485 |
+
msgid "API Key"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
|
489 |
+
msgid "Your API key is valid."
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
493 |
+
#: ../inc/admin/ui/options.php:104
|
494 |
+
#, php-format
|
495 |
+
msgid "Don't have an API Key yet? %sCreate one, it's FREE%s."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../inc/admin/ui/options.php:121
|
499 |
+
msgid "Optimization Level"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: ../inc/admin/ui/options.php:141
|
503 |
+
msgid "More info?"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
507 |
+
#: ../inc/admin/ui/options.php:148
|
508 |
+
#, php-format
|
509 |
+
msgid "Need help to choose? %sTry the Visual Comparison%s"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: ../inc/admin/ui/options.php:157 ../inc/admin/ui/options.php:161
|
513 |
+
msgid "Auto-Optimize images on upload"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: ../inc/admin/ui/options.php:165
|
517 |
+
msgid "Automatically optimize every image you upload to WordPress."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: ../inc/admin/ui/options.php:170 ../inc/admin/ui/options.php:173
|
521 |
+
msgid "Backup original images"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: ../inc/admin/ui/options.php:177
|
525 |
+
msgid ""
|
526 |
+
"Keep your original images in a separate folder before optimization process."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: ../inc/admin/ui/options.php:182 ../inc/admin/ui/options.php:185
|
530 |
+
msgid "Resize larger images"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
# @todo Always keep messages intact. This message looks split up.
|
534 |
+
#: ../inc/admin/ui/options.php:191
|
535 |
+
#, php-format
|
536 |
+
msgid "to maximum %s pixels width"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: ../inc/admin/ui/options.php:202
|
540 |
+
#, php-format
|
541 |
+
msgid ""
|
542 |
+
"This option is recommended to reduce larger images. You can save up to 80%% "
|
543 |
+
"after resizing. The new width should not be less than your largest thumbnail "
|
544 |
+
"width, which is actually %spx."
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: ../inc/admin/ui/options.php:209 ../inc/admin/ui/options.php:212
|
548 |
+
msgid "EXIF Data"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
# @todo Use typographical ellipisis
|
552 |
+
#: ../inc/admin/ui/options.php:216
|
553 |
+
msgid ""
|
554 |
+
"Keep all EXIF data from your images. EXIF are informations stored in your "
|
555 |
+
"pictures like shutter speed, exposure compensation, ISO, etc..."
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: ../inc/admin/ui/options.php:217
|
559 |
+
msgid "Learn more"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: ../inc/admin/ui/options.php:219
|
563 |
+
msgid ""
|
564 |
+
"If you are a photographer, you may be interested in this option if you are "
|
565 |
+
"displaying on your pages some info like the model of your camera."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: ../inc/admin/ui/options.php:228
|
569 |
+
msgid "Files optimization"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: ../inc/admin/ui/options.php:231
|
573 |
+
msgid ""
|
574 |
+
"You can choose to compress different image sizes created by WordPress here."
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
578 |
+
#: ../inc/admin/ui/options.php:233
|
579 |
+
#, php-format
|
580 |
+
msgid "The %soriginal size%s is %sautomatically optimized%s by Imagify."
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
# @todo . instead of !
|
584 |
+
#: ../inc/admin/ui/options.php:236
|
585 |
+
msgid ""
|
586 |
+
"Remember each additional image size will affect your Imagify monthly usage!"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: ../inc/admin/ui/options.php:289
|
590 |
+
msgid "Display options"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: ../inc/admin/ui/options.php:294 ../inc/admin/ui/options.php:299
|
594 |
+
msgid "Show Admin Bar menu"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: ../inc/admin/ui/options.php:300
|
598 |
+
msgid "I want this awesome quick access menu on my admin bar."
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: ../inc/admin/ui/options.php:319
|
602 |
+
msgid "Save & Go to Bulk Optimizer"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
# @todo Links should be implemented as inline HTML with placeholders for URLs.
|
606 |
+
#: ../inc/admin/ui/options.php:328
|
607 |
+
#, php-format
|
608 |
+
msgid ""
|
609 |
+
"Once your settings saved, optimize all your images by using the %sImagify "
|
610 |
+
"Bulk Optimization%s feature."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: ../inc/admin/ui/options.php:336
|
614 |
+
msgid "You can choose three levels of compression"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: ../inc/admin/ui/options.php:341
|
618 |
+
msgid ""
|
619 |
+
"This mode provides lossless optimization, your images will be optimized "
|
620 |
+
"without any visible change."
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
# @todo Always keep messages intact. This message looks split up.
|
624 |
+
#: ../inc/admin/ui/options.php:344
|
625 |
+
msgid ""
|
626 |
+
"If you want the perfect quality for your images, we recommend you that mode."
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
# @todo Always keep messages intact. This message looks split up.
|
630 |
+
#: ../inc/admin/ui/options.php:347
|
631 |
+
msgid ""
|
632 |
+
"Note: the file size reduction will be less, compared to aggressive mode."
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: ../inc/admin/ui/options.php:354
|
636 |
+
msgid ""
|
637 |
+
"This mode provides perfect optimization of your images without any "
|
638 |
+
"significant quality loss."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: ../inc/admin/ui/options.php:357
|
642 |
+
msgid ""
|
643 |
+
"This will provide a drastic savings on the initial weight, with a small "
|
644 |
+
"reduction in image quality. Most of the time it's not even noticeable."
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
# @todo Always keep messages intact. This message looks split up.
|
648 |
+
#: ../inc/admin/ui/options.php:360
|
649 |
+
msgid "If you want the maximum weight reduction, we recommend using this mode."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: ../inc/admin/ui/options.php:367
|
653 |
+
msgid ""
|
654 |
+
"This mode will apply all available optimizations for maximum image "
|
655 |
+
"compression."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: ../inc/admin/ui/options.php:370
|
659 |
+
msgid ""
|
660 |
+
"This will provide a huge savings on the initial weight. Sometimes the image "
|
661 |
+
"quality could be degraded a little."
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
# @todo Always keep messages intact. This message looks split up.
|
665 |
+
#: ../inc/admin/ui/options.php:373
|
666 |
+
msgid ""
|
667 |
+
"If you want the maximum weight reduction, and you agree to lose some quality "
|
668 |
+
"on the images we recommend using this mode."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
|
672 |
+
#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
|
673 |
+
msgid "Close"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
# @todo Should be numerated arguments + context for translators.
|
677 |
+
#: ../inc/admin/ui/options.php:392
|
678 |
+
#, php-format
|
679 |
+
msgid "I want to compare%s and%s"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
# @todo %s is what?
|
683 |
+
#: ../inc/admin/ui/options.php:409
|
684 |
+
#, php-format
|
685 |
+
msgid "Original photography about %s"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
# @todo %s is what?
|
689 |
+
#: ../inc/admin/ui/options.php:414 ../inc/admin/ui/options.php:419
|
690 |
+
#: ../inc/admin/ui/options.php:424
|
691 |
+
#, php-format
|
692 |
+
msgid "Optimized photography about %s"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: ../inc/admin/ui/options.php:429 ../inc/admin/ui/options.php:439
|
696 |
+
#: ../inc/admin/ui/options.php:459 ../inc/admin/ui/options.php:480
|
697 |
+
#: ../inc/functions/admin-ui.php:59
|
698 |
+
msgid "Level:"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
|
702 |
+
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
|
703 |
+
#: ../inc/functions/i18n.php:62
|
704 |
+
msgid "File Size:"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
|
708 |
+
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
|
709 |
+
#: ../inc/functions/i18n.php:63
|
710 |
+
msgid "Original Saving:"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
# @todo Context for translators should be provided.
|
714 |
+
#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
|
715 |
+
msgid "Unoptimized"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: ../inc/admin/upload.php:43
|
719 |
+
msgid "Errors"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: ../inc/admin/upload.php:46
|
723 |
+
msgid "Filter by status"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: ../inc/admin/upload.php:49
|
727 |
+
msgid "All images"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
# @todo Use typographical apostrophe.
|
731 |
+
#: ../inc/classes/class-attachment.php:297
|
732 |
+
msgid ""
|
733 |
+
"This size isn't authorized to be optimized. Update your Imagify settings if "
|
734 |
+
"you want to optimize it."
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
# @todo %s is what?
|
738 |
+
#: ../inc/common/admin-bar.php:48
|
739 |
+
#, php-format
|
740 |
+
msgid "Rate Imagify on %s"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
# @todo Use typographical ellipsis.
|
744 |
+
#: ../inc/common/admin-bar.php:61
|
745 |
+
msgid "Loading..."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../inc/functions/admin-ui.php:36
|
749 |
+
msgid "New Filesize:"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: ../inc/functions/admin-ui.php:52
|
753 |
+
msgid "Close details"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: ../inc/functions/admin-ui.php:52
|
757 |
+
msgid "View details"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: ../inc/functions/admin-ui.php:56
|
761 |
+
msgid "Original Filesize:"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: ../inc/functions/admin-ui.php:62
|
765 |
+
msgid "Thumbnails Optimized:"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: ../inc/functions/admin-ui.php:63
|
769 |
+
msgid "Overall Saving:"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
# @todo Use typographical ellipsis.
|
773 |
+
#: ../inc/functions/admin-ui.php:80
|
774 |
+
msgid "Restoring..."
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: ../inc/functions/admin-ui.php:121
|
778 |
+
msgid "Try again"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
# @todo %s is what? Also “Re-optimize” (not capitalized)
|
782 |
+
#: ../inc/functions/admin-ui.php:153 ../inc/functions/admin-ui.php:159
|
783 |
+
#: ../inc/functions/admin-ui.php:165
|
784 |
+
#, php-format
|
785 |
+
msgid "Re-Optimize to %s"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
# @todo %s is what?
|
789 |
+
#: ../inc/functions/admin-ui.php:189
|
790 |
+
#, php-format
|
791 |
+
msgid "%s can't be optimized"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: ../inc/functions/admin-ui.php:240
|
795 |
+
msgid "What plan do I need?"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: ../inc/functions/admin-ui.php:244
|
799 |
+
msgid "You're new to Imagify?"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: ../inc/functions/admin-ui.php:245
|
803 |
+
msgid ""
|
804 |
+
"Let us help you by analyzing your existing images and determinate the best "
|
805 |
+
"plan for you"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: ../inc/functions/admin-ui.php:280
|
809 |
+
msgid "Choose Plan"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: ../inc/functions/admin-ui.php:281
|
813 |
+
msgid "Payment Info"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: ../inc/functions/admin-ui.php:286
|
817 |
+
msgid "We analysed your images"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: ../inc/functions/admin-ui.php:292
|
821 |
+
#, php-format
|
822 |
+
msgid "You have %s images"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: ../inc/functions/admin-ui.php:298
|
826 |
+
#, php-format
|
827 |
+
msgid "You actually have %s of images in your library."
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: ../inc/functions/admin-ui.php:302
|
831 |
+
#, php-format
|
832 |
+
msgid "You upload around %s of images per month."
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: ../inc/functions/admin-ui.php:309
|
836 |
+
msgid "We recommend you this plan"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: ../inc/functions/admin-ui.php:314
|
840 |
+
msgid "Subscribe a monthly plan"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: ../inc/functions/admin-ui.php:315
|
844 |
+
msgid "Subscribe a yearly plan"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
|
848 |
+
#: ../inc/functions/admin-ui.php:623
|
849 |
+
msgid "Monthly"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
853 |
+
#: ../inc/functions/admin-ui.php:626
|
854 |
+
msgid "Yearly"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
|
858 |
+
#: ../inc/functions/admin-ui.php:626
|
859 |
+
msgid "2 months free"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
|
863 |
+
#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
|
864 |
+
msgid "/month"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
|
868 |
+
#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
|
869 |
+
#, php-format
|
870 |
+
msgid "approx: %s images"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
|
874 |
+
#, php-format
|
875 |
+
msgid ""
|
876 |
+
"%s per<br>\n"
|
877 |
+
"additionnal Gb"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
|
881 |
+
#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
|
882 |
+
msgid "Choose another plan"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: ../inc/functions/admin-ui.php:371
|
886 |
+
msgid "Optimize the images you already have, buy a one-time plan"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: ../inc/functions/admin-ui.php:407
|
890 |
+
msgid "Checkout"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: ../inc/functions/admin-ui.php:411
|
894 |
+
msgid ""
|
895 |
+
"Monthly plans comes with credits which is renewed every months. The billing "
|
896 |
+
"happens automatically each month or year depending the billing period you "
|
897 |
+
"choose."
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: ../inc/functions/admin-ui.php:435
|
901 |
+
msgid "Monthly Plans"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: ../inc/functions/admin-ui.php:440
|
905 |
+
msgid "One Time Plans"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: ../inc/functions/admin-ui.php:450
|
909 |
+
msgid ""
|
910 |
+
"Monthly plans come with credits which is renewed every months. The billing "
|
911 |
+
"happens automatically each month or year depending the billing period you "
|
912 |
+
"choose."
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
|
916 |
+
msgid "we recommend for you"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
|
920 |
+
msgid "Choose plan"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: ../inc/functions/admin-ui.php:498
|
924 |
+
msgid "Need more?"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: ../inc/functions/admin-ui.php:499
|
928 |
+
msgid "for special needs"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: ../inc/functions/admin-ui.php:503
|
932 |
+
msgid "Contact Us"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: ../inc/functions/admin-ui.php:510
|
936 |
+
msgid ""
|
937 |
+
"One time plans are useful if you have a lots of existing images which need "
|
938 |
+
"to be optimized. You can use it for bulk optimizing all your past images. "
|
939 |
+
"You will pay only once."
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: ../inc/functions/admin-ui.php:563
|
943 |
+
msgid "Your order"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: ../inc/functions/admin-ui.php:568
|
947 |
+
#, php-format
|
948 |
+
msgid "%scancel%sYou just removed %s"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
|
952 |
+
msgid "Remove this item"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: ../inc/functions/admin-ui.php:583
|
956 |
+
#, php-format
|
957 |
+
msgid "%s per month"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: ../inc/functions/admin-ui.php:604
|
961 |
+
#, php-format
|
962 |
+
msgid "one time %s"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: ../inc/functions/admin-ui.php:617
|
966 |
+
#, php-format
|
967 |
+
msgid ""
|
968 |
+
"Switch to yearly subscription and <br><strong class=\"imagify-dark\">save %s "
|
969 |
+
"per year!</strong>"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: ../inc/functions/admin-ui.php:618
|
973 |
+
#, php-format
|
974 |
+
msgid ""
|
975 |
+
"Perfect!<br>You're <strong class=\"imagify-dark\">saving %s per year!</"
|
976 |
+
"strong>"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: ../inc/functions/admin-ui.php:657
|
980 |
+
msgid "Thank you for being awesome!"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: ../inc/functions/admin-ui.php:668
|
984 |
+
msgid "What do our user think about Imagify"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: ../inc/functions/admin-ui.php:702
|
988 |
+
msgid "Secure Credit Card Payment"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: ../inc/functions/admin-ui.php:703
|
992 |
+
msgid "This is secure 128-bits SSL encrypted payment"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
# @todo The use of typographic apostrophes is recommended, use U+2019 (https://en.wikipedia.org/wiki/Apostrophe#Typographic_form)
|
996 |
+
#: ../inc/functions/i18n.php:20
|
997 |
+
msgid "Let's get you started!"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here.
|
1001 |
+
#: ../inc/functions/i18n.php:21
|
1002 |
+
msgid "Enter your email to get an API key:"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: ../inc/functions/i18n.php:22
|
1006 |
+
msgid "Sign Up"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here. Use period instead of exclamation mark.
|
1010 |
+
#: ../inc/functions/i18n.php:23
|
1011 |
+
msgid "You need to specify an email!"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
|
1015 |
+
msgid "Congratulations!"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
# @todo WordPress spells email as “e-mail”. Also “with your private API key” would add meaning.
|
1019 |
+
#: ../inc/functions/i18n.php:25
|
1020 |
+
msgid ""
|
1021 |
+
"Your account has been succesfully created. Please check your mailbox, you "
|
1022 |
+
"are going to receive an email with API key."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
# @todo Exclamation mark needed? Context for translators?
|
1026 |
+
#: ../inc/functions/i18n.php:26
|
1027 |
+
msgid "Connect to Imagify!"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: ../inc/functions/i18n.php:27
|
1031 |
+
msgid "Paste your API key below:"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: ../inc/functions/i18n.php:28
|
1035 |
+
msgid "Connect me"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
# @todo Should rather be something like “Validating…” to be consistent with “Optimizing…”
|
1039 |
+
#: ../inc/functions/i18n.php:29
|
1040 |
+
msgid "Check in progress..."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: ../inc/functions/i18n.php:30
|
1044 |
+
msgid "You need to specify your api key!"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: ../inc/functions/i18n.php:32
|
1048 |
+
msgid ""
|
1049 |
+
"Your API key is valid. You can now configure the Imagify settings to "
|
1050 |
+
"optimize your images."
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: ../inc/functions/i18n.php:34
|
1054 |
+
msgid "Cancel"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: ../inc/functions/i18n.php:41
|
1058 |
+
msgid "Don't Need a Parachute?"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: ../inc/functions/i18n.php:42
|
1062 |
+
msgid ""
|
1063 |
+
"If you keep this option deactivated, you won't be able to re-optimize your "
|
1064 |
+
"images to another compression level and restore your original images in case "
|
1065 |
+
"of need."
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: ../inc/functions/i18n.php:58
|
1069 |
+
msgid "Original Image"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: ../inc/functions/i18n.php:59
|
1073 |
+
msgid "Optimized Image"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
# @todo use ellipsis as 1 character (http://unicode.org/cldr/utility/character.jsp?a=2026)
|
1077 |
+
#: ../inc/functions/i18n.php:73
|
1078 |
+
msgid "Please wait..."
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: ../inc/functions/i18n.php:74
|
1082 |
+
msgid ""
|
1083 |
+
"We are trying to get your unoptimized images, it may take time depending on "
|
1084 |
+
"the number of images."
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
# @todo Remove capitalization + exclamation mark.
|
1088 |
+
#: ../inc/functions/i18n.php:76
|
1089 |
+
msgid "Oops, There is something wrong!"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: ../inc/functions/i18n.php:77
|
1093 |
+
msgid ""
|
1094 |
+
"An unknow error occurred when we tried to get all your unoptimized images. "
|
1095 |
+
"Try again and if the issue still persist, please contact us!"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
# @todo Context for translators should be provided.
|
1099 |
+
#: ../inc/functions/i18n.php:82
|
1100 |
+
msgid "Error"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
# @todo Context for translators should be provided.
|
1104 |
+
#: ../inc/functions/i18n.php:85
|
1105 |
+
msgid "Hold on!"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: ../inc/functions/i18n.php:86
|
1109 |
+
msgid "All your images have been optimized by Imagify. Congratulations!"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
# @todo Context for translators should be provided of what %1$s and %2$s represent.
|
1113 |
+
#: ../inc/functions/i18n.php:88
|
1114 |
+
#, php-format
|
1115 |
+
msgid ""
|
1116 |
+
"Discover @imagify, the new compression tool to optimize your images for "
|
1117 |
+
"free. I saved %1$s out of %2$s!"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
# @todo What is going to happen when user does leave the page?
|
1121 |
+
#: ../inc/functions/i18n.php:92
|
1122 |
+
msgid "Imagify is still processing. Are you sure you want to leave this page?"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: ../inc/functions/i18n.php:101
|
1126 |
+
msgid "F j, Y"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: ../inc/functions/process.php:40
|
1130 |
+
msgid ""
|
1131 |
+
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
|
1132 |
+
"couple of minutes."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: ../inc/functions/process.php:46
|
1136 |
+
msgid "External HTTP requests are blocked"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: ../inc/functions/process.php:52
|
1140 |
+
msgid "File path is empty"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: ../inc/functions/process.php:58
|
1144 |
+
#, php-format
|
1145 |
+
msgid "Could not find %s"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: ../inc/functions/process.php:63
|
1149 |
+
#, php-format
|
1150 |
+
msgid "%s is not writable"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
# @todo %s is what?
|
1154 |
+
#: ../inc/functions/process.php:72
|
1155 |
+
#, php-format
|
1156 |
+
msgid "Skipped (%s), image not found."
|
1157 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: wp_media
|
|
3 |
Tags: compress image, images, performance, optimization, photos, upload, resize, gif, png, jpg, reduce image size, retina
|
4 |
Requires at least: 3.7.0
|
5 |
Tested up to: 4.6
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -135,6 +135,12 @@ When the plugin is disabled, your existing images remain optimized. Backups of t
|
|
135 |
3. Media Page
|
136 |
|
137 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
= 1.5.8 =
|
139 |
* Regression fix
|
140 |
* Check if the backup option is active before doing a backup when an image is resized
|
3 |
Tags: compress image, images, performance, optimization, photos, upload, resize, gif, png, jpg, reduce image size, retina
|
4 |
Requires at least: 3.7.0
|
5 |
Tested up to: 4.6
|
6 |
+
Stable tag: 1.5.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
135 |
3. Media Page
|
136 |
|
137 |
== Changelog ==
|
138 |
+
= 1.5.9 =
|
139 |
+
* Bug fix
|
140 |
+
* Don't delete the thumbnail when the maximum file size is set to one of the thumbnail size
|
141 |
+
* Don't strip the image meta data if possible (only with Imagick)
|
142 |
+
* Fix persistent "WELL DONE" message because of "original_size" meta value was 0
|
143 |
+
|
144 |
= 1.5.8 =
|
145 |
* Regression fix
|
146 |
* Check if the backup option is active before doing a backup when an image is resized
|