diff --git a/imagify.php b/imagify.php
index 575b11060..b35b45f55 100644
--- a/imagify.php
+++ b/imagify.php
@@ -3,7 +3,7 @@
Plugin Name: Imagify
Plugin URI: https://wordpress.org/plugins/imagify/
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.
-Version: 1.5.8
+Version: 1.5.9
Author: WP Media
Author URI: http://wp-media.me
Licence: GPLv2
diff --git a/inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php b/inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php
index 33399db62..05502e0ad 100644
--- a/inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php
+++ b/inc/3rd-party/nextgen-gallery/inc/classes/class-attachment.php
@@ -241,7 +241,14 @@ public function optimize( $optimization_level = null, $metadata = array() ) {
'percent' => 0,
)
);
-
+
+ // To avoid issue with "original_size" at 0 in "_imagify_data"
+ if ( 0 === $this->get_stats_data( 'original_size' ) ) {
+ delete_post_meta( $id, '_imagify_data' );
+ delete_post_meta( $id, '_imagify_status' );
+ delete_post_meta( $id, '_imagify_optimization_level' );
+ }
+
// Get file path & URL for original image
$attachment_path = $this->get_original_path();
$attachment_url = $this->get_original_url();
@@ -252,12 +259,6 @@ public function optimize( $optimization_level = null, $metadata = array() ) {
return;
}
- // To avoid issue with "original_size" at 0 in "_imagify_data"
- if ( 0 === $this->get_stats_data( 'original_size' ) ) {
- delete_post_meta( $id, '_imagify_data' );
- delete_post_meta( $id, '_imagify_status' );
- }
-
/**
* Fires before optimizing an attachment.
*
diff --git a/inc/admin/ui/bulk.php b/inc/admin/ui/bulk.php
index 7d93514e6..7f57924c2 100755
--- a/inc/admin/ui/bulk.php
+++ b/inc/admin/ui/bulk.php
@@ -217,7 +217,7 @@ function _imagify_display_bulk_page() {
diff --git a/inc/classes/abstracts/abstract-attachment.php b/inc/classes/abstracts/abstract-attachment.php
index a1da2da74..370389873 100755
--- a/inc/classes/abstracts/abstract-attachment.php
+++ b/inc/classes/abstracts/abstract-attachment.php
@@ -393,6 +393,9 @@ public function restore() {}
* @return string Path the the resized image or the original image if the resize failed
*/
function resize( $attachment_path, $attachment_sizes, $max_width ) {
+ // Prevent removal of the exif/meta data when resizing (only works with Imagick)
+ add_filter( 'image_strip_meta', '__return_false' );
+
$new_sizes = wp_constrain_dimensions( $attachment_sizes[0], $attachment_sizes[1], $max_width );
$editor = wp_get_image_editor( $attachment_path );
@@ -427,14 +430,17 @@ function resize( $attachment_path, $attachment_sizes, $max_width ) {
return $resized;
}
- $resized_image_path = $editor->generate_filename( null );
+ $resized_image_path = $editor->generate_filename( 'imagifyresized' );
$resized_image_saved = $editor->save( $resized_image_path );
if ( is_wp_error( $resized_image_saved ) ) {
return $resized_image_saved;
}
-
+
+ // Remove the filter when we're done to prevent any conflict
+ remove_filter( 'image_strip_meta', '__return_false' );
+
return $resized_image_path;
}
}
\ No newline at end of file
diff --git a/inc/classes/class-attachment.php b/inc/classes/class-attachment.php
index ad6ab13e1..299ba11a8 100644
--- a/inc/classes/class-attachment.php
+++ b/inc/classes/class-attachment.php
@@ -197,7 +197,14 @@ public function optimize( $optimization_level = null, $metadata = array() ) {
'percent' => 0,
)
);
-
+
+ // To avoid issue with "original_size" at 0 in "_imagify_data"
+ if ( 0 === $this->get_stats_data( 'original_size' ) ) {
+ delete_post_meta( $id, '_imagify_data' );
+ delete_post_meta( $id, '_imagify_status' );
+ delete_post_meta( $id, '_imagify_optimization_level' );
+ }
+
// Get file path & URL for original image
$attachment_path = $this->get_original_path();
$attachment_url = $this->get_original_url();
@@ -213,12 +220,6 @@ public function optimize( $optimization_level = null, $metadata = array() ) {
return;
}
- // To avoid issue with "original_size" at 0 in "_imagify_data"
- if ( 0 === $this->get_stats_data( 'original_size' ) ) {
- delete_post_meta( $id, '_imagify_data' );
- delete_post_meta( $id, '_imagify_status' );
- }
-
/**
* Fires before optimizing an attachment.
*
diff --git a/languages/imagify-de_DE.mo b/languages/imagify-de_DE.mo
index c23f11d92..1da0cd56d 100755
Binary files a/languages/imagify-de_DE.mo and b/languages/imagify-de_DE.mo differ
diff --git a/languages/imagify-de_DE.po b/languages/imagify-de_DE.po
index eb9c6624d..e1a1ff77a 100755
--- a/languages/imagify-de_DE.po
+++ b/languages/imagify-de_DE.po
@@ -2,15 +2,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Imagify\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-19 16:34+0200\n"
-"PO-Revision-Date: 2016-04-19 16:42+0200\n"
-"Last-Translator: caspar \n"
+"POT-Creation-Date: 2016-09-23 11:03-0500\n"
+"PO-Revision-Date: 2016-09-23 11:13-0500\n"
+"Last-Translator: Rémy Perona \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
@@ -18,19 +18,19 @@ msgstr ""
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
-"X-Generator: Poedit 1.8.6\n"
+"X-Generator: Poedit 1.6.4\n"
"X-Loco-Target-Locale: de_DE\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
-#: ../inc/functions/admin-ui.php:212 ../inc/functions/i18n.php:46
-#: ../inc/functions/i18n.php:61
+#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
+#: ../inc/functions/i18n.php:64
msgid "Optimize"
msgstr "Optimieren"
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
-#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:47
+#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
msgid "Restore Original"
msgstr "Original wiederherstellen"
@@ -43,15 +43,15 @@ msgstr "Stapelverarbeitung"
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
-#: ../inc/functions/admin-ui.php:202 ../inc/functions/admin-ui.php:212
+#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
msgid "Optimizing..."
msgstr "Wird optimiert …"
-#: ../inc/admin/ajax.php:503
+#: ../inc/admin/ajax.php:507
msgid "Oops, It's almost over!"
msgstr "Hoppla, es wird langsam eng."
-#: ../inc/admin/ajax.php:504
+#: ../inc/admin/ajax.php:508
#, php-format
msgid ""
"You have almost used all your credit.%sDon't forget to upgrade your "
@@ -60,17 +60,17 @@ msgstr ""
"In Kürze wirst du dein Guthaben verbraucht haben.%sAktualisiere dein Abo, um "
"deine Bilder auch in Zukunft zu optimieren."
-#: ../inc/admin/ajax.php:505 ../inc/admin/ui/bulk.php:23
+#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
msgid "View My Subscription"
msgstr "Mein Abo ansehen"
-#: ../inc/admin/ajax.php:513 ../inc/admin/ui/notices.php:251
-#: ../inc/functions/i18n.php:80
+#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
+#: ../inc/functions/i18n.php:84
msgid "Oops, It's Over!"
msgstr "Alles hat ein Ende…"
-#: ../inc/admin/ajax.php:514 ../inc/admin/ui/notices.php:253
-#: ../inc/functions/i18n.php:97
+#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
+#: ../inc/functions/i18n.php:101
#, php-format
msgid ""
"You have consumed all your credit for this month. You will have %s "
@@ -79,28 +79,28 @@ msgstr ""
"Du hast dein Guthaben für diesen Monat aufgebraucht. %s "
"werden dir am %s wieder zur Verfügung stehen."
-#: ../inc/admin/ajax.php:515
+#: ../inc/admin/ajax.php:519
msgid "Upgrade My Subscription"
msgstr "Mein Abo aktualisieren"
-#: ../inc/admin/ajax.php:534 ../inc/admin/ui/bulk.php:17
+#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
msgid "Account status"
msgstr "Kontostatus"
-#: ../inc/admin/ajax.php:535 ../inc/admin/ui/bulk.php:18
+#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
msgid "Your subscription:"
msgstr "Dein Abo:"
-#: ../inc/admin/ajax.php:543 ../inc/admin/ui/bulk.php:48
+#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
#, php-format
msgid "You have %s space credit left"
msgstr "Du hast noch %s Guthaben"
-#: ../inc/admin/ajax.php:555
+#: ../inc/admin/ajax.php:559
msgid "View my subscription"
msgstr "Mein Abo ansehen"
-#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:57
+#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
msgid "Compare Original VS Optimized"
msgstr "Vergleiche Original mit optimiert"
@@ -117,11 +117,11 @@ msgstr "Ungültiger API-Schlüssel"
msgid "Check your Settings"
msgstr "Überprüfe deine Einstellungen"
-#: ../inc/admin/options.php:120
+#: ../inc/admin/options.php:119
msgid "Cheatin’ uh?"
msgstr "Ts, ts, ts …"
-#: ../inc/admin/options.php:128
+#: ../inc/admin/options.php:127
msgid "ERROR: options page not found."
msgstr "Fehler: Einstellungsseite nicht gefunden."
@@ -247,12 +247,10 @@ msgstr "Alle Bilder optimieren"
#: ../inc/admin/ui/bulk.php:220
#, php-format
-msgid ""
-"All images greater than %s will be optimized when using a paying monthly "
-"plan."
+msgid "All images greater than %s will be optimized when using a paid plan."
msgstr ""
-"Alle Bilder, die größer sind als %s, werden optimiert, wenn du ein "
-"monatliches Abo nutzt."
+"Alle Bilder größer als %s werden optimiert, wenn du einen bezahlten Tarif "
+"nutzt."
#: ../inc/admin/ui/bulk.php:239
msgid "Well done!"
@@ -285,7 +283,7 @@ msgid "Original"
msgstr "Original"
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
-#: ../inc/functions/i18n.php:76
+#: ../inc/functions/i18n.php:80
msgid "Optimized"
msgstr "Optimiert"
@@ -322,21 +320,21 @@ msgstr "Gewinn:"
msgid "%sStart the bulk optimization%s"
msgstr "%sStapelverarbeitung starten%s"
-#: ../inc/admin/ui/notices.php:23
+#: ../inc/admin/ui/notices.php:24
msgid "Welcome to Imagify, the best way to easily optimize your images!"
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
-#: ../inc/admin/ui/notices.php:25 ../inc/admin/ui/notices.php:90
-#: ../inc/admin/ui/notices.php:181 ../inc/admin/ui/notices.php:217
-#: ../inc/admin/ui/notices.php:256 ../inc/admin/ui/notices.php:361
+#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
+#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
+#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
msgid "Dismiss this notice"
msgstr "Diese Meldung verwerfen"
-#: ../inc/admin/ui/notices.php:32
+#: ../inc/admin/ui/notices.php:33
msgid "Create an Account"
msgstr "Konto anlegen"
-#: ../inc/admin/ui/notices.php:33
+#: ../inc/admin/ui/notices.php:34
msgid ""
"Don't have an Imagify account yet? Optimize your images by creating an "
"account in a few seconds!"
@@ -344,15 +342,15 @@ msgstr ""
"Registriere dein Konto bei Imagify (kostenfrei, dauert nur ein paar "
"Sekunden), um anschließend deine Bilder in WordPress zu optimieren."
-#: ../inc/admin/ui/notices.php:36
+#: ../inc/admin/ui/notices.php:37
msgid "Sign up, It's FREE!"
msgstr "Mein Konto kostenfrei anlegen"
-#: ../inc/admin/ui/notices.php:42
+#: ../inc/admin/ui/notices.php:43
msgid "Enter your API Key"
msgstr "API-Schlüssel eingeben"
-#: ../inc/admin/ui/notices.php:43
+#: ../inc/admin/ui/notices.php:44
#, php-format
msgid ""
"Save your API Key you have received by email or you can get it on your "
@@ -362,30 +360,31 @@ msgstr ""
"erhalten hast. Du kannst ihn auch jederzeit in deinen %sKontoeinstellungen%s "
"abrufen."
-#: ../inc/admin/ui/notices.php:46
+#: ../inc/admin/ui/notices.php:47
msgid "I have my API key"
msgstr "Meinen API-Schlüssel eingeben"
-#: ../inc/admin/ui/notices.php:52
+#: ../inc/admin/ui/notices.php:53
msgid "Configure it"
msgstr "Einstellungen wählen"
-#: ../inc/admin/ui/notices.php:53
+#: ../inc/admin/ui/notices.php:54
msgid ""
"It’s almost done! You have just to configure your optimization settings."
msgstr ""
"Fast fertig! Wähle nun deine Einstellungen für Imagify. Anschließend kannst "
"du alle deine Bilder von Imagify automatisch optimieren lassen."
-#: ../inc/admin/ui/notices.php:54
+#: ../inc/admin/ui/notices.php:55
msgid "Go to Settings"
msgstr "Meine Einstellungen wählen"
-#: ../inc/admin/ui/notices.php:85 ../inc/admin/ui/options.php:97
+#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
+#: ../inc/functions/i18n.php:78
msgid "Your API key isn't valid!"
msgstr "Dein API-Schlüssel ist ungültig."
-#: ../inc/admin/ui/notices.php:88
+#: ../inc/admin/ui/notices.php:90
#, php-format
msgid ""
"Go to your Imagify account page to get your API Key and specify it on "
@@ -396,7 +395,7 @@ msgstr ""
"geholt hast, %1$shinterlege ihn in deinen Einstellungen%3$s. Oder %2$slege "
"kostenfrei ein Konto an%3$s, um deinen API-Schlüssel zu erhalten."
-#: ../inc/admin/ui/notices.php:138
+#: ../inc/admin/ui/notices.php:142
msgid ""
"The following plugins are not compatible with this plugin and may cause "
"unexpected results:"
@@ -404,15 +403,15 @@ msgstr ""
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
"unerwartete Ergebnisse verursachen:"
-#: ../inc/admin/ui/notices.php:144
+#: ../inc/admin/ui/notices.php:148
msgid "Deactivate"
msgstr "Deaktivieren"
-#: ../inc/admin/ui/notices.php:173
+#: ../inc/admin/ui/notices.php:178
msgid "The external HTTP requests are blocked!"
msgstr "Externe HTTP-Anfragen werden blockiert."
-#: ../inc/admin/ui/notices.php:174
+#: ../inc/admin/ui/notices.php:179
msgid ""
"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
"config.php
to block all external HTTP requests."
@@ -421,7 +420,7 @@ msgstr ""
"config.php die PHP-Konstante WP_HTTP_BLOCK_EXTERNAL
"
"gesetzt ist.\n"
-#: ../inc/admin/ui/notices.php:176
+#: ../inc/admin/ui/notices.php:181
msgid ""
"To optimize your images, you have to put the following code in your wp-"
"config.php
file so that it works correctly."
@@ -429,24 +428,24 @@ msgstr ""
"Um deine Bilder optimieren zu können, füge den folgenden Code zu deiner "
"wp-config.php hinzu."
-#: ../inc/admin/ui/notices.php:177
+#: ../inc/admin/ui/notices.php:182
msgid "Click on the field and press Ctrl-A to select all."
msgstr "Klicke auf das Feld und drücke ctrl+A (cmd+A) für Alles auswählen."
-#: ../inc/admin/ui/notices.php:213
+#: ../inc/admin/ui/notices.php:219
msgid "You're missing out!"
msgstr "Du verpasst etwas!"
-#: ../inc/admin/ui/notices.php:214
+#: ../inc/admin/ui/notices.php:220
msgid "Use the List view to optimize images with Imagify."
msgstr "In der Listenansicht kannst du deine Bilder direkt zu optimieren."
-#: ../inc/admin/ui/notices.php:215
+#: ../inc/admin/ui/notices.php:221
msgid "Switch to the List View"
msgstr "Zur Listenansicht wechseln"
-#: ../inc/admin/ui/notices.php:253 ../inc/functions/i18n.php:94
-#: ../inc/functions/i18n.php:97
+#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
+#: ../inc/functions/i18n.php:101
#, php-format
msgid ""
"To continue to optimize your images, log in to your Imagify account to %sbuy "
@@ -455,28 +454,28 @@ msgstr ""
"Um deine Bilder auch in Zukunft zu optimieren, logge dich bei Imagify.io ein "
"und %skaufe ein einmaliges Guthaben oder ein Abo%s."
-#: ../inc/admin/ui/notices.php:306 ../inc/admin/ui/options.php:28
+#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
msgid "Discover the best caching plugin to speed up your website."
msgstr ""
"Entdecke das beste Caching-Plugin, um deine Website schneller zu machen."
-#: ../inc/admin/ui/notices.php:309 ../inc/admin/ui/options.php:36
+#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
#, php-format
msgid "%sGet %s off%s with this coupon code:%s"
msgstr "%sErhalte %s Rabatt%s mit diesem Gutschein-Code:%s"
-#: ../inc/admin/ui/notices.php:318 ../inc/admin/ui/options.php:41
+#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
msgid "Get WP Rocket now"
msgstr "Hole dir WP Rocket jetzt"
-#: ../inc/admin/ui/notices.php:354
+#: ../inc/admin/ui/notices.php:363
#, php-format
msgid ""
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
"your website's speed by reducing your images size."
msgstr ""
-#: ../inc/admin/ui/notices.php:356 ../inc/admin/ui/options.php:59
+#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
#, php-format
msgid ""
"%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?"
msgid "API Key"
msgstr "API-Schlüssel"
-#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:31
+#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
msgid "Your API key is valid."
msgstr "Dein API-Schlüssel ist gültig."
@@ -700,7 +699,7 @@ msgstr ""
"maximaler Reduktion der Dateigröße zu riskieren."
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
-#: ../inc/functions/admin-ui.php:659 ../inc/functions/i18n.php:58
+#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
msgid "Close"
msgstr "Schließen"
@@ -728,17 +727,17 @@ msgstr "Modus:"
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
-#: ../inc/functions/i18n.php:59
+#: ../inc/functions/i18n.php:62
msgid "File Size:"
msgstr "Dateigröße:"
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
-#: ../inc/functions/i18n.php:60
+#: ../inc/functions/i18n.php:63
msgid "Original Saving:"
msgstr "Optimiert um:"
-#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:77
+#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
msgid "Unoptimized"
msgstr "Nicht Optimiert"
@@ -754,7 +753,7 @@ msgstr "Filtere nach Status"
msgid "All images"
msgstr "Alle Bilder"
-#: ../inc/classes/class-attachment.php:266
+#: ../inc/classes/class-attachment.php:297
msgid ""
"This size isn't authorized to be optimized. Update your Imagify settings if "
"you want to optimize it."
@@ -814,228 +813,228 @@ msgstr "Erneut optimieren als %s"
msgid "%s can't be optimized"
msgstr "%s kann nicht optimiert werden."
-#: ../inc/functions/admin-ui.php:237
+#: ../inc/functions/admin-ui.php:240
msgid "What plan do I need?"
msgstr ""
-#: ../inc/functions/admin-ui.php:241
+#: ../inc/functions/admin-ui.php:244
msgid "You're new to Imagify?"
msgstr ""
-#: ../inc/functions/admin-ui.php:242
+#: ../inc/functions/admin-ui.php:245
msgid ""
"Let us help you by analyzing your existing images and determinate the best "
"plan for you"
msgstr ""
-#: ../inc/functions/admin-ui.php:277
+#: ../inc/functions/admin-ui.php:280
msgid "Choose Plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:278
+#: ../inc/functions/admin-ui.php:281
msgid "Payment Info"
msgstr ""
-#: ../inc/functions/admin-ui.php:283
+#: ../inc/functions/admin-ui.php:286
msgid "We analysed your images"
msgstr ""
-#: ../inc/functions/admin-ui.php:289
+#: ../inc/functions/admin-ui.php:292
#, php-format
msgid "You have %s images"
msgstr ""
-#: ../inc/functions/admin-ui.php:295
+#: ../inc/functions/admin-ui.php:298
#, php-format
msgid "You actually have %s of images in your library."
msgstr ""
-#: ../inc/functions/admin-ui.php:299
+#: ../inc/functions/admin-ui.php:302
#, php-format
msgid "You upload around %s of images per month."
msgstr ""
-#: ../inc/functions/admin-ui.php:306
+#: ../inc/functions/admin-ui.php:309
msgid "We recommend you this plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:311
+#: ../inc/functions/admin-ui.php:314
msgid "Subscribe a monthly plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:312
+#: ../inc/functions/admin-ui.php:315
msgid "Subscribe a yearly plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:316 ../inc/functions/admin-ui.php:452
-#: ../inc/functions/admin-ui.php:620
+#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
+#: ../inc/functions/admin-ui.php:623
msgid "Monthly"
msgstr ""
-#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
-#: ../inc/functions/admin-ui.php:623
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
msgid "Yearly"
msgstr ""
-#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
-#: ../inc/functions/admin-ui.php:623
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
msgid "2 months free"
msgstr ""
-#: ../inc/functions/admin-ui.php:330 ../inc/functions/admin-ui.php:349
-#: ../inc/functions/admin-ui.php:465 ../inc/functions/admin-ui.php:475
+#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
+#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
msgid "/month"
msgstr ""
-#: ../inc/functions/admin-ui.php:332 ../inc/functions/admin-ui.php:380
-#: ../inc/functions/admin-ui.php:467 ../inc/functions/admin-ui.php:518
+#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
+#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
#, php-format
msgid "approx: %s images"
msgstr ""
-#: ../inc/functions/admin-ui.php:353 ../inc/functions/admin-ui.php:481
+#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
#, php-format
msgid ""
"%s per
\n"
"additionnal Gb"
msgstr ""
-#: ../inc/functions/admin-ui.php:358 ../inc/functions/admin-ui.php:393
-#: ../inc/functions/admin-ui.php:577 ../inc/functions/admin-ui.php:598
+#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
+#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
msgid "Choose another plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:368
+#: ../inc/functions/admin-ui.php:371
msgid "Optimize the images you already have, buy a one-time plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:404
+#: ../inc/functions/admin-ui.php:407
msgid "Checkout"
msgstr ""
-#: ../inc/functions/admin-ui.php:408
+#: ../inc/functions/admin-ui.php:411
msgid ""
"Monthly plans comes with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: ../inc/functions/admin-ui.php:432
+#: ../inc/functions/admin-ui.php:435
msgid "Monthly Plans"
msgstr ""
-#: ../inc/functions/admin-ui.php:437
+#: ../inc/functions/admin-ui.php:440
msgid "One Time Plans"
msgstr ""
-#: ../inc/functions/admin-ui.php:447
+#: ../inc/functions/admin-ui.php:450
msgid ""
"Monthly plans come with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: ../inc/functions/admin-ui.php:479 ../inc/functions/admin-ui.php:526
+#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
msgid "we recommend for you"
msgstr ""
-#: ../inc/functions/admin-ui.php:487 ../inc/functions/admin-ui.php:530
+#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
msgid "Choose plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:495
+#: ../inc/functions/admin-ui.php:498
msgid "Need more?"
msgstr ""
-#: ../inc/functions/admin-ui.php:496
+#: ../inc/functions/admin-ui.php:499
msgid "for special needs"
msgstr ""
-#: ../inc/functions/admin-ui.php:500
+#: ../inc/functions/admin-ui.php:503
msgid "Contact Us"
msgstr ""
-#: ../inc/functions/admin-ui.php:507
+#: ../inc/functions/admin-ui.php:510
msgid ""
"One time plans are useful if you have a lots of existing images which need "
"to be optimized. You can use it for bulk optimizing all your past images. "
"You will pay only once."
msgstr ""
-#: ../inc/functions/admin-ui.php:560
+#: ../inc/functions/admin-ui.php:563
msgid "Your order"
msgstr ""
-#: ../inc/functions/admin-ui.php:565
+#: ../inc/functions/admin-ui.php:568
#, php-format
msgid "%scancel%sYou just removed %s"
msgstr ""
-#: ../inc/functions/admin-ui.php:573 ../inc/functions/admin-ui.php:594
+#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
msgid "Remove this item"
msgstr ""
-#: ../inc/functions/admin-ui.php:580
+#: ../inc/functions/admin-ui.php:583
#, php-format
msgid "%s per month"
msgstr ""
-#: ../inc/functions/admin-ui.php:601
+#: ../inc/functions/admin-ui.php:604
#, php-format
msgid "one time %s"
msgstr ""
-#: ../inc/functions/admin-ui.php:614
+#: ../inc/functions/admin-ui.php:617
#, php-format
msgid ""
"Switch to yearly subscription and
save %s "
"per year!"
msgstr ""
-#: ../inc/functions/admin-ui.php:615
+#: ../inc/functions/admin-ui.php:618
#, php-format
msgid ""
"Perfect!
You're saving %s per year!"
"strong>"
msgstr ""
-#: ../inc/functions/admin-ui.php:654
+#: ../inc/functions/admin-ui.php:657
msgid "Thank you for being awesome!"
msgstr ""
-#: ../inc/functions/admin-ui.php:665
+#: ../inc/functions/admin-ui.php:668
msgid "What do our user think about Imagify"
msgstr ""
-#: ../inc/functions/admin-ui.php:699
+#: ../inc/functions/admin-ui.php:702
msgid "Secure Credit Card Payment"
msgstr ""
-#: ../inc/functions/admin-ui.php:700
+#: ../inc/functions/admin-ui.php:703
msgid "This is secure 128-bits SSL encrypted payment"
msgstr ""
-#: ../inc/functions/i18n.php:19
+#: ../inc/functions/i18n.php:20
msgid "Let's get you started!"
msgstr "Los geht’s!"
-#: ../inc/functions/i18n.php:20
+#: ../inc/functions/i18n.php:21
msgid "Enter your email to get an API key:"
msgstr "Gib deinen E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
-#: ../inc/functions/i18n.php:21
+#: ../inc/functions/i18n.php:22
msgid "Sign Up"
msgstr "Konto anlegen"
-#: ../inc/functions/i18n.php:22
+#: ../inc/functions/i18n.php:23
msgid "You need to specify an email!"
msgstr "Du musst eine E-Mail-Adresse angeben."
-#: ../inc/functions/i18n.php:23 ../inc/functions/i18n.php:29
+#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
msgid "Congratulations!"
msgstr "Glückwunsch!"
-#: ../inc/functions/i18n.php:24
+#: ../inc/functions/i18n.php:25
msgid ""
"Your account has been succesfully created. Please check your mailbox, you "
"are going to receive an email with API key."
@@ -1043,23 +1042,27 @@ msgstr ""
"Dein Konto ist jetzt angelegt. Überprüfe dein E-Mail-Postfach, du erhältst "
"eine E-Mail mit deinem API-Schlüssel."
-#: ../inc/functions/i18n.php:25
+#: ../inc/functions/i18n.php:26
msgid "Connect to Imagify!"
msgstr "Verbindung zu Imagify herstellen"
-#: ../inc/functions/i18n.php:26
+#: ../inc/functions/i18n.php:27
msgid "Paste your API key below:"
msgstr "Füge deinen API-Schlüssel hier ein:"
-#: ../inc/functions/i18n.php:27
+#: ../inc/functions/i18n.php:28
msgid "Connect me"
msgstr "Verbinden"
-#: ../inc/functions/i18n.php:28
+#: ../inc/functions/i18n.php:29
msgid "Check in progress..."
msgstr "API-Schlüssel wird geprüft…"
#: ../inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr "Du musst einen API-Schlüssel angeben!"
+
+#: ../inc/functions/i18n.php:32
msgid ""
"Your API key is valid. You can now configure the Imagify settings to "
"optimize your images."
@@ -1067,15 +1070,15 @@ msgstr ""
"Dein API-Schlüssel ist gültig. Du kannst jetzt deine Einstellungen für die "
"Bildoptimierung mit Imagify wählen."
-#: ../inc/functions/i18n.php:32
+#: ../inc/functions/i18n.php:34
msgid "Cancel"
msgstr ""
-#: ../inc/functions/i18n.php:38
+#: ../inc/functions/i18n.php:41
msgid "Don't Need a Parachute?"
msgstr "Du brauchst keinen Fallschirm?"
-#: ../inc/functions/i18n.php:39
+#: ../inc/functions/i18n.php:42
msgid ""
"If you keep this option deactivated, you won't be able to re-optimize your "
"images to another compression level and restore your original images in case "
@@ -1085,19 +1088,19 @@ msgstr ""
"mit einem anderen Level komprimieren, oder deren Originale wiederherstellen "
"können."
-#: ../inc/functions/i18n.php:55
+#: ../inc/functions/i18n.php:58
msgid "Original Image"
msgstr "Originalbild"
-#: ../inc/functions/i18n.php:56
+#: ../inc/functions/i18n.php:59
msgid "Optimized Image"
msgstr "Optimiertes Bild"
-#: ../inc/functions/i18n.php:70
+#: ../inc/functions/i18n.php:73
msgid "Please wait..."
msgstr "Einen Moment bitte …"
-#: ../inc/functions/i18n.php:71
+#: ../inc/functions/i18n.php:74
msgid ""
"We are trying to get your unoptimized images, it may take time depending on "
"the number of images."
@@ -1105,11 +1108,11 @@ msgstr ""
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
"…"
-#: ../inc/functions/i18n.php:73
+#: ../inc/functions/i18n.php:76
msgid "Oops, There is something wrong!"
msgstr "Hm, etwas ist schief gelaufen."
-#: ../inc/functions/i18n.php:74
+#: ../inc/functions/i18n.php:77
msgid ""
"An unknow error occurred when we tried to get all your unoptimized images. "
"Try again and if the issue still persist, please contact us!"
@@ -1118,19 +1121,19 @@ msgstr ""
"aufgetreten. Versuche es noch einmal; falls der Fehler sich wiederholt, "
"kontaktiere bitte den Imagify-Support."
-#: ../inc/functions/i18n.php:78
+#: ../inc/functions/i18n.php:82
msgid "Error"
msgstr "Fehler"
-#: ../inc/functions/i18n.php:81
+#: ../inc/functions/i18n.php:85
msgid "Hold on!"
msgstr "Moment, bitte!"
-#: ../inc/functions/i18n.php:82
+#: ../inc/functions/i18n.php:86
msgid "All your images have been optimized by Imagify. Congratulations!"
msgstr "Imagify hat alle deine Bilder optimiert. Glückwunsch!"
-#: ../inc/functions/i18n.php:84
+#: ../inc/functions/i18n.php:88
#, php-format
msgid ""
"Discover @imagify, the new compression tool to optimize your images for "
@@ -1139,17 +1142,17 @@ msgstr ""
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
-#: ../inc/functions/i18n.php:88
+#: ../inc/functions/i18n.php:92
msgid "Imagify is still processing. Are you sure you want to leave this page?"
msgstr ""
"Imagify arbeitet noch. Möchtest du diese Seite wirklich verlassen und den "
"Prozess abbrechen?"
-#: ../inc/functions/i18n.php:97
+#: ../inc/functions/i18n.php:101
msgid "F j, Y"
msgstr "j. F Y"
-#: ../inc/functions/process.php:41
+#: ../inc/functions/process.php:40
msgid ""
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
"couple of minutes."
@@ -1157,41 +1160,29 @@ msgstr ""
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuche es "
"in ein paar Minuten noch einmal."
-#: ../inc/functions/process.php:47
+#: ../inc/functions/process.php:46
msgid "External HTTP requests are blocked"
msgstr "Externe HTTP-Anfragen werden blockiert"
-#: ../inc/functions/process.php:53
+#: ../inc/functions/process.php:52
msgid "File path is empty"
msgstr "Datei-Pfad ist leer"
-#: ../inc/functions/process.php:59
+#: ../inc/functions/process.php:58
#, php-format
msgid "Could not find %s"
msgstr "%s wurde nicht gefunden"
-#: ../inc/functions/process.php:64
+#: ../inc/functions/process.php:63
#, php-format
msgid "%s is not writable"
msgstr "%s ist nicht beschreibbar."
-#: ../inc/functions/process.php:73
+#: ../inc/functions/process.php:72
#, php-format
msgid "Skipped (%s), image not found."
msgstr "Übersprungen (%s), Bild nicht gefunden."
-#: ../assets/js/sweetalert.min.js:1
-msgid "./utils"
-msgstr ""
-
-#: ../assets/js/sweetalert.min.js:1
-msgid "./handle-swal-dom"
-msgstr ""
-
-#: ../assets/js/sweetalert.min.js:1
-msgid "./handle-dom"
-msgstr ""
-
#~ msgid "https://wordpress.org/plugins/imagify"
#~ msgstr "https://de.wordpress.org/plugins/imagify"
diff --git a/languages/imagify-de_DE_formal.mo b/languages/imagify-de_DE_formal.mo
index 83bf0f1c8..ed9b259e4 100755
Binary files a/languages/imagify-de_DE_formal.mo and b/languages/imagify-de_DE_formal.mo differ
diff --git a/languages/imagify-de_DE_formal.po b/languages/imagify-de_DE_formal.po
index f46a86047..309ed5456 100644
--- a/languages/imagify-de_DE_formal.po
+++ b/languages/imagify-de_DE_formal.po
@@ -2,9 +2,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Imagify\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-19 16:42+0200\n"
-"PO-Revision-Date: 2016-04-19 16:43+0200\n"
-"Last-Translator: caspar \n"
+"POT-Creation-Date: 2016-09-23 11:14-0500\n"
+"PO-Revision-Date: 2016-09-23 11:16-0500\n"
+"Last-Translator: Rémy Perona \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -18,19 +18,19 @@ msgstr ""
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
-"X-Generator: Poedit 1.8.6\n"
+"X-Generator: Poedit 1.6.4\n"
"X-Loco-Target-Locale: de_DE\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
-#: ../inc/functions/admin-ui.php:212 ../inc/functions/i18n.php:46
-#: ../inc/functions/i18n.php:61
+#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
+#: ../inc/functions/i18n.php:64
msgid "Optimize"
msgstr "Optimieren"
#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
-#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:47
+#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
msgid "Restore Original"
msgstr "Original wiederherstellen"
@@ -43,15 +43,15 @@ msgstr "Stapelverarbeitung"
#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
-#: ../inc/functions/admin-ui.php:202 ../inc/functions/admin-ui.php:212
+#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
msgid "Optimizing..."
msgstr "Wird optimiert …"
-#: ../inc/admin/ajax.php:503
+#: ../inc/admin/ajax.php:507
msgid "Oops, It's almost over!"
msgstr "Hoppla, es wird langsam eng."
-#: ../inc/admin/ajax.php:504
+#: ../inc/admin/ajax.php:508
#, php-format
msgid ""
"You have almost used all your credit.%sDon't forget to upgrade your "
@@ -60,17 +60,17 @@ msgstr ""
"In Kürze werden Sie Ihr Guthaben verbraucht haben.%sAktualisieren Sie Ihr "
"Abo, um Ihre Bilder auch in Zukunft zu optimieren."
-#: ../inc/admin/ajax.php:505 ../inc/admin/ui/bulk.php:23
+#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
msgid "View My Subscription"
msgstr "Mein Abo ansehen"
-#: ../inc/admin/ajax.php:513 ../inc/admin/ui/notices.php:251
-#: ../inc/functions/i18n.php:80
+#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
+#: ../inc/functions/i18n.php:84
msgid "Oops, It's Over!"
msgstr "Alles hat ein Ende…"
-#: ../inc/admin/ajax.php:514 ../inc/admin/ui/notices.php:253
-#: ../inc/functions/i18n.php:97
+#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
+#: ../inc/functions/i18n.php:101
#, php-format
msgid ""
"You have consumed all your credit for this month. You will have %s "
@@ -79,35 +79,36 @@ msgstr ""
"Sie haben Ihr Guthaben für diesen Monat aufgebraucht. %s "
"werden Ihnen am %s wieder zur Verfügung stehen."
-#: ../inc/admin/ajax.php:515
+#: ../inc/admin/ajax.php:519
msgid "Upgrade My Subscription"
msgstr "Mein Abo aktualisieren"
-#: ../inc/admin/ajax.php:534 ../inc/admin/ui/bulk.php:17
+#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
msgid "Account status"
msgstr "Kontostatus"
-#: ../inc/admin/ajax.php:535 ../inc/admin/ui/bulk.php:18
+#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
msgid "Your subscription:"
msgstr "Ihr Abo:"
-#: ../inc/admin/ajax.php:543 ../inc/admin/ui/bulk.php:48
+#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
#, php-format
msgid "You have %s space credit left"
msgstr "Sie haben noch %s Guthaben"
-#: ../inc/admin/ajax.php:555
+#: ../inc/admin/ajax.php:559
msgid "View my subscription"
msgstr "Mein Abo ansehen"
-#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:57
+#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
msgid "Compare Original VS Optimized"
msgstr "Vergleiche Original mit optimiert"
#: ../inc/admin/meta-boxes.php:17 ../inc/admin/meta-boxes.php:24
#: ../inc/admin/upload.php:12
+#, fuzzy
msgid "Imagify"
-msgstr ""
+msgstr "Verbindung zu Imagify herstellen"
#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:195
msgid "Invalid API key"
@@ -117,11 +118,11 @@ msgstr "Ungültiger API-Schlüssel"
msgid "Check your Settings"
msgstr "Überprüfen Sie Ihre Einstellungen"
-#: ../inc/admin/options.php:120
+#: ../inc/admin/options.php:119
msgid "Cheatin’ uh?"
msgstr "Ts, ts, ts …"
-#: ../inc/admin/options.php:128
+#: ../inc/admin/options.php:127
msgid "ERROR: options page not found."
msgstr "Fehler: Einstellungsseite nicht gefunden."
@@ -247,12 +248,10 @@ msgstr "Alle Bilder optimieren"
#: ../inc/admin/ui/bulk.php:220
#, php-format
-msgid ""
-"All images greater than %s will be optimized when using a paying monthly "
-"plan."
+msgid "All images greater than %s will be optimized when using a paid plan."
msgstr ""
-"Alle Bilder, die größer sind als %s, werden optimiert, wenn Sie ein "
-"monatliches Abo nutzen."
+"Alle Bilder größer als %s werden optimiert, wenn Sie einen bezahlten Tarif "
+"nutzen."
#: ../inc/admin/ui/bulk.php:239
msgid "Well done!"
@@ -285,7 +284,7 @@ msgid "Original"
msgstr "Original"
#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
-#: ../inc/functions/i18n.php:76
+#: ../inc/functions/i18n.php:80
msgid "Optimized"
msgstr "Optimiert"
@@ -322,21 +321,21 @@ msgstr "Gewinn:"
msgid "%sStart the bulk optimization%s"
msgstr "%sStapelverarbeitung starten%s"
-#: ../inc/admin/ui/notices.php:23
+#: ../inc/admin/ui/notices.php:24
msgid "Welcome to Imagify, the best way to easily optimize your images!"
msgstr "Willkommen bei Imagify, der smarten Bildoptimierung!"
-#: ../inc/admin/ui/notices.php:25 ../inc/admin/ui/notices.php:90
-#: ../inc/admin/ui/notices.php:181 ../inc/admin/ui/notices.php:217
-#: ../inc/admin/ui/notices.php:256 ../inc/admin/ui/notices.php:361
+#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
+#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
+#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
msgid "Dismiss this notice"
msgstr "Diese Meldung verwerfen"
-#: ../inc/admin/ui/notices.php:32
+#: ../inc/admin/ui/notices.php:33
msgid "Create an Account"
msgstr "Konto anlegen"
-#: ../inc/admin/ui/notices.php:33
+#: ../inc/admin/ui/notices.php:34
msgid ""
"Don't have an Imagify account yet? Optimize your images by creating an "
"account in a few seconds!"
@@ -344,15 +343,15 @@ msgstr ""
"Registrieren Sie Ihr Konto bei Imagify (kostenfrei, dauert nur ein paar "
"Sekunden), um anschließend Ihre Bilder in WordPress zu optimieren."
-#: ../inc/admin/ui/notices.php:36
+#: ../inc/admin/ui/notices.php:37
msgid "Sign up, It's FREE!"
msgstr "Mein Konto kostenfrei anlegen"
-#: ../inc/admin/ui/notices.php:42
+#: ../inc/admin/ui/notices.php:43
msgid "Enter your API Key"
msgstr "API-Schlüssel eingeben"
-#: ../inc/admin/ui/notices.php:43
+#: ../inc/admin/ui/notices.php:44
#, php-format
msgid ""
"Save your API Key you have received by email or you can get it on your "
@@ -362,30 +361,31 @@ msgstr ""
"Mail erhalten haben. Sie können ihn auch jederzeit in Ihren "
"%sKontoeinstellungen%s abrufen."
-#: ../inc/admin/ui/notices.php:46
+#: ../inc/admin/ui/notices.php:47
msgid "I have my API key"
msgstr "Meinen API-Schlüssel eingeben"
-#: ../inc/admin/ui/notices.php:52
+#: ../inc/admin/ui/notices.php:53
msgid "Configure it"
msgstr "Einstellungen wählen"
-#: ../inc/admin/ui/notices.php:53
+#: ../inc/admin/ui/notices.php:54
msgid ""
"It’s almost done! You have just to configure your optimization settings."
msgstr ""
"Fast fertig! Wählen Sie nun Ihre Einstellungen für Imagify. Anschließend "
"können Sie alle Ihre Bilder von Imagify automatisch optimieren lassen."
-#: ../inc/admin/ui/notices.php:54
+#: ../inc/admin/ui/notices.php:55
msgid "Go to Settings"
msgstr "Meine Einstellungen wählen"
-#: ../inc/admin/ui/notices.php:85 ../inc/admin/ui/options.php:97
+#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
+#: ../inc/functions/i18n.php:78
msgid "Your API key isn't valid!"
msgstr "Ihr API-Schlüssel ist ungültig."
-#: ../inc/admin/ui/notices.php:88
+#: ../inc/admin/ui/notices.php:90
#, php-format
msgid ""
"Go to your Imagify account page to get your API Key and specify it on "
@@ -397,7 +397,7 @@ msgstr ""
"%2$slegen Sie kostenfrei ein Konto an%3$s, um einen API-Schlüssel zu "
"erhalten."
-#: ../inc/admin/ui/notices.php:138
+#: ../inc/admin/ui/notices.php:142
msgid ""
"The following plugins are not compatible with this plugin and may cause "
"unexpected results:"
@@ -405,15 +405,15 @@ msgstr ""
"Die folgenden Plugins sind nicht kompatibel mit diesem Plugin und können "
"unerwartete Ergebnisse verursachen:"
-#: ../inc/admin/ui/notices.php:144
+#: ../inc/admin/ui/notices.php:148
msgid "Deactivate"
msgstr "Deaktivieren"
-#: ../inc/admin/ui/notices.php:173
+#: ../inc/admin/ui/notices.php:178
msgid "The external HTTP requests are blocked!"
msgstr "Externe HTTP-Anfragen werden blockiert."
-#: ../inc/admin/ui/notices.php:174
+#: ../inc/admin/ui/notices.php:179
msgid ""
"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
"config.php
to block all external HTTP requests."
@@ -422,7 +422,7 @@ msgstr ""
"config.php die PHP-Konstante WP_HTTP_BLOCK_EXTERNAL
"
"gesetzt ist.\n"
-#: ../inc/admin/ui/notices.php:176
+#: ../inc/admin/ui/notices.php:181
msgid ""
"To optimize your images, you have to put the following code in your wp-"
"config.php
file so that it works correctly."
@@ -430,25 +430,25 @@ msgstr ""
"Um Ihre Bilder optimieren zu können, fügen Sie den folgenden Code zu Ihrer "
"wp-config.php hinzu."
-#: ../inc/admin/ui/notices.php:177
+#: ../inc/admin/ui/notices.php:182
msgid "Click on the field and press Ctrl-A to select all."
msgstr ""
"Klicken Sie auf das Feld und drücken Sie ctrl+A (cmd+A) für Alles auswählen."
-#: ../inc/admin/ui/notices.php:213
+#: ../inc/admin/ui/notices.php:219
msgid "You're missing out!"
msgstr "Sie verpassen etwas!"
-#: ../inc/admin/ui/notices.php:214
+#: ../inc/admin/ui/notices.php:220
msgid "Use the List view to optimize images with Imagify."
msgstr "In der Listenansicht können Sie Ihre Bilder direkt zu optimieren."
-#: ../inc/admin/ui/notices.php:215
+#: ../inc/admin/ui/notices.php:221
msgid "Switch to the List View"
msgstr "Zur Listenansicht wechseln"
-#: ../inc/admin/ui/notices.php:253 ../inc/functions/i18n.php:94
-#: ../inc/functions/i18n.php:97
+#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
+#: ../inc/functions/i18n.php:101
#, php-format
msgid ""
"To continue to optimize your images, log in to your Imagify account to %sbuy "
@@ -457,28 +457,28 @@ msgstr ""
"Um Ihre Bilder auch in Zukunft zu optimieren, loggen Sie sich bei Imagify.io "
"ein und %skaufen Sie ein einmaliges Guthaben oder ein Abo%s."
-#: ../inc/admin/ui/notices.php:306 ../inc/admin/ui/options.php:28
+#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
msgid "Discover the best caching plugin to speed up your website."
msgstr ""
"Entdecken Sie das beste Caching-Plugin, um Ihre Website schneller zu machen."
-#: ../inc/admin/ui/notices.php:309 ../inc/admin/ui/options.php:36
+#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
#, php-format
msgid "%sGet %s off%s with this coupon code:%s"
msgstr "%sErhalten Sie %s Rabatt%s mit diesem Gutschein-Code:%s"
-#: ../inc/admin/ui/notices.php:318 ../inc/admin/ui/options.php:41
+#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
msgid "Get WP Rocket now"
msgstr "Holen Sie sich WP Rocket jetzt"
-#: ../inc/admin/ui/notices.php:354
+#: ../inc/admin/ui/notices.php:363
#, php-format
msgid ""
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
"your website's speed by reducing your images size."
msgstr ""
-#: ../inc/admin/ui/notices.php:356 ../inc/admin/ui/options.php:59
+#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
#, php-format
msgid ""
"%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?"
msgid "API Key"
msgstr "API-Schlüssel"
-#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:31
+#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
msgid "Your API key is valid."
msgstr "Ihr API-Schlüssel ist gültig."
@@ -703,7 +703,7 @@ msgstr ""
"maximaler Reduktion der Dateigröße zu riskieren."
#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
-#: ../inc/functions/admin-ui.php:659 ../inc/functions/i18n.php:58
+#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
msgid "Close"
msgstr "Schließen"
@@ -731,17 +731,17 @@ msgstr "Modus:"
#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
-#: ../inc/functions/i18n.php:59
+#: ../inc/functions/i18n.php:62
msgid "File Size:"
msgstr "Dateigröße:"
#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
-#: ../inc/functions/i18n.php:60
+#: ../inc/functions/i18n.php:63
msgid "Original Saving:"
msgstr "Optimiert um:"
-#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:77
+#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
msgid "Unoptimized"
msgstr "Nicht Optimiert"
@@ -757,7 +757,7 @@ msgstr "Filtere nach Status"
msgid "All images"
msgstr "Alle Bilder"
-#: ../inc/classes/class-attachment.php:266
+#: ../inc/classes/class-attachment.php:297
msgid ""
"This size isn't authorized to be optimized. Update your Imagify settings if "
"you want to optimize it."
@@ -817,228 +817,244 @@ msgstr "Erneut optimieren als %s"
msgid "%s can't be optimized"
msgstr "%s kann nicht optimiert werden."
-#: ../inc/functions/admin-ui.php:237
+#: ../inc/functions/admin-ui.php:240
msgid "What plan do I need?"
msgstr ""
-#: ../inc/functions/admin-ui.php:241
+#: ../inc/functions/admin-ui.php:244
msgid "You're new to Imagify?"
msgstr ""
-#: ../inc/functions/admin-ui.php:242
+#: ../inc/functions/admin-ui.php:245
msgid ""
"Let us help you by analyzing your existing images and determinate the best "
"plan for you"
msgstr ""
-#: ../inc/functions/admin-ui.php:277
+#: ../inc/functions/admin-ui.php:280
msgid "Choose Plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:278
+#: ../inc/functions/admin-ui.php:281
+#, fuzzy
msgid "Payment Info"
-msgstr ""
+msgstr "Weitere Informationen"
-#: ../inc/functions/admin-ui.php:283
+#: ../inc/functions/admin-ui.php:286
msgid "We analysed your images"
msgstr ""
-#: ../inc/functions/admin-ui.php:289
-#, php-format
+#: ../inc/functions/admin-ui.php:292
+#, fuzzy, php-format
msgid "You have %s images"
-msgstr ""
+msgstr "Du hast noch %s Guthaben"
-#: ../inc/functions/admin-ui.php:295
+#: ../inc/functions/admin-ui.php:298
#, php-format
msgid "You actually have %s of images in your library."
msgstr ""
-#: ../inc/functions/admin-ui.php:299
+#: ../inc/functions/admin-ui.php:302
#, php-format
msgid "You upload around %s of images per month."
msgstr ""
-#: ../inc/functions/admin-ui.php:306
+#: ../inc/functions/admin-ui.php:309
msgid "We recommend you this plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:311
+#: ../inc/functions/admin-ui.php:314
msgid "Subscribe a monthly plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:312
+#: ../inc/functions/admin-ui.php:315
msgid "Subscribe a yearly plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:316 ../inc/functions/admin-ui.php:452
-#: ../inc/functions/admin-ui.php:620
+#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
+#: ../inc/functions/admin-ui.php:623
+#, fuzzy
msgid "Monthly"
msgstr ""
+"Bedenke, dass jede ausgewählte Bildgröße dein monatliches Nutzungsvolumen "
+"bei Imagify beeinflusst."
-#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
-#: ../inc/functions/admin-ui.php:623
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
msgid "Yearly"
msgstr ""
-#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
-#: ../inc/functions/admin-ui.php:623
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
msgid "2 months free"
msgstr ""
-#: ../inc/functions/admin-ui.php:330 ../inc/functions/admin-ui.php:349
-#: ../inc/functions/admin-ui.php:465 ../inc/functions/admin-ui.php:475
+#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
+#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
+#, fuzzy
msgid "/month"
msgstr ""
+"Du hast dein Guthaben für diesen Monat aufgebraucht. %s "
+"werden dir am %s wieder zur Verfügung stehen."
-#: ../inc/functions/admin-ui.php:332 ../inc/functions/admin-ui.php:380
-#: ../inc/functions/admin-ui.php:467 ../inc/functions/admin-ui.php:518
+#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
+#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
#, php-format
msgid "approx: %s images"
msgstr ""
-#: ../inc/functions/admin-ui.php:353 ../inc/functions/admin-ui.php:481
+#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
#, php-format
msgid ""
"%s per
\n"
"additionnal Gb"
msgstr ""
-#: ../inc/functions/admin-ui.php:358 ../inc/functions/admin-ui.php:393
-#: ../inc/functions/admin-ui.php:577 ../inc/functions/admin-ui.php:598
+#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
+#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
msgid "Choose another plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:368
+#: ../inc/functions/admin-ui.php:371
msgid "Optimize the images you already have, buy a one-time plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:404
+#: ../inc/functions/admin-ui.php:407
msgid "Checkout"
msgstr ""
-#: ../inc/functions/admin-ui.php:408
+#: ../inc/functions/admin-ui.php:411
msgid ""
"Monthly plans comes with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: ../inc/functions/admin-ui.php:432
+#: ../inc/functions/admin-ui.php:435
msgid "Monthly Plans"
msgstr ""
-#: ../inc/functions/admin-ui.php:437
+#: ../inc/functions/admin-ui.php:440
msgid "One Time Plans"
msgstr ""
-#: ../inc/functions/admin-ui.php:447
+#: ../inc/functions/admin-ui.php:450
msgid ""
"Monthly plans come with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: ../inc/functions/admin-ui.php:479 ../inc/functions/admin-ui.php:526
+#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
+#, fuzzy
msgid "we recommend for you"
msgstr ""
+"Wähle diese Einstellung, wenn dir die perfekte Qualität deiner Bilder "
+"wichtig ist."
-#: ../inc/functions/admin-ui.php:487 ../inc/functions/admin-ui.php:530
+#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
msgid "Choose plan"
msgstr ""
-#: ../inc/functions/admin-ui.php:495
+#: ../inc/functions/admin-ui.php:498
+#, fuzzy
msgid "Need more?"
-msgstr ""
+msgstr "Weitere Informationen"
-#: ../inc/functions/admin-ui.php:496
+#: ../inc/functions/admin-ui.php:499
msgid "for special needs"
msgstr ""
-#: ../inc/functions/admin-ui.php:500
+#: ../inc/functions/admin-ui.php:503
+#, fuzzy
msgid "Contact Us"
msgstr ""
+"Ein unbekannter Fehler ist beim Sammeln der nicht optimierten Bilder "
+"aufgetreten. Versuche es noch einmal; falls der Fehler sich wiederholt, "
+"kontaktiere bitte den Imagify-Support."
-#: ../inc/functions/admin-ui.php:507
+#: ../inc/functions/admin-ui.php:510
msgid ""
"One time plans are useful if you have a lots of existing images which need "
"to be optimized. You can use it for bulk optimizing all your past images. "
"You will pay only once."
msgstr ""
-#: ../inc/functions/admin-ui.php:560
+#: ../inc/functions/admin-ui.php:563
+#, fuzzy
msgid "Your order"
-msgstr ""
+msgstr "Dein Abo:"
-#: ../inc/functions/admin-ui.php:565
+#: ../inc/functions/admin-ui.php:568
#, php-format
msgid "%scancel%sYou just removed %s"
msgstr ""
-#: ../inc/functions/admin-ui.php:573 ../inc/functions/admin-ui.php:594
+#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
msgid "Remove this item"
msgstr ""
-#: ../inc/functions/admin-ui.php:580
+#: ../inc/functions/admin-ui.php:583
#, php-format
msgid "%s per month"
msgstr ""
-#: ../inc/functions/admin-ui.php:601
+#: ../inc/functions/admin-ui.php:604
#, php-format
msgid "one time %s"
msgstr ""
-#: ../inc/functions/admin-ui.php:614
+#: ../inc/functions/admin-ui.php:617
#, php-format
msgid ""
"Switch to yearly subscription and
save %s "
"per year!"
msgstr ""
-#: ../inc/functions/admin-ui.php:615
+#: ../inc/functions/admin-ui.php:618
#, php-format
msgid ""
"Perfect!
You're saving %s per year!"
"strong>"
msgstr ""
-#: ../inc/functions/admin-ui.php:654
+#: ../inc/functions/admin-ui.php:657
msgid "Thank you for being awesome!"
msgstr ""
-#: ../inc/functions/admin-ui.php:665
+#: ../inc/functions/admin-ui.php:668
msgid "What do our user think about Imagify"
msgstr ""
-#: ../inc/functions/admin-ui.php:699
+#: ../inc/functions/admin-ui.php:702
msgid "Secure Credit Card Payment"
msgstr ""
-#: ../inc/functions/admin-ui.php:700
+#: ../inc/functions/admin-ui.php:703
msgid "This is secure 128-bits SSL encrypted payment"
msgstr ""
-#: ../inc/functions/i18n.php:19
+#: ../inc/functions/i18n.php:20
msgid "Let's get you started!"
msgstr "Los geht’s!"
-#: ../inc/functions/i18n.php:20
+#: ../inc/functions/i18n.php:21
msgid "Enter your email to get an API key:"
msgstr "Geben Sie Ihre E-Mail-Adresse ein, um einen API-Schlüssel zu erhalten:"
-#: ../inc/functions/i18n.php:21
+#: ../inc/functions/i18n.php:22
msgid "Sign Up"
msgstr "Konto anlegen"
-#: ../inc/functions/i18n.php:22
+#: ../inc/functions/i18n.php:23
msgid "You need to specify an email!"
msgstr "Sie müssen eine E-Mail-Adresse angeben."
-#: ../inc/functions/i18n.php:23 ../inc/functions/i18n.php:29
+#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
msgid "Congratulations!"
msgstr "Glückwunsch!"
-#: ../inc/functions/i18n.php:24
+#: ../inc/functions/i18n.php:25
msgid ""
"Your account has been succesfully created. Please check your mailbox, you "
"are going to receive an email with API key."
@@ -1046,23 +1062,27 @@ msgstr ""
"Ihr Konto ist jetzt angelegt. Überprüfen Sie Ihr E-Mail-Postfach, Sie "
"erhalten eine E-Mail mit Ihrem API-Schlüssel."
-#: ../inc/functions/i18n.php:25
+#: ../inc/functions/i18n.php:26
msgid "Connect to Imagify!"
msgstr "Verbindung zu Imagify herstellen"
-#: ../inc/functions/i18n.php:26
+#: ../inc/functions/i18n.php:27
msgid "Paste your API key below:"
msgstr "Fügen Sie Ihren API-Schlüssel hier ein:"
-#: ../inc/functions/i18n.php:27
+#: ../inc/functions/i18n.php:28
msgid "Connect me"
msgstr "Verbinden"
-#: ../inc/functions/i18n.php:28
+#: ../inc/functions/i18n.php:29
msgid "Check in progress..."
msgstr "API-Schlüssel wird geprüft…"
#: ../inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr "Sie müssen einen API-Schlüssel angeben!"
+
+#: ../inc/functions/i18n.php:32
msgid ""
"Your API key is valid. You can now configure the Imagify settings to "
"optimize your images."
@@ -1070,15 +1090,15 @@ msgstr ""
"Ihr API-Schlüssel ist gültig. Sie können jetzt Ihre Einstellungen für die "
"Bildoptimierung mit Imagify wählen."
-#: ../inc/functions/i18n.php:32
+#: ../inc/functions/i18n.php:34
msgid "Cancel"
msgstr ""
-#: ../inc/functions/i18n.php:38
+#: ../inc/functions/i18n.php:41
msgid "Don't Need a Parachute?"
msgstr "Sie brauchen keinen Fallschirm?"
-#: ../inc/functions/i18n.php:39
+#: ../inc/functions/i18n.php:42
msgid ""
"If you keep this option deactivated, you won't be able to re-optimize your "
"images to another compression level and restore your original images in case "
@@ -1088,19 +1108,19 @@ msgstr ""
"erneut mit einem anderen Level komprimieren, oder deren Originale "
"wiederherstellen können."
-#: ../inc/functions/i18n.php:55
+#: ../inc/functions/i18n.php:58
msgid "Original Image"
msgstr "Originalbild"
-#: ../inc/functions/i18n.php:56
+#: ../inc/functions/i18n.php:59
msgid "Optimized Image"
msgstr "Optimiertes Bild"
-#: ../inc/functions/i18n.php:70
+#: ../inc/functions/i18n.php:73
msgid "Please wait..."
msgstr "Einen Moment bitte …"
-#: ../inc/functions/i18n.php:71
+#: ../inc/functions/i18n.php:74
msgid ""
"We are trying to get your unoptimized images, it may take time depending on "
"the number of images."
@@ -1108,11 +1128,11 @@ msgstr ""
"Nicht optimierte Bilder werden gesammelt, dies kann einen Moment dauern "
"…"
-#: ../inc/functions/i18n.php:73
+#: ../inc/functions/i18n.php:76
msgid "Oops, There is something wrong!"
msgstr "Hm, etwas ist schief gelaufen."
-#: ../inc/functions/i18n.php:74
+#: ../inc/functions/i18n.php:77
msgid ""
"An unknow error occurred when we tried to get all your unoptimized images. "
"Try again and if the issue still persist, please contact us!"
@@ -1121,19 +1141,19 @@ msgstr ""
"aufgetreten. Versuchen Sie es noch einmal; falls der Fehler sich wiederholt, "
"kontaktieren Sie bitte den Imagify-Support."
-#: ../inc/functions/i18n.php:78
+#: ../inc/functions/i18n.php:82
msgid "Error"
msgstr "Fehler"
-#: ../inc/functions/i18n.php:81
+#: ../inc/functions/i18n.php:85
msgid "Hold on!"
msgstr "Moment, bitte!"
-#: ../inc/functions/i18n.php:82
+#: ../inc/functions/i18n.php:86
msgid "All your images have been optimized by Imagify. Congratulations!"
msgstr "Imagify hat alle Ihre Bilder optimiert. Glückwunsch!"
-#: ../inc/functions/i18n.php:84
+#: ../inc/functions/i18n.php:88
#, php-format
msgid ""
"Discover @imagify, the new compression tool to optimize your images for "
@@ -1142,17 +1162,17 @@ msgstr ""
"Freies #WordPress #Plugin zur Bildoptimierung für bessere #Performance: "
"Bilder mit @imagify komprimiert, %1$s von %2$s gespart!"
-#: ../inc/functions/i18n.php:88
+#: ../inc/functions/i18n.php:92
msgid "Imagify is still processing. Are you sure you want to leave this page?"
msgstr ""
"Imagify arbeitet noch. Möchten Sie diese Seite wirklich verlassen und den "
"Prozess abbrechen?"
-#: ../inc/functions/i18n.php:97
+#: ../inc/functions/i18n.php:101
msgid "F j, Y"
msgstr "j. F Y"
-#: ../inc/functions/process.php:41
+#: ../inc/functions/process.php:40
msgid ""
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
"couple of minutes."
@@ -1160,41 +1180,29 @@ msgstr ""
"Unsere Server sind leider im Augenblick nicht erreichbar. Bitte versuchen "
"Sie es in ein paar Minuten noch einmal."
-#: ../inc/functions/process.php:47
+#: ../inc/functions/process.php:46
msgid "External HTTP requests are blocked"
msgstr "Externe HTTP-Anfragen werden blockiert"
-#: ../inc/functions/process.php:53
+#: ../inc/functions/process.php:52
msgid "File path is empty"
msgstr "Datei-Pfad ist leer"
-#: ../inc/functions/process.php:59
+#: ../inc/functions/process.php:58
#, php-format
msgid "Could not find %s"
msgstr "%s wurde nicht gefunden"
-#: ../inc/functions/process.php:64
+#: ../inc/functions/process.php:63
#, php-format
msgid "%s is not writable"
msgstr "%s ist nicht beschreibbar."
-#: ../inc/functions/process.php:73
+#: ../inc/functions/process.php:72
#, php-format
msgid "Skipped (%s), image not found."
msgstr "Übersprungen (%s), Bild nicht gefunden."
-#: ../assets/js/sweetalert.min.js:1
-msgid "./utils"
-msgstr ""
-
-#: ../assets/js/sweetalert.min.js:1
-msgid "./handle-swal-dom"
-msgstr ""
-
-#: ../assets/js/sweetalert.min.js:1
-msgid "./handle-dom"
-msgstr ""
-
#~ msgid "https://wordpress.org/plugins/imagify"
#~ msgstr "https://de.wordpress.org/plugins/imagify"
diff --git a/languages/imagify-es_ES.mo b/languages/imagify-es_ES.mo
index 7c386f3aa..a16cc728f 100755
Binary files a/languages/imagify-es_ES.mo and b/languages/imagify-es_ES.mo differ
diff --git a/languages/imagify-es_ES.po b/languages/imagify-es_ES.po
index 5a7e313af..fedb72c48 100755
--- a/languages/imagify-es_ES.po
+++ b/languages/imagify-es_ES.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: Imagify\n"
-"POT-Creation-Date: 2016-04-19 16:20+0200\n"
-"PO-Revision-Date: 2016-04-19 16:27+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2016-09-23 10:03-0500\n"
+"PO-Revision-Date: 2016-09-23 11:02-0500\n"
+"Last-Translator: Rémy Perona \n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.8.6\n"
+"X-Generator: Poedit 1.6.4\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-WPHeader: imagify.php\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -17,18 +17,18 @@ msgstr ""
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
-"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
+"X-Poedit-SearchPath-0: .\n"
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
-#: inc/functions/admin-ui.php:212 inc/functions/i18n.php:46
-#: inc/functions/i18n.php:61
+#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
+#: inc/functions/i18n.php:64
msgid "Optimize"
msgstr "Optimizar"
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
-#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:47
+#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
msgid "Restore Original"
msgstr "Recuperar tamaño original"
@@ -41,15 +41,15 @@ msgstr "Optimización masiva"
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
-#: inc/functions/admin-ui.php:202 inc/functions/admin-ui.php:212
+#: inc/functions/admin-ui.php:205 inc/functions/admin-ui.php:215
msgid "Optimizing..."
msgstr "Optimizando…"
-#: inc/admin/ajax.php:503
+#: inc/admin/ajax.php:507
msgid "Oops, It's almost over!"
msgstr "¡Ya casi está!"
-#: inc/admin/ajax.php:504
+#: inc/admin/ajax.php:508
#, php-format
msgid ""
"You have almost used all your credit.%sDon't forget to upgrade your "
@@ -58,17 +58,17 @@ msgstr ""
"Ya has utilizado casi todo tu crédito.%sNo olvides ampliar tu suscripción "
"para poder seguir optimizando tus imágenes."
-#: inc/admin/ajax.php:505 inc/admin/ui/bulk.php:23
+#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
msgid "View My Subscription"
msgstr "Ver mi suscripción"
-#: inc/admin/ajax.php:513 inc/admin/ui/notices.php:251
-#: inc/functions/i18n.php:80
+#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
+#: inc/functions/i18n.php:84
msgid "Oops, It's Over!"
msgstr "¡Ya está!"
-#: inc/admin/ajax.php:514 inc/admin/ui/notices.php:253
-#: inc/functions/i18n.php:97
+#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
"You have consumed all your credit for this month. You will have %s "
@@ -77,32 +77,31 @@ msgstr ""
"Has consumido todo tu crédito para este mes. Volverás a tener %s el "
"%s."
-#: inc/admin/ajax.php:515
+#: inc/admin/ajax.php:519
msgid "Upgrade My Subscription"
msgstr "Actualizar mi suscripción"
-#: inc/admin/ajax.php:534 inc/admin/ui/bulk.php:17
+#: inc/admin/ajax.php:538 inc/admin/ui/bulk.php:17
msgid "Account status"
msgstr "Estado de mi cuenta"
-#: inc/admin/ajax.php:535 inc/admin/ui/bulk.php:18
+#: inc/admin/ajax.php:539 inc/admin/ui/bulk.php:18
msgid "Your subscription:"
msgstr "Tu suscripción:"
-#: inc/admin/ajax.php:543 inc/admin/ui/bulk.php:48
+#: inc/admin/ajax.php:547 inc/admin/ui/bulk.php:48
#, php-format
msgid "You have %s space credit left"
msgstr "Te queda un saldo de %s"
-#: inc/admin/ajax.php:555
+#: inc/admin/ajax.php:559
msgid "View my subscription"
msgstr "Ver mi suscripción"
-#: inc/admin/media.php:63 inc/functions/i18n.php:57
+#: inc/admin/media.php:63 inc/functions/i18n.php:60
msgid "Compare Original VS Optimized"
msgstr "Compara original VS optimizada"
-#. Plugin Name of the plugin/theme
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
#: inc/admin/upload.php:12
msgid "Imagify"
@@ -116,11 +115,11 @@ msgstr "Clave API no válida"
msgid "Check your Settings"
msgstr "Comprueba tu configuración"
-#: inc/admin/options.php:120
+#: inc/admin/options.php:119
msgid "Cheatin’ uh?"
msgstr "Haciendo trampa ¿Uh?"
-#: inc/admin/options.php:128
+#: inc/admin/options.php:127
msgid "ERROR: options page not found."
msgstr "ERROR: página de opciones no encontrada."
@@ -247,12 +246,9 @@ msgstr "Imagíficalo todo"
#: inc/admin/ui/bulk.php:220
#, php-format
-msgid ""
-"All images greater than %s will be optimized when using a paying monthly "
-"plan."
+msgid "All images greater than %s will be optimized when using a paid plan."
msgstr ""
-"Todas las imágenes de tamaño superior a %s serán optimizadas utilizando el "
-"plan de pago mensual."
+"Todas las imágenes superiores a %s se pueden optimizar usando un plan de pago"
#: inc/admin/ui/bulk.php:239
msgid "Well done!"
@@ -284,7 +280,7 @@ msgstr "Estado"
msgid "Original"
msgstr "Original"
-#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:76
+#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
msgid "Optimized"
msgstr "Optimizado"
@@ -321,22 +317,22 @@ msgstr "Ganancia:"
msgid "%sStart the bulk optimization%s"
msgstr "%sEmpieza la optimización masiva%s"
-#: inc/admin/ui/notices.php:23
+#: inc/admin/ui/notices.php:24
msgid "Welcome to Imagify, the best way to easily optimize your images!"
msgstr ""
"¡Bienvenido a Imagify, la mejor manera de optimizar fácilmente tus imágenes!"
-#: inc/admin/ui/notices.php:25 inc/admin/ui/notices.php:90
-#: inc/admin/ui/notices.php:181 inc/admin/ui/notices.php:217
-#: inc/admin/ui/notices.php:256 inc/admin/ui/notices.php:361
+#: inc/admin/ui/notices.php:26 inc/admin/ui/notices.php:92
+#: inc/admin/ui/notices.php:186 inc/admin/ui/notices.php:223
+#: inc/admin/ui/notices.php:263 inc/admin/ui/notices.php:370
msgid "Dismiss this notice"
msgstr "Descarta este aviso"
-#: inc/admin/ui/notices.php:32
+#: inc/admin/ui/notices.php:33
msgid "Create an Account"
msgstr "Crea una cuenta"
-#: inc/admin/ui/notices.php:33
+#: inc/admin/ui/notices.php:34
msgid ""
"Don't have an Imagify account yet? Optimize your images by creating an "
"account in a few seconds!"
@@ -344,15 +340,15 @@ msgstr ""
"¿Todavía no tienes una cuenta Imagify? Optimiza tus imágenes creando una "
"cuenta en unos segundos!"
-#: inc/admin/ui/notices.php:36
+#: inc/admin/ui/notices.php:37
msgid "Sign up, It's FREE!"
msgstr "Regístrate, ¡es GRATIS!"
-#: inc/admin/ui/notices.php:42
+#: inc/admin/ui/notices.php:43
msgid "Enter your API Key"
msgstr "Ingresa tu clave API"
-#: inc/admin/ui/notices.php:43
+#: inc/admin/ui/notices.php:44
#, php-format
msgid ""
"Save your API Key you have received by email or you can get it on your "
@@ -361,29 +357,30 @@ msgstr ""
"Guarda la clave API que has recibido por email, o consigue una en tu "
"%spágina de cuenta Imagify%s."
-#: inc/admin/ui/notices.php:46
+#: inc/admin/ui/notices.php:47
msgid "I have my API key"
msgstr "Tengo mi clave API"
-#: inc/admin/ui/notices.php:52
+#: inc/admin/ui/notices.php:53
msgid "Configure it"
msgstr "Configuralo"
-#: inc/admin/ui/notices.php:53
+#: inc/admin/ui/notices.php:54
msgid ""
"It’s almost done! You have just to configure your optimization settings."
msgstr ""
"¡Casi está listo! Sólo te queda configurar tus ajustes de optimización."
-#: inc/admin/ui/notices.php:54
+#: inc/admin/ui/notices.php:55
msgid "Go to Settings"
msgstr "Ve a la configuración"
-#: inc/admin/ui/notices.php:85 inc/admin/ui/options.php:97
+#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
+#: inc/functions/i18n.php:78
msgid "Your API key isn't valid!"
msgstr "¡Tu clave API no es válida!"
-#: inc/admin/ui/notices.php:88
+#: inc/admin/ui/notices.php:90
#, php-format
msgid ""
"Go to your Imagify account page to get your API Key and specify it on "
@@ -394,7 +391,7 @@ msgstr ""
"en %1$stu configuración%3$s; si todavía no la tienes, %2$screa ahora una "
"cuenta gratuita%3$s."
-#: inc/admin/ui/notices.php:138
+#: inc/admin/ui/notices.php:142
msgid ""
"The following plugins are not compatible with this plugin and may cause "
"unexpected results:"
@@ -402,15 +399,15 @@ msgstr ""
"Los plugin siguientes no son compatibles con este plugin y pueden causar "
"resultados inesperados:"
-#: inc/admin/ui/notices.php:144
+#: inc/admin/ui/notices.php:148
msgid "Deactivate"
msgstr "Desactiva"
-#: inc/admin/ui/notices.php:173
+#: inc/admin/ui/notices.php:178
msgid "The external HTTP requests are blocked!"
msgstr "¡Las solicitudes HTTP externas están bloqueadas!"
-#: inc/admin/ui/notices.php:174
+#: inc/admin/ui/notices.php:179
msgid ""
"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
"config.php
to block all external HTTP requests."
@@ -418,7 +415,7 @@ msgstr ""
"Has definido la constante WP_HTTP_BLOCK_EXTERNAL
en wp-"
"config.php
para bloquear las solicitudes HTTP externas."
-#: inc/admin/ui/notices.php:176
+#: inc/admin/ui/notices.php:181
msgid ""
"To optimize your images, you have to put the following code in your wp-"
"config.php
file so that it works correctly."
@@ -426,24 +423,24 @@ msgstr ""
"Para optimizar tus imágenes, tienes que poner el siguiente código en tu "
"archivo wp-config.php
para que funcione correctamente."
-#: inc/admin/ui/notices.php:177
+#: inc/admin/ui/notices.php:182
msgid "Click on the field and press Ctrl-A to select all."
msgstr "Haz clic en el campo y pulse Ctrl-A para seleccionar todo."
-#: inc/admin/ui/notices.php:213
+#: inc/admin/ui/notices.php:219
msgid "You're missing out!"
msgstr "¡Te lo estás perdiendo!"
-#: inc/admin/ui/notices.php:214
+#: inc/admin/ui/notices.php:220
msgid "Use the List view to optimize images with Imagify."
msgstr "Utiliza la vista de lista para optimizar imágenes con Imagify."
-#: inc/admin/ui/notices.php:215
+#: inc/admin/ui/notices.php:221
msgid "Switch to the List View"
msgstr "Cambia a la vista de lista"
-#: inc/admin/ui/notices.php:253 inc/functions/i18n.php:94
-#: inc/functions/i18n.php:97
+#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
"To continue to optimize your images, log in to your Imagify account to %sbuy "
@@ -452,20 +449,20 @@ msgstr ""
"Para seguir optimizando tus imágenes, inicia sesión en tu cuenta Imagify "
"para %scomprar un paquete o subscribir un plan %s."
-#: inc/admin/ui/notices.php:306 inc/admin/ui/options.php:28
+#: inc/admin/ui/notices.php:314 inc/admin/ui/options.php:28
msgid "Discover the best caching plugin to speed up your website."
msgstr "Descubre el mejor plugin de caché para acelerar tu sitio Web."
-#: inc/admin/ui/notices.php:309 inc/admin/ui/options.php:36
+#: inc/admin/ui/notices.php:317 inc/admin/ui/options.php:36
#, php-format
msgid "%sGet %s off%s with this coupon code:%s"
msgstr "Descuento del %s%s%s con este código de coupon:%s"
-#: inc/admin/ui/notices.php:318 inc/admin/ui/options.php:41
+#: inc/admin/ui/notices.php:326 inc/admin/ui/options.php:41
msgid "Get WP Rocket now"
msgstr "Obten WP Rocket, ¡ya!"
-#: inc/admin/ui/notices.php:354
+#: inc/admin/ui/notices.php:363
#, php-format
msgid ""
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
@@ -474,7 +471,7 @@ msgstr ""
"%1$s¡En hora buena!%2$s Has optimizado %1$s%3$d imágenes%2$s y ahora tu "
"sitio web es más rápido."
-#: inc/admin/ui/notices.php:356 inc/admin/ui/options.php:59
+#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
#, php-format
msgid ""
"%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?"
msgid "API Key"
msgstr "Clave API"
-#: inc/admin/ui/options.php:91 inc/functions/i18n.php:31
+#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
msgid "Your API key is valid."
msgstr "Tu clave API es válida."
@@ -698,7 +695,7 @@ msgstr ""
"aceptas perder algo de calidad en las imágenes."
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
-#: inc/functions/admin-ui.php:659 inc/functions/i18n.php:58
+#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
msgid "Close"
msgstr "Cierra"
@@ -726,17 +723,17 @@ msgstr "Nivel:"
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
-#: inc/functions/i18n.php:59
+#: inc/functions/i18n.php:62
msgid "File Size:"
msgstr "Tamaño del archivo:"
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
-#: inc/functions/i18n.php:60
+#: inc/functions/i18n.php:63
msgid "Original Saving:"
msgstr "Ahorro inicial:"
-#: inc/admin/upload.php:42 inc/functions/i18n.php:77
+#: inc/admin/upload.php:42 inc/functions/i18n.php:81
msgid "Unoptimized"
msgstr "No optimizado"
@@ -752,7 +749,7 @@ msgstr "Filtrar por estado"
msgid "All images"
msgstr "Todas las imágenes"
-#: inc/classes/class-attachment.php:266
+#: inc/classes/class-attachment.php:297
msgid ""
"This size isn't authorized to be optimized. Update your Imagify settings if "
"you want to optimize it."
@@ -812,228 +809,228 @@ msgstr "Re-optimiza a %s"
msgid "%s can't be optimized"
msgstr "%s no puede ser optimizado"
-#: inc/functions/admin-ui.php:237
+#: inc/functions/admin-ui.php:240
msgid "What plan do I need?"
msgstr ""
-#: inc/functions/admin-ui.php:241
+#: inc/functions/admin-ui.php:244
msgid "You're new to Imagify?"
msgstr ""
-#: inc/functions/admin-ui.php:242
+#: inc/functions/admin-ui.php:245
msgid ""
"Let us help you by analyzing your existing images and determinate the best "
"plan for you"
msgstr ""
-#: inc/functions/admin-ui.php:277
+#: inc/functions/admin-ui.php:280
msgid "Choose Plan"
msgstr ""
-#: inc/functions/admin-ui.php:278
+#: inc/functions/admin-ui.php:281
msgid "Payment Info"
msgstr ""
-#: inc/functions/admin-ui.php:283
+#: inc/functions/admin-ui.php:286
msgid "We analysed your images"
msgstr ""
-#: inc/functions/admin-ui.php:289
+#: inc/functions/admin-ui.php:292
#, php-format
msgid "You have %s images"
msgstr ""
-#: inc/functions/admin-ui.php:295
+#: inc/functions/admin-ui.php:298
#, php-format
msgid "You actually have %s of images in your library."
msgstr ""
-#: inc/functions/admin-ui.php:299
+#: inc/functions/admin-ui.php:302
#, php-format
msgid "You upload around %s of images per month."
msgstr ""
-#: inc/functions/admin-ui.php:306
+#: inc/functions/admin-ui.php:309
msgid "We recommend you this plan"
msgstr ""
-#: inc/functions/admin-ui.php:311
+#: inc/functions/admin-ui.php:314
msgid "Subscribe a monthly plan"
msgstr ""
-#: inc/functions/admin-ui.php:312
+#: inc/functions/admin-ui.php:315
msgid "Subscribe a yearly plan"
msgstr ""
-#: inc/functions/admin-ui.php:316 inc/functions/admin-ui.php:452
-#: inc/functions/admin-ui.php:620
+#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
+#: inc/functions/admin-ui.php:623
msgid "Monthly"
msgstr ""
-#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
-#: inc/functions/admin-ui.php:623
+#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
+#: inc/functions/admin-ui.php:626
msgid "Yearly"
msgstr ""
-#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
-#: inc/functions/admin-ui.php:623
+#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
+#: inc/functions/admin-ui.php:626
msgid "2 months free"
msgstr ""
-#: inc/functions/admin-ui.php:330 inc/functions/admin-ui.php:349
-#: inc/functions/admin-ui.php:465 inc/functions/admin-ui.php:475
+#: inc/functions/admin-ui.php:333 inc/functions/admin-ui.php:352
+#: inc/functions/admin-ui.php:468 inc/functions/admin-ui.php:478
msgid "/month"
msgstr ""
-#: inc/functions/admin-ui.php:332 inc/functions/admin-ui.php:380
-#: inc/functions/admin-ui.php:467 inc/functions/admin-ui.php:518
+#: inc/functions/admin-ui.php:335 inc/functions/admin-ui.php:383
+#: inc/functions/admin-ui.php:470 inc/functions/admin-ui.php:521
#, php-format
msgid "approx: %s images"
msgstr ""
-#: inc/functions/admin-ui.php:353 inc/functions/admin-ui.php:481
+#: inc/functions/admin-ui.php:356 inc/functions/admin-ui.php:484
#, php-format
msgid ""
"%s per
\n"
"additionnal Gb"
msgstr ""
-#: inc/functions/admin-ui.php:358 inc/functions/admin-ui.php:393
-#: inc/functions/admin-ui.php:577 inc/functions/admin-ui.php:598
+#: inc/functions/admin-ui.php:361 inc/functions/admin-ui.php:396
+#: inc/functions/admin-ui.php:580 inc/functions/admin-ui.php:601
msgid "Choose another plan"
msgstr ""
-#: inc/functions/admin-ui.php:368
+#: inc/functions/admin-ui.php:371
msgid "Optimize the images you already have, buy a one-time plan"
msgstr ""
-#: inc/functions/admin-ui.php:404
+#: inc/functions/admin-ui.php:407
msgid "Checkout"
msgstr ""
-#: inc/functions/admin-ui.php:408
+#: inc/functions/admin-ui.php:411
msgid ""
"Monthly plans comes with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: inc/functions/admin-ui.php:432
+#: inc/functions/admin-ui.php:435
msgid "Monthly Plans"
msgstr ""
-#: inc/functions/admin-ui.php:437
+#: inc/functions/admin-ui.php:440
msgid "One Time Plans"
msgstr ""
-#: inc/functions/admin-ui.php:447
+#: inc/functions/admin-ui.php:450
msgid ""
"Monthly plans come with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: inc/functions/admin-ui.php:479 inc/functions/admin-ui.php:526
+#: inc/functions/admin-ui.php:482 inc/functions/admin-ui.php:529
msgid "we recommend for you"
msgstr ""
-#: inc/functions/admin-ui.php:487 inc/functions/admin-ui.php:530
+#: inc/functions/admin-ui.php:490 inc/functions/admin-ui.php:533
msgid "Choose plan"
msgstr ""
-#: inc/functions/admin-ui.php:495
+#: inc/functions/admin-ui.php:498
msgid "Need more?"
msgstr ""
-#: inc/functions/admin-ui.php:496
+#: inc/functions/admin-ui.php:499
msgid "for special needs"
msgstr ""
-#: inc/functions/admin-ui.php:500
+#: inc/functions/admin-ui.php:503
msgid "Contact Us"
msgstr ""
-#: inc/functions/admin-ui.php:507
+#: inc/functions/admin-ui.php:510
msgid ""
"One time plans are useful if you have a lots of existing images which need "
"to be optimized. You can use it for bulk optimizing all your past images. "
"You will pay only once."
msgstr ""
-#: inc/functions/admin-ui.php:560
+#: inc/functions/admin-ui.php:563
msgid "Your order"
msgstr ""
-#: inc/functions/admin-ui.php:565
+#: inc/functions/admin-ui.php:568
#, php-format
msgid "%scancel%sYou just removed %s"
msgstr ""
-#: inc/functions/admin-ui.php:573 inc/functions/admin-ui.php:594
+#: inc/functions/admin-ui.php:576 inc/functions/admin-ui.php:597
msgid "Remove this item"
msgstr ""
-#: inc/functions/admin-ui.php:580
+#: inc/functions/admin-ui.php:583
#, php-format
msgid "%s per month"
msgstr ""
-#: inc/functions/admin-ui.php:601
+#: inc/functions/admin-ui.php:604
#, php-format
msgid "one time %s"
msgstr ""
-#: inc/functions/admin-ui.php:614
+#: inc/functions/admin-ui.php:617
#, php-format
msgid ""
"Switch to yearly subscription and
save %s "
"per year!"
msgstr ""
-#: inc/functions/admin-ui.php:615
+#: inc/functions/admin-ui.php:618
#, php-format
msgid ""
"Perfect!
You're saving %s per year!"
"strong>"
msgstr ""
-#: inc/functions/admin-ui.php:654
+#: inc/functions/admin-ui.php:657
msgid "Thank you for being awesome!"
msgstr ""
-#: inc/functions/admin-ui.php:665
+#: inc/functions/admin-ui.php:668
msgid "What do our user think about Imagify"
msgstr ""
-#: inc/functions/admin-ui.php:699
+#: inc/functions/admin-ui.php:702
msgid "Secure Credit Card Payment"
msgstr ""
-#: inc/functions/admin-ui.php:700
+#: inc/functions/admin-ui.php:703
msgid "This is secure 128-bits SSL encrypted payment"
msgstr ""
-#: inc/functions/i18n.php:19
+#: inc/functions/i18n.php:20
msgid "Let's get you started!"
msgstr "¡Vamos a comenzar!"
-#: inc/functions/i18n.php:20
+#: inc/functions/i18n.php:21
msgid "Enter your email to get an API key:"
msgstr "Ingresa tu email para obtener un clave API:"
-#: inc/functions/i18n.php:21
+#: inc/functions/i18n.php:22
msgid "Sign Up"
msgstr "Registrate"
-#: inc/functions/i18n.php:22
+#: inc/functions/i18n.php:23
msgid "You need to specify an email!"
msgstr "¡Es necesario especificar una dirección email!"
-#: inc/functions/i18n.php:23 inc/functions/i18n.php:29
+#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
msgid "Congratulations!"
msgstr "¡Enhorabuena!"
-#: inc/functions/i18n.php:24
+#: inc/functions/i18n.php:25
msgid ""
"Your account has been succesfully created. Please check your mailbox, you "
"are going to receive an email with API key."
@@ -1041,23 +1038,27 @@ msgstr ""
"Tu cuenta ha sido creada con éxito. Por favor, revisa tu buzón de correo, "
"recibirás un email con la clave API."
-#: inc/functions/i18n.php:25
+#: inc/functions/i18n.php:26
msgid "Connect to Imagify!"
msgstr "¡Conéctate a Imagify!"
-#: inc/functions/i18n.php:26
+#: inc/functions/i18n.php:27
msgid "Paste your API key below:"
msgstr "Pega aquí abajo tu clave API:"
-#: inc/functions/i18n.php:27
+#: inc/functions/i18n.php:28
msgid "Connect me"
msgstr "Conéctame"
-#: inc/functions/i18n.php:28
+#: inc/functions/i18n.php:29
msgid "Check in progress..."
msgstr "Control en curso…"
#: inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr "¡Es necesario especificar una clave api!"
+
+#: inc/functions/i18n.php:32
msgid ""
"Your API key is valid. You can now configure the Imagify settings to "
"optimize your images."
@@ -1065,15 +1066,15 @@ msgstr ""
"Tu clave API es válida. Ahora puedes configurar los parámetros de Imagify "
"para optimizar tus imágenes."
-#: inc/functions/i18n.php:32
+#: inc/functions/i18n.php:34
msgid "Cancel"
msgstr ""
-#: inc/functions/i18n.php:38
+#: inc/functions/i18n.php:41
msgid "Don't Need a Parachute?"
msgstr "¿No necesitas un paracaídas?"
-#: inc/functions/i18n.php:39
+#: inc/functions/i18n.php:42
msgid ""
"If you keep this option deactivated, you won't be able to re-optimize your "
"images to another compression level and restore your original images in case "
@@ -1083,19 +1084,19 @@ msgstr ""
"otro nivel de compresión ni restablecer la imagen original en caso de "
"necesidad."
-#: inc/functions/i18n.php:55
+#: inc/functions/i18n.php:58
msgid "Original Image"
msgstr "Imagen original"
-#: inc/functions/i18n.php:56
+#: inc/functions/i18n.php:59
msgid "Optimized Image"
msgstr "Imagen optimizada"
-#: inc/functions/i18n.php:70
+#: inc/functions/i18n.php:73
msgid "Please wait..."
msgstr "Espera, por favor…"
-#: inc/functions/i18n.php:71
+#: inc/functions/i18n.php:74
msgid ""
"We are trying to get your unoptimized images, it may take time depending on "
"the number of images."
@@ -1103,11 +1104,11 @@ msgstr ""
"Estamos tratando de obtener tus imágenes no optimizadas: esto puede tomar "
"tiempo, dependiendo del número de imágenes."
-#: inc/functions/i18n.php:73
+#: inc/functions/i18n.php:76
msgid "Oops, There is something wrong!"
msgstr "Ups, algo no ha ido bien!"
-#: inc/functions/i18n.php:74
+#: inc/functions/i18n.php:77
msgid ""
"An unknow error occurred when we tried to get all your unoptimized images. "
"Try again and if the issue still persist, please contact us!"
@@ -1116,19 +1117,19 @@ msgstr ""
"imágenes no optimizadas. Inténtalo otra vez y, si el problema persiste, "
"contáctanos por favor!"
-#: inc/functions/i18n.php:78
+#: inc/functions/i18n.php:82
msgid "Error"
msgstr "Error"
-#: inc/functions/i18n.php:81
+#: inc/functions/i18n.php:85
msgid "Hold on!"
msgstr "¡Espera!"
-#: inc/functions/i18n.php:82
+#: inc/functions/i18n.php:86
msgid "All your images have been optimized by Imagify. Congratulations!"
msgstr "Todas tus imágenes han sido optimizadas por Imagify. ¡Enhorabuena!"
-#: inc/functions/i18n.php:84
+#: inc/functions/i18n.php:88
#, php-format
msgid ""
"Discover @imagify, the new compression tool to optimize your images for "
@@ -1137,15 +1138,15 @@ msgstr ""
"Descubre @imagify, la nueva herramienta de compresión para optimizar tus "
"imágenes gratuitamente. Me ha ahorrado %1$s de %2$s!"
-#: inc/functions/i18n.php:88
+#: inc/functions/i18n.php:92
msgid "Imagify is still processing. Are you sure you want to leave this page?"
msgstr "Imagify sigue procesando. Estás seguro que quieres dejar la página?"
-#: inc/functions/i18n.php:97
+#: inc/functions/i18n.php:101
msgid "F j, Y"
msgstr "F j, Y"
-#: inc/functions/process.php:41
+#: inc/functions/process.php:40
msgid ""
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
"couple of minutes."
@@ -1153,48 +1154,29 @@ msgstr ""
"Lo sentimos, nuestros servidores están temporalmente inaccesibles. Por "
"favor, inténtalo de nuevo en un par de minutos."
-#: inc/functions/process.php:47
+#: inc/functions/process.php:46
msgid "External HTTP requests are blocked"
msgstr "Las peticiones HTTP externas están bloqueadas"
-#: inc/functions/process.php:53
+#: inc/functions/process.php:52
msgid "File path is empty"
msgstr "La ruta del archivo está vacía"
-#: inc/functions/process.php:59
+#: inc/functions/process.php:58
#, php-format
msgid "Could not find %s"
msgstr "No se pudo encontrar %s"
-#: inc/functions/process.php:64
+#: inc/functions/process.php:63
#, php-format
msgid "%s is not writable"
msgstr "%s no tiene permisos de escritura"
-#: inc/functions/process.php:73
+#: inc/functions/process.php:72
#, php-format
msgid "Skipped (%s), image not found."
msgstr "Omitido (%s), imagen no encontrada."
-#. Plugin URI of the plugin/theme
-msgid "https://wordpress.org/plugins/imagify/"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"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."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "WP Media"
-msgstr ""
-
-#. Author URI of the plugin/theme
-msgid "http://wp-media.me"
-msgstr ""
-
#~ msgid "Your default setting:"
#~ msgstr "Tu configuración por defecto:"
diff --git a/languages/imagify-fr_FR.mo b/languages/imagify-fr_FR.mo
index 9a203e11b..582764bd0 100755
Binary files a/languages/imagify-fr_FR.mo and b/languages/imagify-fr_FR.mo differ
diff --git a/languages/imagify-fr_FR.po b/languages/imagify-fr_FR.po
index a4996b45f..d8aaf0f50 100644
--- a/languages/imagify-fr_FR.po
+++ b/languages/imagify-fr_FR.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: Imagify\n"
-"POT-Creation-Date: 2016-06-14 18:20+0200\n"
-"PO-Revision-Date: 2016-06-14 18:40+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2016-09-23 11:27-0500\n"
+"PO-Revision-Date: 2016-09-23 14:54-0500\n"
+"Last-Translator: Rémy Perona \n"
"Language-Team: \n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.8.6\n"
+"X-Generator: Poedit 1.6.4\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-WPHeader: imagify.php\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -17,22 +17,24 @@ msgstr ""
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
-"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
+"X-Poedit-SearchPath-0: .\n"
-#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20 inc/admin/ajax.php:123
-#: inc/admin/meta-boxes.php:34 inc/functions/admin-ui.php:215
-#: inc/functions/i18n.php:48 inc/functions/i18n.php:63
+#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
+#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
+#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
+#: inc/functions/i18n.php:64
msgid "Optimize"
msgstr "Optimiser"
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
-#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:49
+#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
msgid "Restore Original"
msgstr "Restaurer l’original"
#: inc/3rd-party/nextgen-gallery/inc/admin/menu.php:16 inc/admin/menu.php:24
-#: inc/admin/plugins.php:13 inc/admin/ui/bulk.php:81 inc/common/admin-bar.php:39
+#: inc/admin/plugins.php:13 inc/admin/ui/bulk.php:81
+#: inc/common/admin-bar.php:39
msgid "Bulk Optimization"
msgstr "Optimisation en masse"
@@ -53,18 +55,20 @@ msgid ""
"You have almost used all your credit.%sDon't forget to upgrade your "
"subscription to continue optimizing your images."
msgstr ""
-"Vous avez bientôt utilisé tout votre crédit.%sN’oubliez pas de mettre à niveau "
-"votre abonnement pour continuer à optimiser vos images."
+"Vous avez bientôt utilisé tout votre crédit.%sN’oubliez pas de mettre à "
+"niveau votre abonnement pour continuer à optimiser vos images."
#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
msgid "View My Subscription"
msgstr "Voir mon abonnement"
-#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258 inc/functions/i18n.php:83
+#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
+#: inc/functions/i18n.php:84
msgid "Oops, It's Over!"
msgstr "Oups, c’est fini !"
-#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260 inc/functions/i18n.php:100
+#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
"You have consumed all your credit for this month. You will have %s "
@@ -94,11 +98,10 @@ msgstr "Il vous reste %s de crédit"
msgid "View my subscription"
msgstr "Voir mon abonnement"
-#: inc/admin/media.php:63 inc/functions/i18n.php:59
+#: inc/admin/media.php:63 inc/functions/i18n.php:60
msgid "Compare Original VS Optimized"
msgstr "Comparer Originale VS Optimisée"
-#. Plugin Name of the plugin/theme
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
#: inc/admin/upload.php:12
msgid "Imagify"
@@ -178,20 +181,20 @@ msgstr ""
#: inc/admin/ui/bulk.php:149
#, php-format
msgid ""
-"If you have more than %s images, you will need to launch the bulk optimization "
-"several times."
+"If you have more than %s images, you will need to launch the bulk "
+"optimization several times."
msgstr ""
"Si vous avez plus de %s images, vous devrez lancer l’optimisation en masse "
"plusieurs fois."
#: inc/admin/ui/bulk.php:153
msgid ""
-"You must keep this page open while the bulk optimizaton is processing. If you "
-"leave you can come back to continue where it left off."
+"You must keep this page open while the bulk optimizaton is processing. If "
+"you leave you can come back to continue where it left off."
msgstr ""
"Vous devez garder cette page ouverte pendant que l’optimisation en masse est "
-"en cours. Si vous la quittez, vous pouvez revenir pour continuer là où vous en "
-"étiez."
+"en cours. Si vous la quittez, vous pouvez revenir pour continuer là où vous "
+"en étiez."
#: inc/admin/ui/bulk.php:164
msgid "Select Your Compression Level"
@@ -200,7 +203,8 @@ msgstr "Sélectionnez votre niveau de compression"
#: inc/admin/ui/bulk.php:166 inc/admin/ui/bulk.php:192
#: inc/admin/ui/options.php:136 inc/admin/ui/options.php:365
#: inc/admin/ui/options.php:404 inc/admin/ui/options.php:421
-#: inc/admin/ui/options.php:481 inc/classes/abstracts/abstract-attachment.php:114
+#: inc/admin/ui/options.php:481
+#: inc/classes/abstracts/abstract-attachment.php:114
#: inc/functions/admin-ui.php:153
msgid "Ultra"
msgstr "Ultra"
@@ -208,7 +212,8 @@ msgstr "Ultra"
#: inc/admin/ui/bulk.php:169 inc/admin/ui/bulk.php:187
#: inc/admin/ui/options.php:131 inc/admin/ui/options.php:352
#: inc/admin/ui/options.php:403 inc/admin/ui/options.php:416
-#: inc/admin/ui/options.php:460 inc/classes/abstracts/abstract-attachment.php:117
+#: inc/admin/ui/options.php:460
+#: inc/classes/abstracts/abstract-attachment.php:117
#: inc/functions/admin-ui.php:159
msgid "Aggressive"
msgstr "Agressif"
@@ -216,7 +221,8 @@ msgstr "Agressif"
#: inc/admin/ui/bulk.php:172 inc/admin/ui/bulk.php:182
#: inc/admin/ui/options.php:126 inc/admin/ui/options.php:339
#: inc/admin/ui/options.php:402 inc/admin/ui/options.php:411
-#: inc/admin/ui/options.php:440 inc/classes/abstracts/abstract-attachment.php:120
+#: inc/admin/ui/options.php:440
+#: inc/classes/abstracts/abstract-attachment.php:120
#: inc/functions/admin-ui.php:165
msgid "Normal"
msgstr "Normal"
@@ -242,11 +248,10 @@ msgstr "Imagif'em all"
#: inc/admin/ui/bulk.php:220
#, php-format
-msgid ""
-"All images greater than %s will be optimized when using a paying monthly plan."
+msgid "All images greater than %s will be optimized when using a paid plan."
msgstr ""
"Toutes les images de plus de %s seront optimisées lors de l'utilisation d'un "
-"abonnement mensuel payant."
+"plan payant."
#: inc/admin/ui/bulk.php:239
msgid "Well done!"
@@ -278,7 +283,7 @@ msgstr "Statut"
msgid "Original"
msgstr "Original"
-#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:79
+#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
msgid "Optimized"
msgstr "Optimisées"
@@ -333,11 +338,11 @@ msgstr "Créer un compte"
#: inc/admin/ui/notices.php:34
msgid ""
-"Don't have an Imagify account yet? Optimize your images by creating an account "
-"in a few seconds!"
+"Don't have an Imagify account yet? Optimize your images by creating an "
+"account in a few seconds!"
msgstr ""
-"Vous n’avez pas encore de compte Imagify ? Optimiser vos images en créant "
-"un compte en quelques secondes !"
+"Vous n’avez pas encore de compte Imagify ? Optimiser vos images en "
+"créant un compte en quelques secondes !"
#: inc/admin/ui/notices.php:37
msgid "Sign up, It's FREE!"
@@ -365,7 +370,8 @@ msgid "Configure it"
msgstr "Configurer le"
#: inc/admin/ui/notices.php:54
-msgid "It’s almost done! You have just to configure your optimization settings."
+msgid ""
+"It’s almost done! You have just to configure your optimization settings."
msgstr ""
"C’est bientôt terminé ! Vous avez juste à configurer vos paramètres "
"d'optimisation."
@@ -375,15 +381,16 @@ msgid "Go to Settings"
msgstr "Aller aux réglages"
#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
-#: inc/functions/i18n.php:77
+#: inc/functions/i18n.php:78
msgid "Your API key isn't valid!"
msgstr "Votre clé API n’est pas valide !"
#: inc/admin/ui/notices.php:90
#, php-format
msgid ""
-"Go to your Imagify account page to get your API Key and specify it on %1$syour "
-"settings%3$s or %2$screate an account for free%3$s if you don't have one yet."
+"Go to your Imagify account page to get your API Key and specify it on "
+"%1$syour settings%3$s or %2$screate an account for free%3$s if you don't "
+"have one yet."
msgstr ""
"Allez sur votre page de compte Imagify pour récupérer votre clé API et la "
"renseigner dans %1$svos réglages%3$s ou %2$scréez un compte gratuitement%3$s "
@@ -419,8 +426,8 @@ msgid ""
"To optimize your images, you have to put the following code in your wp-"
"config.php
file so that it works correctly."
msgstr ""
-"Pour optimiser vos images, vous devez insérer le code suivant dans le fichier "
-"wp-config.php
afin que cela fonctionne correctement."
+"Pour optimiser vos images, vous devez insérer le code suivant dans le "
+"fichier wp-config.php
afin que cela fonctionne correctement."
#: inc/admin/ui/notices.php:182
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."
msgid "Switch to the List View"
msgstr "Basculer en vue liste"
-#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:97
-#: inc/functions/i18n.php:100
+#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
-"To continue to optimize your images, log in to your Imagify account to %sbuy a "
-"pack or subscribe to a plan%s."
+"To continue to optimize your images, log in to your Imagify account to %sbuy "
+"a pack or subscribe to a plan%s."
msgstr ""
"Pour continuer à optimiser vos images, connectez-vous à votre compte Imagify "
"pour %sacheter un pack ou souscrire à un plan%s."
@@ -467,8 +474,8 @@ msgid ""
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
"your website's speed by reducing your images size."
msgstr ""
-"%1$sFélicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et améliorez le "
-"temps de chargement de votre site en réduisant le poids de vos images."
+"%1$sFélicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et améliorez "
+"le temps de chargement de votre site en réduisant le poids de vos images."
#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
#, php-format
@@ -487,7 +494,7 @@ msgstr "Votre site est trop lent ?"
msgid "API Key"
msgstr "Clé API"
-#: inc/admin/ui/options.php:91 inc/functions/i18n.php:32
+#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
msgid "Your API key is valid."
msgstr "Votre clé API est valide."
@@ -544,10 +551,10 @@ msgid ""
"after resizing. The new width should not be less than your largest thumbnail "
"width, which is actually %spx."
msgstr ""
-"Cette option est recommendée pour réduire les images trop grandes. Vous pouvez "
-"économiser jusqu'à 80%% du poids après le redimensionnement. La nouvelle "
-"largeur ne doit pas être inférieure à la plus grande largeur de vos miniatures "
-"qui est actuellement de %spx."
+"Cette option est recommendée pour réduire les images trop grandes. Vous "
+"pouvez économiser jusqu'à 80%% du poids après le redimensionnement. La "
+"nouvelle largeur ne doit pas être inférieure à la plus grande largeur de vos "
+"miniatures qui est actuellement de %spx."
#: inc/admin/ui/options.php:209 inc/admin/ui/options.php:212
msgid "EXIF Data"
@@ -571,9 +578,9 @@ msgid ""
"If you are a photographer, you may be interested in this option if you are "
"displaying on your pages some info like the model of your camera."
msgstr ""
-"Si vous êtes un photographe, vous pourriez être intéressé par cette option si "
-"vous affichez quelques infos comme votre le modèle de votre appareil photo sur "
-"vos pages."
+"Si vous êtes un photographe, vous pourriez être intéressé par cette option "
+"si vous affichez quelques infos comme votre le modèle de votre appareil "
+"photo sur vos pages."
#: inc/admin/ui/options.php:228
msgid "Files optimization"
@@ -617,11 +624,11 @@ msgstr "Enregistrer & Aller à l’optimisation en masse"
#: inc/admin/ui/options.php:328
#, php-format
msgid ""
-"Once your settings saved, optimize all your images by using the %sImagify Bulk "
-"Optimization%s feature."
+"Once your settings saved, optimize all your images by using the %sImagify "
+"Bulk Optimization%s feature."
msgstr ""
-"Une fois vos paramètres enregistrés, optimisez toutes vos images en utilisant "
-"la fonctionnalité d’%soptimisation en masse%s d’Imagify."
+"Une fois vos paramètres enregistrés, optimisez toutes vos images en "
+"utilisant la fonctionnalité d’%soptimisation en masse%s d’Imagify."
#: inc/admin/ui/options.php:336
msgid "You can choose three levels of compression"
@@ -639,19 +646,20 @@ msgstr ""
msgid ""
"If you want the perfect quality for your images, we recommend you that mode."
msgstr ""
-"Si vous souhaitez des images d’une qualité parfaite, nous vous recommandons ce "
-"niveau."
+"Si vous souhaitez des images d’une qualité parfaite, nous vous recommandons "
+"ce niveau."
#: inc/admin/ui/options.php:347
-msgid "Note: the file size reduction will be less, compared to aggressive mode."
+msgid ""
+"Note: the file size reduction will be less, compared to aggressive mode."
msgstr ""
"Remarque: la réduction du poids des images sera moins importante par rapport "
"au mode agressif."
#: inc/admin/ui/options.php:354
msgid ""
-"This mode provides perfect optimization of your images without any significant "
-"quality loss."
+"This mode provides perfect optimization of your images without any "
+"significant quality loss."
msgstr ""
"Ce niveau permet une optimisation idéale de vos images sans perte de qualité "
"notable."
@@ -661,8 +669,8 @@ msgid ""
"This will provide a drastic savings on the initial weight, with a small "
"reduction in image quality. Most of the time it's not even noticeable."
msgstr ""
-"Cela permettra une réduction importante du poids initial avec une légère perte "
-"de la qualité d'image qui n’est pas perceptible à l’oeil humain."
+"Cela permettra une réduction importante du poids initial avec une légère "
+"perte de la qualité d'image qui n’est pas perceptible à l’oeil humain."
#: inc/admin/ui/options.php:360
msgid "If you want the maximum weight reduction, we recommend using this mode."
@@ -672,10 +680,11 @@ msgstr ""
#: inc/admin/ui/options.php:367
msgid ""
-"This mode will apply all available optimizations for maximum image compression."
+"This mode will apply all available optimizations for maximum image "
+"compression."
msgstr ""
-"Ce niveau appliquera toutes les optimisations disponibles pour une compression "
-"des images maximale."
+"Ce niveau appliquera toutes les optimisations disponibles pour une "
+"compression des images maximale."
#: inc/admin/ui/options.php:370
msgid ""
@@ -694,7 +703,7 @@ msgstr ""
"baisse de qualité sur vos images, nous vous recommandons ce niveau."
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
-#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:60
+#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
msgid "Close"
msgstr "Fermer"
@@ -722,17 +731,17 @@ msgstr "Niveau :"
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
-#: inc/functions/i18n.php:61
+#: inc/functions/i18n.php:62
msgid "File Size:"
msgstr "Poids du fichier:"
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
-#: inc/functions/i18n.php:62
+#: inc/functions/i18n.php:63
msgid "Original Saving:"
msgstr "Gain sur l’original :"
-#: inc/admin/upload.php:42 inc/functions/i18n.php:80
+#: inc/admin/upload.php:42 inc/functions/i18n.php:81
msgid "Unoptimized"
msgstr "Non optimisées"
@@ -748,13 +757,13 @@ msgstr "Filtrer par statut"
msgid "All images"
msgstr "Toutes les images"
-#: inc/classes/class-attachment.php:266
+#: inc/classes/class-attachment.php:297
msgid ""
"This size isn't authorized to be optimized. Update your Imagify settings if "
"you want to optimize it."
msgstr ""
-"Cette taille n’est pas autorisée à être optimisée. Mettez à jour les réglages "
-"d’Imagify si vous souhaitez l’optimiser."
+"Cette taille n’est pas autorisée à être optimisée. Mettez à jour les "
+"réglages d’Imagify si vous souhaitez l’optimiser."
#: inc/common/admin-bar.php:48
#, php-format
@@ -961,13 +970,13 @@ msgstr "Nous contacter"
#: inc/functions/admin-ui.php:510
msgid ""
-"One time plans are useful if you have a lots of existing images which need to "
-"be optimized. You can use it for bulk optimizing all your past images. You "
-"will pay only once."
+"One time plans are useful if you have a lots of existing images which need "
+"to be optimized. You can use it for bulk optimizing all your past images. "
+"You will pay only once."
msgstr ""
"Les plans « One Time » sont utiles si vous avez beaucoup d’images existantes "
-"qui ont besoin d’être optimisées. Vous pouvez l’utiliser pour une optimisation "
-"en masse de vos images passées. Vous ne paierez qu’une fois."
+"qui ont besoin d’être optimisées. Vous pouvez l’utiliser pour une "
+"optimisation en masse de vos images passées. Vous ne paierez qu’une fois."
#: inc/functions/admin-ui.php:563
msgid "Your order"
@@ -1004,7 +1013,8 @@ msgstr ""
#: inc/functions/admin-ui.php:618
#, php-format
msgid ""
-"Perfect!
You're saving %s per year!"
+"Perfect!
You're saving %s per year!"
+"strong>"
msgstr ""
"Parfait !
Vous économisez %s par "
"an !"
@@ -1043,14 +1053,14 @@ msgid "You need to specify an email!"
msgstr "Vous devez indiquer un e-mail !"
# SWAL : ne pas utiliser d’entité HTML échapée (ex: )
-#: inc/functions/i18n.php:24 inc/functions/i18n.php:30
+#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
msgid "Congratulations!"
msgstr "Félicitations !"
#: inc/functions/i18n.php:25
msgid ""
-"Your account has been succesfully created. Please check your mailbox, you are "
-"going to receive an email with API key."
+"Your account has been succesfully created. Please check your mailbox, you "
+"are going to receive an email with API key."
msgstr ""
"Votre compte a été créé avec succès. Vérifiez votre boîte de réception, vous "
"allez recevoir un e-mail avec votre clé API."
@@ -1072,23 +1082,27 @@ msgstr "Connectez-moi"
msgid "Check in progress..."
msgstr "Vérification en cours…"
-#: inc/functions/i18n.php:31
+#: inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr "Vous devez indiquer une clé api !"
+
+#: inc/functions/i18n.php:32
msgid ""
-"Your API key is valid. You can now configure the Imagify settings to optimize "
-"your images."
+"Your API key is valid. You can now configure the Imagify settings to "
+"optimize your images."
msgstr ""
"Votre clé API est valide. Vous pouvez maintenant configurer les réglages "
"d’Imagify pour optimiser vos images."
-#: inc/functions/i18n.php:33
+#: inc/functions/i18n.php:34
msgid "Cancel"
-msgstr ""
+msgstr "Annuler"
-#: inc/functions/i18n.php:40
+#: inc/functions/i18n.php:41
msgid "Don't Need a Parachute?"
msgstr "Pas besoin d’un parachute ?"
-#: inc/functions/i18n.php:41
+#: inc/functions/i18n.php:42
msgid ""
"If you keep this option deactivated, you won't be able to re-optimize your "
"images to another compression level and restore your original images in case "
@@ -1098,138 +1112,135 @@ msgstr ""
"réoptimiser vos images à un autre niveau de compression et de restaurer vos "
"images originales en cas de besoin."
-#: inc/functions/i18n.php:57
+#: inc/functions/i18n.php:58
msgid "Original Image"
msgstr "Image d’origine"
-#: inc/functions/i18n.php:58
+#: inc/functions/i18n.php:59
msgid "Optimized Image"
msgstr "Image optimisée"
-#: inc/functions/i18n.php:72
+#: inc/functions/i18n.php:73
msgid "Please wait..."
msgstr "Un peu d’attente…"
-#: inc/functions/i18n.php:73
+#: inc/functions/i18n.php:74
msgid ""
"We are trying to get your unoptimized images, it may take time depending on "
"the number of images."
msgstr ""
-"Nous sommes en train de récupérer vos images non-optimisées, cela peut prendre "
-"du temps en fonction du nombre d’images."
+"Nous sommes en train de récupérer vos images non-optimisées, cela peut "
+"prendre du temps en fonction du nombre d’images."
-#: inc/functions/i18n.php:75
+#: inc/functions/i18n.php:76
msgid "Oops, There is something wrong!"
msgstr "Oups, une erreur est survenue !"
-#: inc/functions/i18n.php:76
+#: inc/functions/i18n.php:77
msgid ""
-"An unknow error occurred when we tried to get all your unoptimized images. Try "
-"again and if the issue still persist, please contact us!"
+"An unknow error occurred when we tried to get all your unoptimized images. "
+"Try again and if the issue still persist, please contact us!"
msgstr ""
"Une erreur inconnue est survenue lorsque nous avons essayé d’obtenir toutes "
"vos images non optimisées. Essayez encore et si le problème persiste, "
"contactez-nous !"
-#: inc/functions/i18n.php:81
+#: inc/functions/i18n.php:82
msgid "Error"
msgstr "Erreur"
-#: inc/functions/i18n.php:84
+#: inc/functions/i18n.php:85
msgid "Hold on!"
msgstr "Halte là !"
-#: inc/functions/i18n.php:85
+#: inc/functions/i18n.php:86
msgid "All your images have been optimized by Imagify. Congratulations!"
msgstr "Toutes vos images ont été optimisées par Imagify. Félicitations !"
-#: inc/functions/i18n.php:87
+#: inc/functions/i18n.php:88
#, php-format
msgid ""
-"Discover @imagify, the new compression tool to optimize your images for free. "
-"I saved %1$s out of %2$s!"
+"Discover @imagify, the new compression tool to optimize your images for "
+"free. I saved %1$s out of %2$s!"
msgstr ""
-"Découvrez @imagify, le nouvel outil de compression pour optimiser vos images. "
-"J’ai optimisé %1$s sur %2$s !"
+"Découvrez @imagify, le nouvel outil de compression pour optimiser vos "
+"images. J’ai optimisé %1$s sur %2$s !"
-#: inc/functions/i18n.php:91
+#: inc/functions/i18n.php:92
msgid "Imagify is still processing. Are you sure you want to leave this page?"
msgstr ""
"Imagify travaille encore. Êtes-vous sûr(e) de vouloir quitter cette page ?"
-#: inc/functions/i18n.php:100
+#: inc/functions/i18n.php:101
msgid "F j, Y"
-msgstr ""
+msgstr "j F Y"
-#: inc/functions/process.php:41
+#: inc/functions/process.php:40
msgid ""
-"Sorry, our servers are temporarily unaccessible. Please, try again in a couple "
-"of minutes."
+"Sorry, our servers are temporarily unaccessible. Please, try again in a "
+"couple of minutes."
msgstr ""
-"Désolé, nos serveurs sont temporairement inaccessibles. Nous vous recommandons "
-"de ré-essayer dans quelques minutes."
+"Désolé, nos serveurs sont temporairement inaccessibles. Nous vous "
+"recommandons de ré-essayer dans quelques minutes."
-#: inc/functions/process.php:47
+#: inc/functions/process.php:46
msgid "External HTTP requests are blocked"
msgstr "Les requêtes HTTP externes sont bloquées"
-#: inc/functions/process.php:53
+#: inc/functions/process.php:52
msgid "File path is empty"
msgstr "Le chemin du fichier est vide"
-#: inc/functions/process.php:59
+#: inc/functions/process.php:58
#, php-format
msgid "Could not find %s"
msgstr "Impossible de trouver %s"
-#: inc/functions/process.php:64
+#: inc/functions/process.php:63
#, php-format
msgid "%s is not writable"
msgstr "%s n’est pas accessible en écriture"
-#: inc/functions/process.php:73
+#: inc/functions/process.php:72
#, php-format
msgid "Skipped (%s), image not found."
msgstr "Ignoré (%s), image introuvable."
-#. Plugin URI of the plugin/theme
-msgid "https://wordpress.org/plugins/imagify/"
-msgstr "https://fr.wordpress.org/plugins/imagify/"
+#~ msgid "https://wordpress.org/plugins/imagify/"
+#~ msgstr "https://fr.wordpress.org/plugins/imagify/"
-#. Description of the plugin/theme
-msgid ""
-"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."
-msgstr ""
-"Réduisez drastiquement la taille de vos images sans perte de qualité, "
-"améliorez la vitesse de chargement de votre site web, boostez votre SEO et "
-"économisez de la bande passante (et de l’argent) en utilisant Imagify, l’outil "
-"le plus avancé pour optimiser vos images."
+#~ msgid ""
+#~ "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."
+#~ msgstr ""
+#~ "Réduisez drastiquement la taille de vos images sans perte de qualité, "
+#~ "améliorez la vitesse de chargement de votre site web, boostez votre SEO "
+#~ "et économisez de la bande passante (et de l’argent) en utilisant Imagify, "
+#~ "l’outil le plus avancé pour optimiser vos images."
-#. Author of the plugin/theme
-msgid "WP Media"
-msgstr "WP Media"
+#~ msgid "WP Media"
+#~ msgstr "WP Media"
-#. Author URI of the plugin/theme
-msgid "http://wp-media.me"
-msgstr "http://wp-media.me"
+#~ msgid "http://wp-media.me"
+#~ msgstr "http://wp-media.me"
#~ msgid ""
-#~ "All images greater than %s%% will be optimized when using a paying monthly "
-#~ "plan."
+#~ "All images greater than %s%% will be optimized when using a paying "
+#~ "monthly plan."
#~ msgstr ""
-#~ "Toutes les images de plus de %s %% seront optimisées lors de l'utilisation "
-#~ "d'un abonnement mensuel payant."
+#~ "Toutes les images de plus de %s %% seront optimisées lors de "
+#~ "l'utilisation d'un abonnement mensuel payant."
#~ msgid "You optimized %s of images on your website"
#~ msgstr "Vous avez optimisé %s des images de votre site"
#~ msgid ""
-#~ "Images greater than 5 MB will be optimized when using a paying monthly plan."
+#~ "Images greater than 5 MB will be optimized when using a paying monthly "
+#~ "plan."
#~ msgstr ""
-#~ "Les images supérieures à 5 Mo seront optimisées lors de l'utilisation d'un "
-#~ "forfait mensuel payant."
+#~ "Les images supérieures à 5 Mo seront optimisées lors de l'utilisation "
+#~ "d'un forfait mensuel payant."
#~ msgid "Your default setting:"
#~ msgstr "Votre réglage par défaut :"
@@ -1247,15 +1258,16 @@ msgstr "http://wp-media.me"
#~ msgstr ""
#~ "Réduisez drastiquement le poids de vos images sans perte de qualité, "
#~ "accélérez la rapidité de votre site, boostez votre SEO et économisez de "
-#~ "l’argent sur votre bande passante en utilisant Imagify, le nouvel outil le "
-#~ "plus avancé d’optimisation des images."
+#~ "l’argent sur votre bande passante en utilisant Imagify, le nouvel outil "
+#~ "le plus avancé d’optimisation des images."
#~ msgid ""
#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and "
#~ "improved your website's by reducing your images size."
#~ msgstr ""
-#~ "%1$Félicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et améliorez "
-#~ "le temps de chargement de votre site en réduisant le poids de vos images."
+#~ "%1$Félicitations%2$s ! Vous avez optimisé %1$s%3$d images%2$s et "
+#~ "améliorez le temps de chargement de votre site en réduisant le poids de "
+#~ "vos images."
#~ msgid ""
#~ "Sorry, our servers are temporally unaccessible. Please, try again in a "
@@ -1275,21 +1287,22 @@ msgstr "http://wp-media.me"
#~ msgid ""
#~ "If you are a photographer, you may be interested in by this option if you "
-#~ "are displaying some infos like your the model of your camera on your pages."
+#~ "are displaying some infos like your the model of your camera on your "
+#~ "pages."
#~ msgstr ""
-#~ "Si vous êtes un photographe, vous pourriez être intéressé par cette option "
-#~ "si vous affichez quelques infos comme votre le modèle de votre appareil "
-#~ "photo sur vos pages."
+#~ "Si vous êtes un photographe, vous pourriez être intéressé par cette "
+#~ "option si vous affichez quelques infos comme votre le modèle de votre "
+#~ "appareil photo sur vos pages."
#~ msgid "Checking in process..."
#~ msgstr "Vérification en cours…"
#~ msgid ""
-#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and reduced "
-#~ "by %1$s%4$s%2$s%% your images size."
+#~ "%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and "
+#~ "reduced by %1$s%4$s%2$s%% your images size."
#~ msgstr ""
-#~ "%1$sFélicitations%2$s, vous avez optimisé %1$s%3$d images %2$s et réduit de "
-#~ "%1$s%4$s%2$s%% le poids de vos images."
+#~ "%1$sFélicitations%2$s, vous avez optimisé %1$s%3$d images %2$s et réduit "
+#~ "de %1$s%4$s%2$s%% le poids de vos images."
#~ msgid ""
#~ "Keep all EXIF data from your images. Exif are informations stored in your "
@@ -1300,8 +1313,8 @@ msgstr "http://wp-media.me"
#~ "d’exposition, ISO, etc …"
#~ msgid ""
-#~ "This will provide a huge savings on the initial weight. Sometimes the image "
-#~ "quality could be degraded."
+#~ "This will provide a huge savings on the initial weight. Sometimes the "
+#~ "image quality could be degraded."
#~ msgstr ""
#~ "Cela permettra de considérablement réduire le poids initial. Parfois, la "
#~ "qualité de l’image pourra être légèrement dégradée."
@@ -1362,8 +1375,8 @@ msgstr "http://wp-media.me"
#~ "niveau votre abonnement pour continuer à optimiser vos images."
#~ msgid ""
-#~ "You have almost used all your credit. Don't forget to upgrade your account "
-#~ "to continue optimizing your images."
+#~ "You have almost used all your credit. Don't forget to upgrade your "
+#~ "account to continue optimizing your images."
#~ msgstr ""
#~ "Vous avez bientôt utilisé tout votre crédit. N’oubliez pas de mettre à "
#~ "niveau votre abonnement pour continuer à optimiser vos images."
@@ -1398,12 +1411,12 @@ msgstr "http://wp-media.me"
#~ "You can log in to your Imagify account to %sbuy a pack or subscribe to a "
#~ "plan%s."
#~ msgstr ""
-#~ "Vous pouvez vous connecter à votre compte Imagify pour %sacheter un pack ou "
-#~ "souscrire à un plan%s."
+#~ "Vous pouvez vous connecter à votre compte Imagify pour %sacheter un pack "
+#~ "ou souscrire à un plan%s."
#~ msgid ""
-#~ "You have consumed all your credits for this month. You will have %s "
-#~ "back on %s."
+#~ "You have consumed all your credits for this month. You will have "
+#~ "%s back on %s."
#~ msgstr ""
#~ "Vous avez consommé tous les crédits pour ce mois. Vous aurez à nouveau "
#~ "%s le %s."
@@ -1441,11 +1454,11 @@ msgstr "http://wp-media.me"
#~ "d’optimisation."
#~ msgid ""
-#~ "This mode is a lossless optimization, your images will be optimized without "
-#~ "any visible change."
+#~ "This mode is a lossless optimization, your images will be optimized "
+#~ "without any visible change."
#~ msgstr ""
-#~ "Ce niveau permet d'optimiser sans perte, vos images seront optimisées sans "
-#~ "aucun changement visible."
+#~ "Ce niveau permet d'optimiser sans perte, vos images seront optimisées "
+#~ "sans aucun changement visible."
#~ msgid ""
#~ "This mode will apply all optimizations available to compress furthermore "
@@ -1454,13 +1467,15 @@ msgstr "http://wp-media.me"
#~ "Ce niveau appliquera toutes les optimisations disponibles pour compresser "
#~ "les images."
-#~ msgid "If you want the highest weight reduction, we recommend you this mode."
+#~ msgid ""
+#~ "If you want the highest weight reduction, we recommend you this mode."
#~ msgstr ""
#~ "Si vous souhaitez une réduction du poids plus performante, nous vous "
#~ "recommandons ce niveau."
#~ msgid "Optimize automatically every image you will upload to WordPress."
-#~ msgstr "Optimisez automatiquement chaque image que vous enverrez à WordPress."
+#~ msgstr ""
+#~ "Optimisez automatiquement chaque image que vous enverrez à WordPress."
#~ msgid ""
#~ "Please be aware that optimizing a large number of images can take a while "
@@ -1501,15 +1516,16 @@ msgstr "http://wp-media.me"
#~ "Is your WordPress website too slow? Discover the best caching plugin to "
#~ "speed up your website."
#~ msgstr ""
-#~ "Votre site WordPress est lent ? Découvrer le meilleur plugin de cache pour "
-#~ "accélérer votre site."
+#~ "Votre site WordPress est lent ? Découvrer le meilleur plugin de cache "
+#~ "pour accélérer votre site."
#~ msgid ""
#~ "Please be aware that optimizing a large number of images can take a whil "
#~ "depends on your server and network speed."
#~ msgstr ""
-#~ "Soyez conscient que l’optimisation d’une grand nombre d’images peut prendre "
-#~ "du temps en fonction de la rapidité de votre serveur et de votre connexion."
+#~ "Soyez conscient que l’optimisation d’une grand nombre d’images peut "
+#~ "prendre du temps en fonction de la rapidité de votre serveur et de votre "
+#~ "connexion."
#~ msgid "Your API key isn't valid."
#~ msgstr "Votre clé API n’est pas valide."
diff --git a/languages/imagify-it_IT.mo b/languages/imagify-it_IT.mo
index 8b8b15c97..67477d2a5 100755
Binary files a/languages/imagify-it_IT.mo and b/languages/imagify-it_IT.mo differ
diff --git a/languages/imagify-it_IT.po b/languages/imagify-it_IT.po
index 1f3c2b0f1..4d1222ec4 100755
--- a/languages/imagify-it_IT.po
+++ b/languages/imagify-it_IT.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: Imagify\n"
-"POT-Creation-Date: 2016-04-19 16:27+0200\n"
-"PO-Revision-Date: 2016-04-19 16:28+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2016-09-23 11:02-0500\n"
+"PO-Revision-Date: 2016-09-23 11:03-0500\n"
+"Last-Translator: Rémy Perona \n"
"Language-Team: \n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.8.6\n"
+"X-Generator: Poedit 1.6.4\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-WPHeader: imagify.php\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -17,18 +17,18 @@ msgstr ""
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
-"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
+"X-Poedit-SearchPath-0: .\n"
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:34
-#: inc/functions/admin-ui.php:212 inc/functions/i18n.php:46
-#: inc/functions/i18n.php:61
+#: inc/functions/admin-ui.php:215 inc/functions/i18n.php:49
+#: inc/functions/i18n.php:64
msgid "Optimize"
msgstr "Ottimizza"
#: inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
-#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:47
+#: inc/functions/admin-ui.php:80 inc/functions/i18n.php:50
msgid "Restore Original"
msgstr "Ripristina originale"
@@ -41,15 +41,15 @@ msgstr "Ottimizzazione massiva"
#: inc/admin/ajax.php:123 inc/admin/meta-boxes.php:29
#: inc/functions/admin-ui.php:121 inc/functions/admin-ui.php:153
#: inc/functions/admin-ui.php:159 inc/functions/admin-ui.php:165
-#: inc/functions/admin-ui.php:202 inc/functions/admin-ui.php:212
+#: inc/functions/admin-ui.php:205 inc/functions/admin-ui.php:215
msgid "Optimizing..."
msgstr "Ottimizzando…"
-#: inc/admin/ajax.php:503
+#: inc/admin/ajax.php:507
msgid "Oops, It's almost over!"
msgstr "Ops, quasi finito!"
-#: inc/admin/ajax.php:504
+#: inc/admin/ajax.php:508
#, php-format
msgid ""
"You have almost used all your credit.%sDon't forget to upgrade your "
@@ -58,17 +58,17 @@ msgstr ""
"Hai usato quasi tutto il tuo credito.%sNon dimenticare di aggiornare il tuo "
"abbonamento per continuare a ottimizzare le tue immagini."
-#: inc/admin/ajax.php:505 inc/admin/ui/bulk.php:23
+#: inc/admin/ajax.php:509 inc/admin/ui/bulk.php:23
msgid "View My Subscription"
msgstr "Vedere il mio abbonamento"
-#: inc/admin/ajax.php:513 inc/admin/ui/notices.php:251
-#: inc/functions/i18n.php:80
+#: inc/admin/ajax.php:517 inc/admin/ui/notices.php:258
+#: inc/functions/i18n.php:84
msgid "Oops, It's Over!"
msgstr "Ops, finito!"
-#: inc/admin/ajax.php:514 inc/admin/ui/notices.php:253
-#: inc/functions/i18n.php:97
+#: inc/admin/ajax.php:518 inc/admin/ui/notices.php:260
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
"You have consumed all your credit for this month. You will have %s "
@@ -77,32 +77,31 @@ msgstr ""
"Hai consumato tutto il tuo credito per questo mese. Avrai di nuovo "
"%s il %s."
-#: inc/admin/ajax.php:515
+#: inc/admin/ajax.php:519
msgid "Upgrade My Subscription"
msgstr "Aggiornare il mio abbonamento"
-#: inc/admin/ajax.php:534 inc/admin/ui/bulk.php:17
+#: inc/admin/ajax.php:538 inc/admin/ui/bulk.php:17
msgid "Account status"
msgstr "Stato del mio account"
-#: inc/admin/ajax.php:535 inc/admin/ui/bulk.php:18
+#: inc/admin/ajax.php:539 inc/admin/ui/bulk.php:18
msgid "Your subscription:"
msgstr "Il tuo abbonamento:"
-#: inc/admin/ajax.php:543 inc/admin/ui/bulk.php:48
+#: inc/admin/ajax.php:547 inc/admin/ui/bulk.php:48
#, php-format
msgid "You have %s space credit left"
msgstr "Ti rimangono %s di spazio"
-#: inc/admin/ajax.php:555
+#: inc/admin/ajax.php:559
msgid "View my subscription"
msgstr "Vedere il mio abbonamento"
-#: inc/admin/media.php:63 inc/functions/i18n.php:57
+#: inc/admin/media.php:63 inc/functions/i18n.php:60
msgid "Compare Original VS Optimized"
msgstr "Confronta originale VS ottimizzata"
-#. Plugin Name of the plugin/theme
#: inc/admin/meta-boxes.php:17 inc/admin/meta-boxes.php:24
#: inc/admin/upload.php:12
msgid "Imagify"
@@ -116,11 +115,11 @@ msgstr "Chiave API non valida"
msgid "Check your Settings"
msgstr "Verifica delle tue impostazioni"
-#: inc/admin/options.php:120
+#: inc/admin/options.php:119
msgid "Cheatin’ uh?"
msgstr "Stai imbrogliando, vero?"
-#: inc/admin/options.php:128
+#: inc/admin/options.php:127
msgid "ERROR: options page not found."
msgstr "Errore: pagina delle opzioni non trovata."
@@ -251,12 +250,10 @@ msgstr "Imagifica tutto!"
#: inc/admin/ui/bulk.php:220
#, php-format
-msgid ""
-"All images greater than %s will be optimized when using a paying monthly "
-"plan."
+msgid "All images greater than %s will be optimized when using a paid plan."
msgstr ""
-"Tutte le immagini superiori a %s verranno ottimizzate usando il piano "
-"mensile a pagamento."
+"Tutte le immagini superiori a %s possono essere ottimizzate usando un piano "
+"a pagamento"
#: inc/admin/ui/bulk.php:239
msgid "Well done!"
@@ -288,7 +285,7 @@ msgstr "Stato"
msgid "Original"
msgstr "Originale"
-#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:76
+#: inc/admin/ui/bulk.php:266 inc/admin/upload.php:41 inc/functions/i18n.php:80
msgid "Optimized"
msgstr "Ottimizzato"
@@ -325,23 +322,23 @@ msgstr "Guadagno:"
msgid "%sStart the bulk optimization%s"
msgstr "%sInizia l’ottimizzazione massiva%s"
-#: inc/admin/ui/notices.php:23
+#: inc/admin/ui/notices.php:24
msgid "Welcome to Imagify, the best way to easily optimize your images!"
msgstr ""
"Benvenuti su Imagify, il modo migliore per ottimizzare facilmente le vostre "
"immagini!"
-#: inc/admin/ui/notices.php:25 inc/admin/ui/notices.php:90
-#: inc/admin/ui/notices.php:181 inc/admin/ui/notices.php:217
-#: inc/admin/ui/notices.php:256 inc/admin/ui/notices.php:361
+#: inc/admin/ui/notices.php:26 inc/admin/ui/notices.php:92
+#: inc/admin/ui/notices.php:186 inc/admin/ui/notices.php:223
+#: inc/admin/ui/notices.php:263 inc/admin/ui/notices.php:370
msgid "Dismiss this notice"
msgstr "Ignora questo avviso"
-#: inc/admin/ui/notices.php:32
+#: inc/admin/ui/notices.php:33
msgid "Create an Account"
msgstr "Crea un account"
-#: inc/admin/ui/notices.php:33
+#: inc/admin/ui/notices.php:34
msgid ""
"Don't have an Imagify account yet? Optimize your images by creating an "
"account in a few seconds!"
@@ -349,15 +346,15 @@ msgstr ""
"Ancora non hai un account Imagify? Ottimizza le tue immagini creando un "
"account in pochi secondi!"
-#: inc/admin/ui/notices.php:36
+#: inc/admin/ui/notices.php:37
msgid "Sign up, It's FREE!"
msgstr "Registrati, è GRATIS!"
-#: inc/admin/ui/notices.php:42
+#: inc/admin/ui/notices.php:43
msgid "Enter your API Key"
msgstr "Inserisci la tua chiave API"
-#: inc/admin/ui/notices.php:43
+#: inc/admin/ui/notices.php:44
#, php-format
msgid ""
"Save your API Key you have received by email or you can get it on your "
@@ -366,29 +363,30 @@ msgstr ""
"Salva la chiave API che hai ricevuto via email, oppure recuperala nella "
"pagina del %stuo account Imagify.%s"
-#: inc/admin/ui/notices.php:46
+#: inc/admin/ui/notices.php:47
msgid "I have my API key"
msgstr "Ho la mia chiave API"
-#: inc/admin/ui/notices.php:52
+#: inc/admin/ui/notices.php:53
msgid "Configure it"
msgstr "Configuralo"
-#: inc/admin/ui/notices.php:53
+#: inc/admin/ui/notices.php:54
msgid ""
"It’s almost done! You have just to configure your optimization settings."
msgstr ""
"È quasi fatta! Devi solo configurare le tue impostazioni di ottimizzazione."
-#: inc/admin/ui/notices.php:54
+#: inc/admin/ui/notices.php:55
msgid "Go to Settings"
msgstr "Vai alle impostazioni"
-#: inc/admin/ui/notices.php:85 inc/admin/ui/options.php:97
+#: inc/admin/ui/notices.php:87 inc/admin/ui/options.php:97
+#: inc/functions/i18n.php:78
msgid "Your API key isn't valid!"
msgstr "La tua chiave API non è valida!"
-#: inc/admin/ui/notices.php:88
+#: inc/admin/ui/notices.php:90
#, php-format
msgid ""
"Go to your Imagify account page to get your API Key and specify it on "
@@ -399,7 +397,7 @@ msgstr ""
"specificala nelle %1$stue impostazioni%3$s oppure %2$screa un account gratis"
"%3$s se ancora non ne hai uno."
-#: inc/admin/ui/notices.php:138
+#: inc/admin/ui/notices.php:142
msgid ""
"The following plugins are not compatible with this plugin and may cause "
"unexpected results:"
@@ -407,15 +405,15 @@ msgstr ""
"I seguenti plugin non sono compatibili con questo plugin e possono causare "
"risultati imprevisti:"
-#: inc/admin/ui/notices.php:144
+#: inc/admin/ui/notices.php:148
msgid "Deactivate"
msgstr "Disattivare"
-#: inc/admin/ui/notices.php:173
+#: inc/admin/ui/notices.php:178
msgid "The external HTTP requests are blocked!"
msgstr "Le richieste HTTP esterne sono bloccate!"
-#: inc/admin/ui/notices.php:174
+#: inc/admin/ui/notices.php:179
msgid ""
"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
"config.php
to block all external HTTP requests."
@@ -423,7 +421,7 @@ msgstr ""
"Hai definito la costante WP_HTTP_BLOCK_EXTERNAL
nel file "
"wp-config.php
per bloccare tutte le richieste HTTP esterne."
-#: inc/admin/ui/notices.php:176
+#: inc/admin/ui/notices.php:181
msgid ""
"To optimize your images, you have to put the following code in your wp-"
"config.php
file so that it works correctly."
@@ -431,26 +429,26 @@ msgstr ""
"Per ottimizzare le tue immagini, devi inserire il codice seguente nel tuo "
"file wp-config.php
in modo che funzioni correttamente."
-#: inc/admin/ui/notices.php:177
+#: inc/admin/ui/notices.php:182
msgid "Click on the field and press Ctrl-A to select all."
msgstr "Fare clic sul campo e premere Ctrl-A per selezionare tutto."
-#: inc/admin/ui/notices.php:213
+#: inc/admin/ui/notices.php:219
msgid "You're missing out!"
msgstr "Ti stai perdendo qualcosa!"
-#: inc/admin/ui/notices.php:214
+#: inc/admin/ui/notices.php:220
msgid "Use the List view to optimize images with Imagify."
msgstr ""
"Utilizzare la visualizzazione di Lista per ottimizzare le immagini con "
"Imagify."
-#: inc/admin/ui/notices.php:215
+#: inc/admin/ui/notices.php:221
msgid "Switch to the List View"
msgstr "Passa a visualizzazione Lista"
-#: inc/admin/ui/notices.php:253 inc/functions/i18n.php:94
-#: inc/functions/i18n.php:97
+#: inc/admin/ui/notices.php:260 inc/functions/i18n.php:98
+#: inc/functions/i18n.php:101
#, php-format
msgid ""
"To continue to optimize your images, log in to your Imagify account to %sbuy "
@@ -459,20 +457,20 @@ msgstr ""
"Per continuare a ottimizzare le tue immagini, entra nel tuo account Imagify "
"per %scomprare un pack o sottoscrivere un abbonamento %s."
-#: inc/admin/ui/notices.php:306 inc/admin/ui/options.php:28
+#: inc/admin/ui/notices.php:314 inc/admin/ui/options.php:28
msgid "Discover the best caching plugin to speed up your website."
msgstr "Scopri i migliori plugin di cache per velocizzare il tuo sito Web."
-#: inc/admin/ui/notices.php:309 inc/admin/ui/options.php:36
+#: inc/admin/ui/notices.php:317 inc/admin/ui/options.php:36
#, php-format
msgid "%sGet %s off%s with this coupon code:%s"
msgstr "Ottieni il %s%s%s di sconto usando questo coupon:%s"
-#: inc/admin/ui/notices.php:318 inc/admin/ui/options.php:41
+#: inc/admin/ui/notices.php:326 inc/admin/ui/options.php:41
msgid "Get WP Rocket now"
msgstr "Acquista WP Rocket!"
-#: inc/admin/ui/notices.php:354
+#: inc/admin/ui/notices.php:363
#, php-format
msgid ""
"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
@@ -481,7 +479,7 @@ msgstr ""
"%1$sCongratulazioni!%2$s Hai ottimizzato %1$s%3$d immagini%2$s e velocizzato "
"così il tuo sito web."
-#: inc/admin/ui/notices.php:356 inc/admin/ui/options.php:59
+#: inc/admin/ui/notices.php:365 inc/admin/ui/options.php:59
#, php-format
msgid ""
"%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?"
msgid "API Key"
msgstr "Chiave API"
-#: inc/admin/ui/options.php:91 inc/functions/i18n.php:31
+#: inc/admin/ui/options.php:91 inc/functions/i18n.php:33
msgid "Your API key is valid."
msgstr "La tua chiave API è valida."
@@ -711,7 +709,7 @@ msgstr ""
"un po’ la qualità, ti raccomandiamo di usare questa modalità."
#: inc/admin/ui/options.php:380 inc/admin/ui/options.php:502
-#: inc/functions/admin-ui.php:659 inc/functions/i18n.php:58
+#: inc/functions/admin-ui.php:662 inc/functions/i18n.php:61
msgid "Close"
msgstr "Chiudi"
@@ -739,17 +737,17 @@ msgstr "Livello:"
#: inc/admin/ui/options.php:433 inc/admin/ui/options.php:443
#: inc/admin/ui/options.php:463 inc/admin/ui/options.php:484
-#: inc/functions/i18n.php:59
+#: inc/functions/i18n.php:62
msgid "File Size:"
msgstr "Dimensione del file:"
#: inc/admin/ui/options.php:447 inc/admin/ui/options.php:467
#: inc/admin/ui/options.php:488 inc/functions/admin-ui.php:45
-#: inc/functions/i18n.php:60
+#: inc/functions/i18n.php:63
msgid "Original Saving:"
msgstr "Risparmio originale:"
-#: inc/admin/upload.php:42 inc/functions/i18n.php:77
+#: inc/admin/upload.php:42 inc/functions/i18n.php:81
msgid "Unoptimized"
msgstr "Non ottimizzato"
@@ -765,7 +763,7 @@ msgstr "Filtra per stato"
msgid "All images"
msgstr "Tutte le immagini"
-#: inc/classes/class-attachment.php:266
+#: inc/classes/class-attachment.php:297
msgid ""
"This size isn't authorized to be optimized. Update your Imagify settings if "
"you want to optimize it."
@@ -825,228 +823,228 @@ msgstr "Ri-ottimizza a %s"
msgid "%s can't be optimized"
msgstr "%s non ottimizzabile"
-#: inc/functions/admin-ui.php:237
+#: inc/functions/admin-ui.php:240
msgid "What plan do I need?"
msgstr ""
-#: inc/functions/admin-ui.php:241
+#: inc/functions/admin-ui.php:244
msgid "You're new to Imagify?"
msgstr ""
-#: inc/functions/admin-ui.php:242
+#: inc/functions/admin-ui.php:245
msgid ""
"Let us help you by analyzing your existing images and determinate the best "
"plan for you"
msgstr ""
-#: inc/functions/admin-ui.php:277
+#: inc/functions/admin-ui.php:280
msgid "Choose Plan"
msgstr ""
-#: inc/functions/admin-ui.php:278
+#: inc/functions/admin-ui.php:281
msgid "Payment Info"
msgstr ""
-#: inc/functions/admin-ui.php:283
+#: inc/functions/admin-ui.php:286
msgid "We analysed your images"
msgstr ""
-#: inc/functions/admin-ui.php:289
+#: inc/functions/admin-ui.php:292
#, php-format
msgid "You have %s images"
msgstr ""
-#: inc/functions/admin-ui.php:295
+#: inc/functions/admin-ui.php:298
#, php-format
msgid "You actually have %s of images in your library."
msgstr ""
-#: inc/functions/admin-ui.php:299
+#: inc/functions/admin-ui.php:302
#, php-format
msgid "You upload around %s of images per month."
msgstr ""
-#: inc/functions/admin-ui.php:306
+#: inc/functions/admin-ui.php:309
msgid "We recommend you this plan"
msgstr ""
-#: inc/functions/admin-ui.php:311
+#: inc/functions/admin-ui.php:314
msgid "Subscribe a monthly plan"
msgstr ""
-#: inc/functions/admin-ui.php:312
+#: inc/functions/admin-ui.php:315
msgid "Subscribe a yearly plan"
msgstr ""
-#: inc/functions/admin-ui.php:316 inc/functions/admin-ui.php:452
-#: inc/functions/admin-ui.php:620
+#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
+#: inc/functions/admin-ui.php:623
msgid "Monthly"
msgstr ""
-#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
-#: inc/functions/admin-ui.php:623
+#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
+#: inc/functions/admin-ui.php:626
msgid "Yearly"
msgstr ""
-#: inc/functions/admin-ui.php:319 inc/functions/admin-ui.php:455
-#: inc/functions/admin-ui.php:623
+#: inc/functions/admin-ui.php:322 inc/functions/admin-ui.php:458
+#: inc/functions/admin-ui.php:626
msgid "2 months free"
msgstr ""
-#: inc/functions/admin-ui.php:330 inc/functions/admin-ui.php:349
-#: inc/functions/admin-ui.php:465 inc/functions/admin-ui.php:475
+#: inc/functions/admin-ui.php:333 inc/functions/admin-ui.php:352
+#: inc/functions/admin-ui.php:468 inc/functions/admin-ui.php:478
msgid "/month"
msgstr ""
-#: inc/functions/admin-ui.php:332 inc/functions/admin-ui.php:380
-#: inc/functions/admin-ui.php:467 inc/functions/admin-ui.php:518
+#: inc/functions/admin-ui.php:335 inc/functions/admin-ui.php:383
+#: inc/functions/admin-ui.php:470 inc/functions/admin-ui.php:521
#, php-format
msgid "approx: %s images"
msgstr ""
-#: inc/functions/admin-ui.php:353 inc/functions/admin-ui.php:481
+#: inc/functions/admin-ui.php:356 inc/functions/admin-ui.php:484
#, php-format
msgid ""
"%s per
\n"
"additionnal Gb"
msgstr ""
-#: inc/functions/admin-ui.php:358 inc/functions/admin-ui.php:393
-#: inc/functions/admin-ui.php:577 inc/functions/admin-ui.php:598
+#: inc/functions/admin-ui.php:361 inc/functions/admin-ui.php:396
+#: inc/functions/admin-ui.php:580 inc/functions/admin-ui.php:601
msgid "Choose another plan"
msgstr ""
-#: inc/functions/admin-ui.php:368
+#: inc/functions/admin-ui.php:371
msgid "Optimize the images you already have, buy a one-time plan"
msgstr ""
-#: inc/functions/admin-ui.php:404
+#: inc/functions/admin-ui.php:407
msgid "Checkout"
msgstr ""
-#: inc/functions/admin-ui.php:408
+#: inc/functions/admin-ui.php:411
msgid ""
"Monthly plans comes with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: inc/functions/admin-ui.php:432
+#: inc/functions/admin-ui.php:435
msgid "Monthly Plans"
msgstr ""
-#: inc/functions/admin-ui.php:437
+#: inc/functions/admin-ui.php:440
msgid "One Time Plans"
msgstr ""
-#: inc/functions/admin-ui.php:447
+#: inc/functions/admin-ui.php:450
msgid ""
"Monthly plans come with credits which is renewed every months. The billing "
"happens automatically each month or year depending the billing period you "
"choose."
msgstr ""
-#: inc/functions/admin-ui.php:479 inc/functions/admin-ui.php:526
+#: inc/functions/admin-ui.php:482 inc/functions/admin-ui.php:529
msgid "we recommend for you"
msgstr ""
-#: inc/functions/admin-ui.php:487 inc/functions/admin-ui.php:530
+#: inc/functions/admin-ui.php:490 inc/functions/admin-ui.php:533
msgid "Choose plan"
msgstr ""
-#: inc/functions/admin-ui.php:495
+#: inc/functions/admin-ui.php:498
msgid "Need more?"
msgstr ""
-#: inc/functions/admin-ui.php:496
+#: inc/functions/admin-ui.php:499
msgid "for special needs"
msgstr ""
-#: inc/functions/admin-ui.php:500
+#: inc/functions/admin-ui.php:503
msgid "Contact Us"
msgstr ""
-#: inc/functions/admin-ui.php:507
+#: inc/functions/admin-ui.php:510
msgid ""
"One time plans are useful if you have a lots of existing images which need "
"to be optimized. You can use it for bulk optimizing all your past images. "
"You will pay only once."
msgstr ""
-#: inc/functions/admin-ui.php:560
+#: inc/functions/admin-ui.php:563
msgid "Your order"
msgstr ""
-#: inc/functions/admin-ui.php:565
+#: inc/functions/admin-ui.php:568
#, php-format
msgid "%scancel%sYou just removed %s"
msgstr ""
-#: inc/functions/admin-ui.php:573 inc/functions/admin-ui.php:594
+#: inc/functions/admin-ui.php:576 inc/functions/admin-ui.php:597
msgid "Remove this item"
msgstr ""
-#: inc/functions/admin-ui.php:580
+#: inc/functions/admin-ui.php:583
#, php-format
msgid "%s per month"
msgstr ""
-#: inc/functions/admin-ui.php:601
+#: inc/functions/admin-ui.php:604
#, php-format
msgid "one time %s"
msgstr ""
-#: inc/functions/admin-ui.php:614
+#: inc/functions/admin-ui.php:617
#, php-format
msgid ""
"Switch to yearly subscription and
save %s "
"per year!"
msgstr ""
-#: inc/functions/admin-ui.php:615
+#: inc/functions/admin-ui.php:618
#, php-format
msgid ""
"Perfect!
You're saving %s per year!"
"strong>"
msgstr ""
-#: inc/functions/admin-ui.php:654
+#: inc/functions/admin-ui.php:657
msgid "Thank you for being awesome!"
msgstr ""
-#: inc/functions/admin-ui.php:665
+#: inc/functions/admin-ui.php:668
msgid "What do our user think about Imagify"
msgstr ""
-#: inc/functions/admin-ui.php:699
+#: inc/functions/admin-ui.php:702
msgid "Secure Credit Card Payment"
msgstr ""
-#: inc/functions/admin-ui.php:700
+#: inc/functions/admin-ui.php:703
msgid "This is secure 128-bits SSL encrypted payment"
msgstr ""
-#: inc/functions/i18n.php:19
+#: inc/functions/i18n.php:20
msgid "Let's get you started!"
msgstr "Iniziamo!"
-#: inc/functions/i18n.php:20
+#: inc/functions/i18n.php:21
msgid "Enter your email to get an API key:"
msgstr "Inserisci la tua email per ottenere una chiave API:"
-#: inc/functions/i18n.php:21
+#: inc/functions/i18n.php:22
msgid "Sign Up"
msgstr "Registrati"
-#: inc/functions/i18n.php:22
+#: inc/functions/i18n.php:23
msgid "You need to specify an email!"
msgstr "È necessario specificare un indirizzo email!"
-#: inc/functions/i18n.php:23 inc/functions/i18n.php:29
+#: inc/functions/i18n.php:24 inc/functions/i18n.php:31
msgid "Congratulations!"
msgstr "Congratulazioni!"
-#: inc/functions/i18n.php:24
+#: inc/functions/i18n.php:25
msgid ""
"Your account has been succesfully created. Please check your mailbox, you "
"are going to receive an email with API key."
@@ -1054,23 +1052,27 @@ msgstr ""
"Il tuo account è stato creato con successo. Per favore controlla la tua "
"casella email, stai per ricevere un messaggio con la chiave API."
-#: inc/functions/i18n.php:25
+#: inc/functions/i18n.php:26
msgid "Connect to Imagify!"
msgstr "Connettiti a Imagify!"
-#: inc/functions/i18n.php:26
+#: inc/functions/i18n.php:27
msgid "Paste your API key below:"
msgstr "Incolla qui sotto la chiave API:"
-#: inc/functions/i18n.php:27
+#: inc/functions/i18n.php:28
msgid "Connect me"
msgstr "Connettimi"
-#: inc/functions/i18n.php:28
+#: inc/functions/i18n.php:29
msgid "Check in progress..."
msgstr "Verifica in corso…"
#: inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr "È necessario specificare un api key!"
+
+#: inc/functions/i18n.php:32
msgid ""
"Your API key is valid. You can now configure the Imagify settings to "
"optimize your images."
@@ -1078,15 +1080,15 @@ msgstr ""
"La tua chiave API è valida. Ora puoi configurare le impostazioni di Imagify "
"per ottimizzare le tue immagini."
-#: inc/functions/i18n.php:32
+#: inc/functions/i18n.php:34
msgid "Cancel"
msgstr ""
-#: inc/functions/i18n.php:38
+#: inc/functions/i18n.php:41
msgid "Don't Need a Parachute?"
msgstr "Non hai bisogno di un paracadute?"
-#: inc/functions/i18n.php:39
+#: inc/functions/i18n.php:42
msgid ""
"If you keep this option deactivated, you won't be able to re-optimize your "
"images to another compression level and restore your original images in case "
@@ -1096,19 +1098,19 @@ msgstr ""
"immagini a un altro livello di compressione o ripristinare le originali in "
"caso di necessità."
-#: inc/functions/i18n.php:55
+#: inc/functions/i18n.php:58
msgid "Original Image"
msgstr "Immagine originale"
-#: inc/functions/i18n.php:56
+#: inc/functions/i18n.php:59
msgid "Optimized Image"
msgstr "Immagine ottimizzata"
-#: inc/functions/i18n.php:70
+#: inc/functions/i18n.php:73
msgid "Please wait..."
msgstr "Attendere per favore…"
-#: inc/functions/i18n.php:71
+#: inc/functions/i18n.php:74
msgid ""
"We are trying to get your unoptimized images, it may take time depending on "
"the number of images."
@@ -1116,11 +1118,11 @@ msgstr ""
"Stiamo cercando di ottenere le immagini non ottimizzate, il che potrebbe "
"richiedere del tempo in base al numero di immagini."
-#: inc/functions/i18n.php:73
+#: inc/functions/i18n.php:76
msgid "Oops, There is something wrong!"
msgstr "Ups, qualcosa è andato storto!"
-#: inc/functions/i18n.php:74
+#: inc/functions/i18n.php:77
msgid ""
"An unknow error occurred when we tried to get all your unoptimized images. "
"Try again and if the issue still persist, please contact us!"
@@ -1129,20 +1131,20 @@ msgstr ""
"immagini non ottimizzate. Prova di nuovo e, se il problema persiste, "
"contattaci per favore!"
-#: inc/functions/i18n.php:78
+#: inc/functions/i18n.php:82
msgid "Error"
msgstr "Errore"
-#: inc/functions/i18n.php:81
+#: inc/functions/i18n.php:85
msgid "Hold on!"
msgstr "Resisti!"
-#: inc/functions/i18n.php:82
+#: inc/functions/i18n.php:86
msgid "All your images have been optimized by Imagify. Congratulations!"
msgstr ""
"Tutte le tue immagini sono state ottimizzate da Imagify. Congratulazioni!"
-#: inc/functions/i18n.php:84
+#: inc/functions/i18n.php:88
#, php-format
msgid ""
"Discover @imagify, the new compression tool to optimize your images for "
@@ -1151,16 +1153,16 @@ msgstr ""
"Scopri @imagify, il nuovo strumento di compressione per ottimizzare le tue "
"immagini gratuitamente. Ho risparmiato %1$s di %2$s!"
-#: inc/functions/i18n.php:88
+#: inc/functions/i18n.php:92
msgid "Imagify is still processing. Are you sure you want to leave this page?"
msgstr ""
"Imagify sta ancora lavorando. Sei sicuro di voler abbandonare la pagina?"
-#: inc/functions/i18n.php:97
+#: inc/functions/i18n.php:101
msgid "F j, Y"
msgstr "F j, Y"
-#: inc/functions/process.php:41
+#: inc/functions/process.php:40
msgid ""
"Sorry, our servers are temporarily unaccessible. Please, try again in a "
"couple of minutes."
@@ -1168,48 +1170,29 @@ msgstr ""
"Ci scusiamo, i nostri server sono temporalmente inaccessibili. Per favore, "
"riprova fra qualche minuto."
-#: inc/functions/process.php:47
+#: inc/functions/process.php:46
msgid "External HTTP requests are blocked"
msgstr "Le richieste HTTP esterne sono bloccate"
-#: inc/functions/process.php:53
+#: inc/functions/process.php:52
msgid "File path is empty"
msgstr "Il percorso del file è vuoto"
-#: inc/functions/process.php:59
+#: inc/functions/process.php:58
#, php-format
msgid "Could not find %s"
msgstr "Impossibile trovare %s"
-#: inc/functions/process.php:64
+#: inc/functions/process.php:63
#, php-format
msgid "%s is not writable"
msgstr "%s non è riscrivibile"
-#: inc/functions/process.php:73
+#: inc/functions/process.php:72
#, php-format
msgid "Skipped (%s), image not found."
msgstr "Abbiamo saltato (%s), immagine non trovata."
-#. Plugin URI of the plugin/theme
-msgid "https://wordpress.org/plugins/imagify/"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid ""
-"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."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "WP Media"
-msgstr ""
-
-#. Author URI of the plugin/theme
-msgid "http://wp-media.me"
-msgstr ""
-
#~ msgid "Your default setting:"
#~ msgstr "Impostazioni standard:"
diff --git a/languages/imagify.pot b/languages/imagify.pot
index d75fcc7f6..ddbf2c935 100755
--- a/languages/imagify.pot
+++ b/languages/imagify.pot
@@ -1,919 +1,1157 @@
-# Loco Gettext template
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Imagify\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: Fri Feb 12 2016 15:00:09 GMT+0100 (CET)\n"
-"POT-Revision-Date: Fri Feb 19 2016 11:04:48 GMT+0100 (CET)\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: \n"
-"Language-Team: \n"
-"Language: \n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-SourceCharset: UTF-8\n"
-"X-Poedit-Basepath: .\n"
-"X-Poedit-SearchPath-0: ..\n"
-"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
-"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
-"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
-"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
-"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
-"X-Generator: Loco - https://localise.biz/"
-
-# @todo Is translation of plugin URI necessary/desirable?
-#. URI of the plugin
-msgid "https://wordpress.org/plugins/imagify"
-msgstr ""
-
-# @todo Superlatives like “most advanced” usually indicate lack of argument and immediately bring up suspicion of low quality.
-#. Description of the plugin
-msgid ""
-"Dramaticaly reduce image file sizes without loosing quality, make your "
-"website load faster, boost your SEO and save money on your bandwith using "
-"Imagify, the new most advanced image optimization tool."
-msgstr ""
-
-# @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)
-#: ../inc/admin/ajax.php:118 ../inc/admin/meta-boxes.php:29 ..
-#: /inc/functions/admin-ui.php:99 ../inc/functions/admin-ui.php:127 ..
-#: /inc/functions/admin-ui.php:133 ../inc/functions/admin-ui.php:139 ..
-#: /inc/functions/admin-ui.php:175 ../inc/functions/admin-ui.php:181
-msgid "Optimizing..."
-msgstr ""
-
-# @todo Context should be provided for translators.
-#: ../inc/admin/ajax.php:118 ../inc/admin/enqueue.php:163 ../inc/admin/meta-boxes.
-#: php:34 ../inc/functions/admin-ui.php:181
-msgid "Optimize"
-msgstr ""
-
-# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
-#: ../inc/admin/ajax.php:416
-msgid "Oops, It's almost over!"
-msgstr ""
-
-# @todo %s = 2 new lines. Problem: May not be suitable in all languages, should be inline HTML.
-#: ../inc/admin/ajax.php:417
-#, php-format
-msgid ""
-"You have almost used all your credit.%sDon't forget to upgrade your "
-"subscription to continue optimizing your images."
-msgstr ""
-
-# @todo Is this a heading? Otherwise don’t capitalize.
-#: ../inc/admin/ajax.php:418 ../inc/admin/ui/bulk.php:22
-msgid "View My Subscription"
-msgstr ""
-
-# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
-#: ../inc/admin/ajax.php:426 ../inc/admin/enqueue.php:208 ../inc/admin/ui/notices.
-#: php:251
-msgid "Oops, It's Over!"
-msgstr ""
-
-# @todo Inappropriate use of %s. Translators should be able to switch order of arguments, therefore should be %1$s and %2$s.
-#: ../inc/admin/ajax.php:427 ../inc/admin/enqueue.php:224 ../inc/admin/ui/notices.
-#: php:253
-#, php-format
-msgid ""
-"You have consumed all your credit for this month. You will have %s "
-"back on %s."
-msgstr ""
-
-# @todo Is this a heading? Otherwise don’t capitalize.
-#: ../inc/admin/ajax.php:428
-msgid "Upgrade My Subscription"
-msgstr ""
-
-# @todo Is this a heading? Then capitalize.
-#: ../inc/admin/ajax.php:447 ../inc/admin/ui/bulk.php:16
-msgid "Account status"
-msgstr ""
-
-#: ../inc/admin/ajax.php:448 ../inc/admin/ui/bulk.php:17
-msgid "Your subscription:"
-msgstr ""
-
-#: ../inc/admin/ajax.php:456 ../inc/admin/ui/bulk.php:47
-#, php-format
-msgid "You have %s space credit left"
-msgstr ""
-
-#: ../inc/admin/ajax.php:468
-msgid "View my subscription"
-msgstr ""
-
-# @todo The use of typographic apostrophes is recommended, use U+2019 (https://en.wikipedia.org/wiki/Apostrophe#Typographic_form)
-#: ../inc/admin/enqueue.php:121
-msgid "Let's get you started!"
-msgstr ""
-
-# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here.
-#: ../inc/admin/enqueue.php:122
-msgid "Enter your email to get an API key:"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:123
-msgid "Sign Up"
-msgstr ""
-
-# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here. Use period instead of exclamation mark.
-#: ../inc/admin/enqueue.php:124
-msgid "You need to specify an email!"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:125 ../inc/admin/enqueue.php:131
-msgid "Congratulations!"
-msgstr ""
-
-# @todo WordPress spells email as “e-mail”. Also “with your private API key” would add meaning.
-#: ../inc/admin/enqueue.php:126
-msgid ""
-"Your account has been succesfully created. Please check your mailbox, you "
-"are going to receive an email with API key."
-msgstr ""
-
-# @todo Exclamation mark needed? Context for translators?
-#: ../inc/admin/enqueue.php:127
-msgid "Connect to Imagify!"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:128
-msgid "Paste your API key below:"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:129
-msgid "Connect me"
-msgstr ""
-
-# @todo Should rather be something like “Validating…” to be consistent with “Optimizing…”
-#: ../inc/admin/enqueue.php:130
-msgid "Check in progress..."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:132
-msgid ""
-"Your API key is valid. You can now configure the Imagify settings to "
-"optimize your images."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:133 ../inc/admin/ui/options.php:85
-msgid "Your API key is valid."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:150
-msgid "Don't Need a Parachute?"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:151
-msgid ""
-"If you keep this option deactivated, you won't be able to re-optimize your "
-"images to another compression level and restore your original images in case "
-"of need."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:164 ../inc/functions/admin-ui.php:75
-msgid "Restore Original"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:178
-msgid "Original Image"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:179
-msgid "Optimized Image"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:180
-msgid "Compare Original VS Optimized"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:181 ../inc/admin/ui/options.php:358 ..
-#: /inc/admin/ui/options.php:480
-msgid "Close"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:182 ../inc/admin/ui/options.php:411 ..
-#: /inc/admin/ui/options.php:421 ../inc/admin/ui/options.php:441 ..
-#: /inc/admin/ui/options.php:462
-msgid "File Size:"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:183 ../inc/admin/ui/options.php:425 ..
-#: /inc/admin/ui/options.php:445 ../inc/admin/ui/options.php:466 ..
-#: /inc/functions/admin-ui.php:44
-msgid "Original Saving:"
-msgstr ""
-
-# @todo use ellipsis as 1 character (http://unicode.org/cldr/utility/character.jsp?a=2026)
-#: ../inc/admin/enqueue.php:198
-msgid "Please wait..."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:199
-msgid ""
-"We are trying to get your unoptimized images, it may take time depending on "
-"the number of images."
-msgstr ""
-
-# @todo Remove capitalization + exclamation mark.
-#: ../inc/admin/enqueue.php:201
-msgid "Oops, There is something wrong!"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:202
-msgid ""
-"An unknow error occurred when we tried to get all your unoptimized images. "
-"Try again and if the issue still persist, please contact us!"
-msgstr ""
-
-# @todo Context for translators should be provided.
-#: ../inc/admin/enqueue.php:204 ../inc/admin/upload.php:38 ../inc/admin/ui/bulk.
-#: php:257
-msgid "Optimized"
-msgstr ""
-
-# @todo Context for translators should be provided.
-#: ../inc/admin/enqueue.php:205 ../inc/admin/upload.php:39
-msgid "Unoptimized"
-msgstr ""
-
-# @todo Context for translators should be provided.
-#: ../inc/admin/enqueue.php:206
-msgid "Error"
-msgstr ""
-
-# @todo Context for translators should be provided.
-#: ../inc/admin/enqueue.php:209
-msgid "Hold on!"
-msgstr ""
-
-#: ../inc/admin/enqueue.php:210
-msgid "All your images have been optimized by Imagify. Congratulations!"
-msgstr ""
-
-# @todo Context for translators should be provided of what %1$s and %2$s represent.
-#: ../inc/admin/enqueue.php:212
-#, php-format
-msgid ""
-"Discover @imagify, the new compression tool to optimize your images for free."
-" I saved %1$s out of %2$s!"
-msgstr ""
-
-# @todo What is going to happen when user does leave the page?
-#: ../inc/admin/enqueue.php:216
-msgid "Imagify is still processing. Are you sure you want to leave this page?"
-msgstr ""
-
-# @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.
-#: ../inc/admin/enqueue.php:221 ../inc/admin/enqueue.php:224 ..
-#: /inc/admin/ui/notices.php:253
-#, php-format
-msgid ""
-"To continue to optimize your images, log in to your Imagify account to %sbuy "
-"a pack or subscribe to a plan%s."
-msgstr ""
-
-#: ../inc/admin/enqueue.php:224
-msgid "F j, Y"
-msgstr ""
-
-#: ../inc/admin/menu.php:24 ../inc/admin/menu.php:24 ../inc/admin/plugins.php:13 .
-#: ./inc/admin/ui/bulk.php:78 ../inc/common/admin-bar.php:39
-msgid "Bulk Optimization"
-msgstr ""
-
-#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:168
-msgid "Invalid API key"
-msgstr ""
-
-#: ../inc/admin/meta-boxes.php:21 ../inc/functions/admin-ui.php:170
-msgid "Check your Settings"
-msgstr ""
-
-#: ../inc/admin/options.php:107
-msgid "Cheatin’ uh?"
-msgstr ""
-
-# @todo Add meaning for users. is it important to know what an options page is? Why? Is there any action required?
-#: ../inc/admin/options.php:115
-msgid "ERROR: options page not found."
-msgstr ""
-
-#: ../inc/admin/plugins.php:14 ../inc/admin/ui/options.php:70 ../inc/common/admin-
-#: bar.php:30
-msgid "Settings"
-msgstr ""
-
-#: ../inc/admin/upload.php:40
-msgid "Errors"
-msgstr ""
-
-#: ../inc/admin/upload.php:43
-msgid "Filter by status"
-msgstr ""
-
-#: ../inc/admin/upload.php:46
-msgid "All images"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:59
-msgid "Upgrade your account to continue optimizing your images"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:63
-msgid "More info"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:88
-msgid "Information"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:90
-msgid ""
-"Please be aware that optimizing a large number of images can take a while "
-"depending on your server and network speed."
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:91
-msgid ""
-"You must keep this page open while the bulk optimizaton is processing. If "
-"you leave you can come back to continue where it left off."
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:99
-msgid "Select Your Compression Level"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:102 ../inc/admin/ui/bulk.php:130 ..
-#: /inc/admin/ui/options.php:129 ../inc/admin/ui/options.php:319 ..
-#: /inc/admin/ui/options.php:382 ../inc/admin/ui/options.php:399 ..
-#: /inc/admin/ui/options.php:459 ../inc/classes/class-attachment.php:135 ..
-#: /inc/functions/admin-ui.php:127
-msgid "Ultra"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:105 ../inc/admin/ui/bulk.php:125 ..
-#: /inc/admin/ui/options.php:124 ../inc/admin/ui/options.php:331 ..
-#: /inc/admin/ui/options.php:381 ../inc/admin/ui/options.php:394 ..
-#: /inc/admin/ui/options.php:438 ../inc/classes/class-attachment.php:138 ..
-#: /inc/functions/admin-ui.php:133
-msgid "Aggressive"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:108 ../inc/admin/ui/bulk.php:120 ..
-#: /inc/admin/ui/options.php:119 ../inc/admin/ui/options.php:343 ..
-#: /inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:389 ..
-#: /inc/admin/ui/options.php:418 ../inc/classes/class-attachment.php:141 ..
-#: /inc/functions/admin-ui.php:139
-msgid "Normal"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:112
-msgid "Your default setting:"
-msgstr ""
-
-# @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.
-#: ../inc/admin/ui/bulk.php:139
-#, php-format
-msgid "Don't forget to check %syour settings%s before bulk optimization."
-msgstr ""
-
-# @todo Use typographical apostrophe.
-#: ../inc/admin/ui/bulk.php:149
-msgid "Imagif'em all"
-msgstr ""
-
-# @todo Context for translators. Also, “over to”?
-#: ../inc/admin/ui/bulk.php:156
-#, php-format
-msgid "All images which are over to %s could be optimized using the pro version."
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:167
-msgid "Overview"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:177
-msgid "Statistics"
-msgstr ""
-
-# @todo Use typographical apostrophe. Why isn’t the string constructed with an argument (%s) that represents a value?
-#: ../inc/admin/ui/bulk.php:189
-msgid "that's the number of images you optimized with Imagify"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:194
-msgid "Original size"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:199
-msgid "Optimized size"
-msgstr ""
-
-# @todo New lines should not be added via argument, but via inline HTML.
-#: ../inc/admin/ui/bulk.php:210
-#, php-format
-msgid "that's the size you saved %sby using Imagify"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:230
-msgid "Well done!"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:231
-#, php-format
-msgid "you saved %1$s out of %2$s"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:236
-msgid "Share your awesome result"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:251
-msgid "Compression process results"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:254
-msgid "Filename"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:255
-msgid "Status"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:256 ../inc/admin/ui/options.php:379 ..
-#: /inc/admin/ui/options.php:384 ../inc/admin/ui/options.php:408
-msgid "Original"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:258
-msgid "Percentage"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:259
-msgid "Thumbnails optimized"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:260
-msgid "Overall saving"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:265
-msgid "file"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:266
-msgid "error"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:267
-msgid "Total:"
-msgstr ""
-
-#: ../inc/admin/ui/bulk.php:268
-msgid "Gain:"
-msgstr ""
-
-# @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.
-#: ../inc/admin/ui/bulk.php:285
-#, php-format
-msgid "%sStart the bulk optimization%s"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:23
-msgid "Welcome to Imagify, the best way to easily optimize your images!"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:25 ../inc/admin/ui/notices.php:25 ..
-#: /inc/admin/ui/notices.php:90 ../inc/admin/ui/notices.php:90 ..
-#: /inc/admin/ui/notices.php:181 ../inc/admin/ui/notices.php:181 ..
-#: /inc/admin/ui/notices.php:217 ../inc/admin/ui/notices.php:217 ..
-#: /inc/admin/ui/notices.php:256 ../inc/admin/ui/notices.php:256
-msgid "Dismiss this notice"
-msgstr ""
-
-# @todo Probably don’t capitalize.
-#: ../inc/admin/ui/notices.php:32
-msgid "Create an Account"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:33
-msgid ""
-"Don't have an Imagify account yet? Optimize your images by creating an "
-"account in a few seconds!"
-msgstr ""
-
-# @todo “it’s” should not be capitalized.
-#: ../inc/admin/ui/notices.php:36
-msgid "Sign up, It's FREE!"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:42
-msgid "Enter your API Key"
-msgstr ""
-
-# @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”.
-#: ../inc/admin/ui/notices.php:43
-#, php-format
-msgid ""
-"Save your API Key you have received by email or you can get it on your "
-"%sImagify account page%s."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:46
-msgid "I have my API key"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:52
-msgid "Configure it"
-msgstr ""
-
-# @todo “You just have to”. Better “Just configure a few optimization settings.”
-#: ../inc/admin/ui/notices.php:53
-msgid "It’s almost done! You have just to configure your optimization settings."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:54
-msgid "Go to Settings"
-msgstr ""
-
-# @todo . instead of !
-#: ../inc/admin/ui/notices.php:85 ../inc/admin/ui/options.php:91
-msgid "Your API key isn't valid!"
-msgstr ""
-
-# @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.
-#: ../inc/admin/ui/notices.php:88
-#, php-format
-msgid ""
-"Go to your Imagify account page to get your API Key and specify it on "
-"%1$syour settings%3$s or %2$screate an account for free%3$s if you don't "
-"have one yet."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:138
-msgid ""
-"The following plugins are not compatible with this plugin and may cause "
-"unexpected results:"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:144
-msgid "Deactivate"
-msgstr ""
-
-# @todo . instead of !
-#: ../inc/admin/ui/notices.php:173
-msgid "The external HTTP requests are blocked!"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:174
-msgid ""
-"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
-"config.php
to block all external HTTP requests."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:176
-msgid ""
-"To optimize your images, you have to put the following code in your wp-"
-"config.php
file so that it works correctly."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:177
-msgid "Click on the field and press Ctrl-A to select all."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:213
-msgid "You're missing out!"
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:214
-msgid "Use the List view to optimize images with Imagify."
-msgstr ""
-
-#: ../inc/admin/ui/notices.php:215
-msgid "Switch to the List View"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:18
-msgid "Is your website too slow?"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:24
-msgid "Discover the best caching plugin to speed up your website."
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:32
-#, php-format
-msgid "%sGet %s off%s with this coupon code:%s"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:37
-msgid "Get WP Rocket now"
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:55
-#, php-format
-msgid ""
-"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
-"WordPress.org%s!"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:78
-msgid "API Key"
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:98
-#, php-format
-msgid "Don't have an API Key yet? %sCreate one, it's FREE%s."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:114
-msgid "Optimization Level"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:134
-msgid "More info?"
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:141
-#, php-format
-msgid "Need help to choose? %sTry the Visual Comparison%s"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:150 ../inc/admin/ui/options.php:154
-msgid "Auto-Optimize images on upload"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:158
-msgid "Automatically optimize every image you upload to WordPress."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:163 ../inc/admin/ui/options.php:166
-msgid "Backup original images"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:170
-msgid "Keep your original images in a separate folder before optimization process."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:175 ../inc/admin/ui/options.php:178
-msgid "Resize larger images"
-msgstr ""
-
-# @todo Always keep messages intact. This message looks split up.
-#: ../inc/admin/ui/options.php:184
-#, php-format
-msgid "to maximum %s pixels width"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:195
-#, php-format
-msgid ""
-"This option is recommended to reduce larger images. You can save up to 80%% "
-"after resizing. The new width should not be less than your largest thumbnail "
-"width, which is actually %spx."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:202 ../inc/admin/ui/options.php:205
-msgid "EXIF Data"
-msgstr ""
-
-# @todo Use typographical ellipisis
-#: ../inc/admin/ui/options.php:209
-msgid ""
-"Keep all EXIF data from your images. EXIF are informations stored in your "
-"pictures like shutter speed, exposure compensation, ISO, etc..."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:210
-msgid "Learn more"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:212
-msgid ""
-"If you are a photographer, you may be interested in this option if you are "
-"displaying on your pages some info like the model of your camera."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:221
-msgid "Files optimization"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:224
-msgid "You can choose to compress different image sizes created by WordPress here."
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:226
-#, php-format
-msgid "The %soriginal size%s is %sautomatically optimized%s by Imagify."
-msgstr ""
-
-# @todo . instead of !
-#: ../inc/admin/ui/options.php:229
-msgid "Remember each additional image size will affect your Imagify monthly usage!"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:282
-msgid "Display options"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:287 ../inc/admin/ui/options.php:292
-msgid "Show Admin Bar menu"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:293
-msgid "I want this awesome quick access menu on my admin bar."
-msgstr ""
-
-# @todo Links should be implemented as inline HTML with placeholders for URLs.
-#: ../inc/admin/ui/options.php:308
-#, php-format
-msgid ""
-"Once your settings saved, optimize all your images by using the %sImagify "
-"Bulk Optimization%s feature."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:316
-msgid "You can choose three levels of compression"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:321
-msgid ""
-"This mode will apply all available optimizations for maximum image "
-"compression."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:324
-msgid ""
-"This will provide a huge savings on the initial weight. Sometimes the image "
-"quality could be degraded a little."
-msgstr ""
-
-# @todo Always keep messages intact. This message looks split up.
-#: ../inc/admin/ui/options.php:327
-msgid ""
-"If you want the maximum weight reduction, and you agree to lose some quality "
-"on the images we recommend using this mode."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:333
-msgid ""
-"This mode provides perfect optimization of your images without any "
-"significant quality loss."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:336
-msgid ""
-"This will provide a drastic savings on the initial weight, with a small "
-"reduction in image quality. Most of the time it's not even noticeable."
-msgstr ""
-
-# @todo Always keep messages intact. This message looks split up.
-#: ../inc/admin/ui/options.php:339
-msgid "If you want the maximum weight reduction, we recommend using this mode."
-msgstr ""
-
-#: ../inc/admin/ui/options.php:345
-msgid ""
-"This mode provides lossless optimization, your images will be optimized "
-"without any visible change."
-msgstr ""
-
-# @todo Always keep messages intact. This message looks split up.
-#: ../inc/admin/ui/options.php:348
-msgid "If you want the perfect quality for your images, we recommend you that mode."
-msgstr ""
-
-# @todo Always keep messages intact. This message looks split up.
-#: ../inc/admin/ui/options.php:351
-msgid "Note: the file size reduction will be less, compared to aggressive mode."
-msgstr ""
-
-# @todo Should be numerated arguments + context for translators.
-#: ../inc/admin/ui/options.php:370
-#, php-format
-msgid "I want to compare%s and%s"
-msgstr ""
-
-# @todo %s is what?
-#: ../inc/admin/ui/options.php:387
-#, php-format
-msgid "Original photography about %s"
-msgstr ""
-
-# @todo %s is what?
-#: ../inc/admin/ui/options.php:392 ../inc/admin/ui/options.php:397 ..
-#: /inc/admin/ui/options.php:402
-#, php-format
-msgid "Optimized photography about %s"
-msgstr ""
-
-#: ../inc/admin/ui/options.php:407 ../inc/admin/ui/options.php:417 ..
-#: /inc/admin/ui/options.php:437 ../inc/admin/ui/options.php:458 ..
-#: /inc/functions/admin-ui.php:58
-msgid "Level:"
-msgstr ""
-
-# @todo Use typographical apostrophe.
-#: ../inc/classes/class-attachment.php:520
-msgid ""
-"This size isn't authorized to be optimized. Update your Imagify settings if "
-"you want to optimize it."
-msgstr ""
-
-# @todo %s is what?
-#: ../inc/common/admin-bar.php:48
-#, php-format
-msgid "Rate Imagify on %s"
-msgstr ""
-
-# @todo Use typographical ellipsis.
-#: ../inc/common/admin-bar.php:57
-msgid "Loading..."
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:35
-msgid "New Filesize:"
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:51
-msgid "Close details"
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:51 ../inc/functions/admin-ui.php:51
-msgid "View details"
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:55
-msgid "Original Filesize:"
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:61
-msgid "Thumbnails Optimized:"
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:62
-msgid "Overall Saving:"
-msgstr ""
-
-# @todo Use typographical ellipsis.
-#: ../inc/functions/admin-ui.php:75
-msgid "Restoring..."
-msgstr ""
-
-#: ../inc/functions/admin-ui.php:99
-msgid "Try again"
-msgstr ""
-
-# @todo %s is what? Also “Re-optimize” (not capitalized)
-#: ../inc/functions/admin-ui.php:127 ../inc/functions/admin-ui.php:133 ..
-#: /inc/functions/admin-ui.php:139
-#, php-format
-msgid "Re-Optimize to %s"
-msgstr ""
-
-# @todo %s is what?
-#: ../inc/functions/admin-ui.php:162
-#, php-format
-msgid "%s can't be optimized"
-msgstr ""
-
-#: ../inc/functions/process.php:30
-msgid ""
-"Sorry, our servers are temporarily unaccessible. Please, try again in a "
-"couple of minutes."
-msgstr ""
-
-#: ../inc/functions/process.php:36
-msgid "External HTTP requests are blocked"
-msgstr ""
-
-#: ../inc/functions/process.php:42
-msgid "File path is empty"
-msgstr ""
-
-#: ../inc/functions/process.php:48
-#, php-format
-msgid "Could not find %s"
-msgstr ""
-
-#: ../inc/functions/process.php:53
-#, php-format
-msgid "%s is not writable"
-msgstr ""
-
-# @todo %s is what?
-#: ../inc/functions/process.php:62
-#, php-format
-msgid "Skipped (%s), image not found."
-msgstr ""
+# Loco Gettext template
+msgid ""
+msgstr ""
+"Project-Id-Version: Imagify\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-09-23 10:02-0500\n"
+"PO-Revision-Date: 2016-09-23 10:02-0500\n"
+"Last-Translator: Rémy Perona \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"POT-Revision-Date: Fri Feb 19 2016 11:04:48 GMT+0100 (CET)\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
+"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
+"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
+"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
+"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
+"X-Generator: Poedit 1.6.4\n"
+"X-Poedit-SearchPath-0: ..\n"
+
+# @todo Context should be provided for translators.
+#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:20
+#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:34
+#: ../inc/functions/admin-ui.php:215 ../inc/functions/i18n.php:49
+#: ../inc/functions/i18n.php:64
+msgid "Optimize"
+msgstr ""
+
+#: ../inc/3rd-party/nextgen-gallery/inc/admin/enqueue.php:21
+#: ../inc/functions/admin-ui.php:80 ../inc/functions/i18n.php:50
+msgid "Restore Original"
+msgstr ""
+
+#: ../inc/3rd-party/nextgen-gallery/inc/admin/menu.php:16
+#: ../inc/admin/menu.php:24 ../inc/admin/plugins.php:13
+#: ../inc/admin/ui/bulk.php:81 ../inc/common/admin-bar.php:39
+msgid "Bulk Optimization"
+msgstr ""
+
+# @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)
+#: ../inc/admin/ajax.php:123 ../inc/admin/meta-boxes.php:29
+#: ../inc/functions/admin-ui.php:121 ../inc/functions/admin-ui.php:153
+#: ../inc/functions/admin-ui.php:159 ../inc/functions/admin-ui.php:165
+#: ../inc/functions/admin-ui.php:205 ../inc/functions/admin-ui.php:215
+msgid "Optimizing..."
+msgstr ""
+
+# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
+#: ../inc/admin/ajax.php:507
+msgid "Oops, It's almost over!"
+msgstr ""
+
+# @todo %s = 2 new lines. Problem: May not be suitable in all languages, should be inline HTML.
+#: ../inc/admin/ajax.php:508
+#, php-format
+msgid ""
+"You have almost used all your credit.%sDon't forget to upgrade your "
+"subscription to continue optimizing your images."
+msgstr ""
+
+# @todo Is this a heading? Otherwise don’t capitalize.
+#: ../inc/admin/ajax.php:509 ../inc/admin/ui/bulk.php:23
+msgid "View My Subscription"
+msgstr ""
+
+# @todo Typo (capitalization). Also let’s use exclamation marks sparely, they’re not as common in English as they are in French or German.
+#: ../inc/admin/ajax.php:517 ../inc/admin/ui/notices.php:258
+#: ../inc/functions/i18n.php:84
+msgid "Oops, It's Over!"
+msgstr ""
+
+# @todo Inappropriate use of %s. Translators should be able to switch order of arguments, therefore should be %1$s and %2$s.
+#: ../inc/admin/ajax.php:518 ../inc/admin/ui/notices.php:260
+#: ../inc/functions/i18n.php:101
+#, php-format
+msgid ""
+"You have consumed all your credit for this month. You will have %s "
+"back on %s."
+msgstr ""
+
+# @todo Is this a heading? Otherwise don’t capitalize.
+#: ../inc/admin/ajax.php:519
+msgid "Upgrade My Subscription"
+msgstr ""
+
+# @todo Is this a heading? Then capitalize.
+#: ../inc/admin/ajax.php:538 ../inc/admin/ui/bulk.php:17
+msgid "Account status"
+msgstr ""
+
+#: ../inc/admin/ajax.php:539 ../inc/admin/ui/bulk.php:18
+msgid "Your subscription:"
+msgstr ""
+
+#: ../inc/admin/ajax.php:547 ../inc/admin/ui/bulk.php:48
+#, php-format
+msgid "You have %s space credit left"
+msgstr ""
+
+#: ../inc/admin/ajax.php:559
+msgid "View my subscription"
+msgstr ""
+
+#: ../inc/admin/media.php:63 ../inc/functions/i18n.php:60
+msgid "Compare Original VS Optimized"
+msgstr ""
+
+#: ../inc/admin/meta-boxes.php:17 ../inc/admin/meta-boxes.php:24
+#: ../inc/admin/upload.php:12
+msgid "Imagify"
+msgstr ""
+
+#: ../inc/admin/meta-boxes.php:19 ../inc/functions/admin-ui.php:195
+msgid "Invalid API key"
+msgstr ""
+
+#: ../inc/admin/meta-boxes.php:21 ../inc/functions/admin-ui.php:197
+msgid "Check your Settings"
+msgstr ""
+
+#: ../inc/admin/options.php:119
+msgid "Cheatin’ uh?"
+msgstr ""
+
+# @todo Add meaning for users. is it important to know what an options page is? Why? Is there any action required?
+#: ../inc/admin/options.php:127
+msgid "ERROR: options page not found."
+msgstr ""
+
+#: ../inc/admin/plugins.php:14 ../inc/admin/ui/options.php:74
+#: ../inc/common/admin-bar.php:30
+msgid "Settings"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:60
+msgid "Upgrade your account to continue optimizing your images"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:64
+msgid "More info"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:91
+msgid "Overview"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:99
+#, php-format
+msgid "You optimized %s images of your website"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:103
+msgid "Statistics"
+msgstr ""
+
+# @todo Use typographical apostrophe. Why isn’t the string constructed with an argument (%s) that represents a value?
+#: ../inc/admin/ui/bulk.php:115
+msgid "that's the number of images you optimized with Imagify"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:120
+msgid "Original size"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:125
+msgid "Optimized size"
+msgstr ""
+
+# @todo New lines should not be added via argument, but via inline HTML.
+#: ../inc/admin/ui/bulk.php:136
+#, php-format
+msgid "that's the size you saved %sby using Imagify"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:142
+msgid "Information"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:146
+msgid ""
+"Please be aware that optimizing a large number of images can take a while "
+"depending on your server and network speed."
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:149
+#, php-format
+msgid ""
+"If you have more than %s images, you will need to launch the bulk "
+"optimization several times."
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:153
+msgid ""
+"You must keep this page open while the bulk optimizaton is processing. If "
+"you leave you can come back to continue where it left off."
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:164
+msgid "Select Your Compression Level"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:166 ../inc/admin/ui/bulk.php:192
+#: ../inc/admin/ui/options.php:136 ../inc/admin/ui/options.php:365
+#: ../inc/admin/ui/options.php:404 ../inc/admin/ui/options.php:421
+#: ../inc/admin/ui/options.php:481
+#: ../inc/classes/abstracts/abstract-attachment.php:114
+#: ../inc/functions/admin-ui.php:153
+msgid "Ultra"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:169 ../inc/admin/ui/bulk.php:187
+#: ../inc/admin/ui/options.php:131 ../inc/admin/ui/options.php:352
+#: ../inc/admin/ui/options.php:403 ../inc/admin/ui/options.php:416
+#: ../inc/admin/ui/options.php:460
+#: ../inc/classes/abstracts/abstract-attachment.php:117
+#: ../inc/functions/admin-ui.php:159
+msgid "Aggressive"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:172 ../inc/admin/ui/bulk.php:182
+#: ../inc/admin/ui/options.php:126 ../inc/admin/ui/options.php:339
+#: ../inc/admin/ui/options.php:402 ../inc/admin/ui/options.php:411
+#: ../inc/admin/ui/options.php:440
+#: ../inc/classes/abstracts/abstract-attachment.php:120
+#: ../inc/functions/admin-ui.php:165
+msgid "Normal"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:176
+#, php-format
+msgid "Your default setting: %s"
+msgstr ""
+
+# @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.
+#: ../inc/admin/ui/bulk.php:201
+#, php-format
+msgid "Don't forget to check %syour settings%s before bulk optimization."
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:208
+msgid "Let's go!"
+msgstr ""
+
+# @todo Use typographical apostrophe.
+#: ../inc/admin/ui/bulk.php:215
+msgid "Imagif'em all"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:220
+#, php-format
+msgid "All images greater than %s will be optimized when using a paid plan."
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:239
+msgid "Well done!"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:240
+#, php-format
+msgid "you saved %1$s out of %2$s"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:245
+msgid "Share your awesome result"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:260
+msgid "Compression process results"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:263
+msgid "Filename"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:264
+msgid "Status"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:265 ../inc/admin/ui/options.php:401
+#: ../inc/admin/ui/options.php:406 ../inc/admin/ui/options.php:430
+msgid "Original"
+msgstr ""
+
+# @todo Context for translators should be provided.
+#: ../inc/admin/ui/bulk.php:266 ../inc/admin/upload.php:41
+#: ../inc/functions/i18n.php:80
+msgid "Optimized"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:267
+msgid "Percentage"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:268
+msgid "Thumbnails optimized"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:269
+msgid "Overall saving"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:274
+msgid "file"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:275
+msgid "error"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:276
+msgid "Total:"
+msgstr ""
+
+#: ../inc/admin/ui/bulk.php:277
+msgid "Gain:"
+msgstr ""
+
+# @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.
+#: ../inc/admin/ui/bulk.php:294
+#, php-format
+msgid "%sStart the bulk optimization%s"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:24
+msgid "Welcome to Imagify, the best way to easily optimize your images!"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:26 ../inc/admin/ui/notices.php:92
+#: ../inc/admin/ui/notices.php:186 ../inc/admin/ui/notices.php:223
+#: ../inc/admin/ui/notices.php:263 ../inc/admin/ui/notices.php:370
+msgid "Dismiss this notice"
+msgstr ""
+
+# @todo Probably don’t capitalize.
+#: ../inc/admin/ui/notices.php:33
+msgid "Create an Account"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:34
+msgid ""
+"Don't have an Imagify account yet? Optimize your images by creating an "
+"account in a few seconds!"
+msgstr ""
+
+# @todo “it’s” should not be capitalized.
+#: ../inc/admin/ui/notices.php:37
+msgid "Sign up, It's FREE!"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:43
+msgid "Enter your API Key"
+msgstr ""
+
+# @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”.
+#: ../inc/admin/ui/notices.php:44
+#, php-format
+msgid ""
+"Save your API Key you have received by email or you can get it on your "
+"%sImagify account page%s."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:47
+msgid "I have my API key"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:53
+msgid "Configure it"
+msgstr ""
+
+# @todo “You just have to”. Better “Just configure a few optimization settings.”
+#: ../inc/admin/ui/notices.php:54
+msgid ""
+"It’s almost done! You have just to configure your optimization settings."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:55
+msgid "Go to Settings"
+msgstr ""
+
+# @todo . instead of !
+#: ../inc/admin/ui/notices.php:87 ../inc/admin/ui/options.php:97
+#: ../inc/functions/i18n.php:78
+msgid "Your API key isn't valid!"
+msgstr ""
+
+# @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.
+#: ../inc/admin/ui/notices.php:90
+#, php-format
+msgid ""
+"Go to your Imagify account page to get your API Key and specify it on "
+"%1$syour settings%3$s or %2$screate an account for free%3$s if you don't "
+"have one yet."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:142
+msgid ""
+"The following plugins are not compatible with this plugin and may cause "
+"unexpected results:"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:148
+msgid "Deactivate"
+msgstr ""
+
+# @todo . instead of !
+#: ../inc/admin/ui/notices.php:178
+msgid "The external HTTP requests are blocked!"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:179
+msgid ""
+"You defined the WP_HTTP_BLOCK_EXTERNAL
constant in the wp-"
+"config.php
to block all external HTTP requests."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:181
+msgid ""
+"To optimize your images, you have to put the following code in your wp-"
+"config.php
file so that it works correctly."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:182
+msgid "Click on the field and press Ctrl-A to select all."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:219
+msgid "You're missing out!"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:220
+msgid "Use the List view to optimize images with Imagify."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:221
+msgid "Switch to the List View"
+msgstr ""
+
+# @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.
+#: ../inc/admin/ui/notices.php:260 ../inc/functions/i18n.php:98
+#: ../inc/functions/i18n.php:101
+#, php-format
+msgid ""
+"To continue to optimize your images, log in to your Imagify account to %sbuy "
+"a pack or subscribe to a plan%s."
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:314 ../inc/admin/ui/options.php:28
+msgid "Discover the best caching plugin to speed up your website."
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/notices.php:317 ../inc/admin/ui/options.php:36
+#, php-format
+msgid "%sGet %s off%s with this coupon code:%s"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:326 ../inc/admin/ui/options.php:41
+msgid "Get WP Rocket now"
+msgstr ""
+
+#: ../inc/admin/ui/notices.php:363
+#, php-format
+msgid ""
+"%1$sCongratulations%2$s, you have optimized %1$s%3$d images%2$s and improved "
+"your website's speed by reducing your images size."
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/notices.php:365 ../inc/admin/ui/options.php:59
+#, php-format
+msgid ""
+"%sDo you like this plugin?%s Please take a few seconds to %srate it on "
+"WordPress.org%s!"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:22
+msgid "Is your website too slow?"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:84
+msgid "API Key"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:91 ../inc/functions/i18n.php:33
+msgid "Your API key is valid."
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/options.php:104
+#, php-format
+msgid "Don't have an API Key yet? %sCreate one, it's FREE%s."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:121
+msgid "Optimization Level"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:141
+msgid "More info?"
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/options.php:148
+#, php-format
+msgid "Need help to choose? %sTry the Visual Comparison%s"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:157 ../inc/admin/ui/options.php:161
+msgid "Auto-Optimize images on upload"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:165
+msgid "Automatically optimize every image you upload to WordPress."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:170 ../inc/admin/ui/options.php:173
+msgid "Backup original images"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:177
+msgid ""
+"Keep your original images in a separate folder before optimization process."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:182 ../inc/admin/ui/options.php:185
+msgid "Resize larger images"
+msgstr ""
+
+# @todo Always keep messages intact. This message looks split up.
+#: ../inc/admin/ui/options.php:191
+#, php-format
+msgid "to maximum %s pixels width"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:202
+#, php-format
+msgid ""
+"This option is recommended to reduce larger images. You can save up to 80%% "
+"after resizing. The new width should not be less than your largest thumbnail "
+"width, which is actually %spx."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:209 ../inc/admin/ui/options.php:212
+msgid "EXIF Data"
+msgstr ""
+
+# @todo Use typographical ellipisis
+#: ../inc/admin/ui/options.php:216
+msgid ""
+"Keep all EXIF data from your images. EXIF are informations stored in your "
+"pictures like shutter speed, exposure compensation, ISO, etc..."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:217
+msgid "Learn more"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:219
+msgid ""
+"If you are a photographer, you may be interested in this option if you are "
+"displaying on your pages some info like the model of your camera."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:228
+msgid "Files optimization"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:231
+msgid ""
+"You can choose to compress different image sizes created by WordPress here."
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/options.php:233
+#, php-format
+msgid "The %soriginal size%s is %sautomatically optimized%s by Imagify."
+msgstr ""
+
+# @todo . instead of !
+#: ../inc/admin/ui/options.php:236
+msgid ""
+"Remember each additional image size will affect your Imagify monthly usage!"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:289
+msgid "Display options"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:294 ../inc/admin/ui/options.php:299
+msgid "Show Admin Bar menu"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:300
+msgid "I want this awesome quick access menu on my admin bar."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:319
+msgid "Save & Go to Bulk Optimizer"
+msgstr ""
+
+# @todo Links should be implemented as inline HTML with placeholders for URLs.
+#: ../inc/admin/ui/options.php:328
+#, php-format
+msgid ""
+"Once your settings saved, optimize all your images by using the %sImagify "
+"Bulk Optimization%s feature."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:336
+msgid "You can choose three levels of compression"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:341
+msgid ""
+"This mode provides lossless optimization, your images will be optimized "
+"without any visible change."
+msgstr ""
+
+# @todo Always keep messages intact. This message looks split up.
+#: ../inc/admin/ui/options.php:344
+msgid ""
+"If you want the perfect quality for your images, we recommend you that mode."
+msgstr ""
+
+# @todo Always keep messages intact. This message looks split up.
+#: ../inc/admin/ui/options.php:347
+msgid ""
+"Note: the file size reduction will be less, compared to aggressive mode."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:354
+msgid ""
+"This mode provides perfect optimization of your images without any "
+"significant quality loss."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:357
+msgid ""
+"This will provide a drastic savings on the initial weight, with a small "
+"reduction in image quality. Most of the time it's not even noticeable."
+msgstr ""
+
+# @todo Always keep messages intact. This message looks split up.
+#: ../inc/admin/ui/options.php:360
+msgid "If you want the maximum weight reduction, we recommend using this mode."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:367
+msgid ""
+"This mode will apply all available optimizations for maximum image "
+"compression."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:370
+msgid ""
+"This will provide a huge savings on the initial weight. Sometimes the image "
+"quality could be degraded a little."
+msgstr ""
+
+# @todo Always keep messages intact. This message looks split up.
+#: ../inc/admin/ui/options.php:373
+msgid ""
+"If you want the maximum weight reduction, and you agree to lose some quality "
+"on the images we recommend using this mode."
+msgstr ""
+
+#: ../inc/admin/ui/options.php:380 ../inc/admin/ui/options.php:502
+#: ../inc/functions/admin-ui.php:662 ../inc/functions/i18n.php:61
+msgid "Close"
+msgstr ""
+
+# @todo Should be numerated arguments + context for translators.
+#: ../inc/admin/ui/options.php:392
+#, php-format
+msgid "I want to compare%s and%s"
+msgstr ""
+
+# @todo %s is what?
+#: ../inc/admin/ui/options.php:409
+#, php-format
+msgid "Original photography about %s"
+msgstr ""
+
+# @todo %s is what?
+#: ../inc/admin/ui/options.php:414 ../inc/admin/ui/options.php:419
+#: ../inc/admin/ui/options.php:424
+#, php-format
+msgid "Optimized photography about %s"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:429 ../inc/admin/ui/options.php:439
+#: ../inc/admin/ui/options.php:459 ../inc/admin/ui/options.php:480
+#: ../inc/functions/admin-ui.php:59
+msgid "Level:"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:433 ../inc/admin/ui/options.php:443
+#: ../inc/admin/ui/options.php:463 ../inc/admin/ui/options.php:484
+#: ../inc/functions/i18n.php:62
+msgid "File Size:"
+msgstr ""
+
+#: ../inc/admin/ui/options.php:447 ../inc/admin/ui/options.php:467
+#: ../inc/admin/ui/options.php:488 ../inc/functions/admin-ui.php:45
+#: ../inc/functions/i18n.php:63
+msgid "Original Saving:"
+msgstr ""
+
+# @todo Context for translators should be provided.
+#: ../inc/admin/upload.php:42 ../inc/functions/i18n.php:81
+msgid "Unoptimized"
+msgstr ""
+
+#: ../inc/admin/upload.php:43
+msgid "Errors"
+msgstr ""
+
+#: ../inc/admin/upload.php:46
+msgid "Filter by status"
+msgstr ""
+
+#: ../inc/admin/upload.php:49
+msgid "All images"
+msgstr ""
+
+# @todo Use typographical apostrophe.
+#: ../inc/classes/class-attachment.php:297
+msgid ""
+"This size isn't authorized to be optimized. Update your Imagify settings if "
+"you want to optimize it."
+msgstr ""
+
+# @todo %s is what?
+#: ../inc/common/admin-bar.php:48
+#, php-format
+msgid "Rate Imagify on %s"
+msgstr ""
+
+# @todo Use typographical ellipsis.
+#: ../inc/common/admin-bar.php:61
+msgid "Loading..."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:36
+msgid "New Filesize:"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:52
+msgid "Close details"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:52
+msgid "View details"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:56
+msgid "Original Filesize:"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:62
+msgid "Thumbnails Optimized:"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:63
+msgid "Overall Saving:"
+msgstr ""
+
+# @todo Use typographical ellipsis.
+#: ../inc/functions/admin-ui.php:80
+msgid "Restoring..."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:121
+msgid "Try again"
+msgstr ""
+
+# @todo %s is what? Also “Re-optimize” (not capitalized)
+#: ../inc/functions/admin-ui.php:153 ../inc/functions/admin-ui.php:159
+#: ../inc/functions/admin-ui.php:165
+#, php-format
+msgid "Re-Optimize to %s"
+msgstr ""
+
+# @todo %s is what?
+#: ../inc/functions/admin-ui.php:189
+#, php-format
+msgid "%s can't be optimized"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:240
+msgid "What plan do I need?"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:244
+msgid "You're new to Imagify?"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:245
+msgid ""
+"Let us help you by analyzing your existing images and determinate the best "
+"plan for you"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:280
+msgid "Choose Plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:281
+msgid "Payment Info"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:286
+msgid "We analysed your images"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:292
+#, php-format
+msgid "You have %s images"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:298
+#, php-format
+msgid "You actually have %s of images in your library."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:302
+#, php-format
+msgid "You upload around %s of images per month."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:309
+msgid "We recommend you this plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:314
+msgid "Subscribe a monthly plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:315
+msgid "Subscribe a yearly plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:319 ../inc/functions/admin-ui.php:455
+#: ../inc/functions/admin-ui.php:623
+msgid "Monthly"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
+msgid "Yearly"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:322 ../inc/functions/admin-ui.php:458
+#: ../inc/functions/admin-ui.php:626
+msgid "2 months free"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:333 ../inc/functions/admin-ui.php:352
+#: ../inc/functions/admin-ui.php:468 ../inc/functions/admin-ui.php:478
+msgid "/month"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:335 ../inc/functions/admin-ui.php:383
+#: ../inc/functions/admin-ui.php:470 ../inc/functions/admin-ui.php:521
+#, php-format
+msgid "approx: %s images"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:356 ../inc/functions/admin-ui.php:484
+#, php-format
+msgid ""
+"%s per
\n"
+"additionnal Gb"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:361 ../inc/functions/admin-ui.php:396
+#: ../inc/functions/admin-ui.php:580 ../inc/functions/admin-ui.php:601
+msgid "Choose another plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:371
+msgid "Optimize the images you already have, buy a one-time plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:407
+msgid "Checkout"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:411
+msgid ""
+"Monthly plans comes with credits which is renewed every months. The billing "
+"happens automatically each month or year depending the billing period you "
+"choose."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:435
+msgid "Monthly Plans"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:440
+msgid "One Time Plans"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:450
+msgid ""
+"Monthly plans come with credits which is renewed every months. The billing "
+"happens automatically each month or year depending the billing period you "
+"choose."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:482 ../inc/functions/admin-ui.php:529
+msgid "we recommend for you"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:490 ../inc/functions/admin-ui.php:533
+msgid "Choose plan"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:498
+msgid "Need more?"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:499
+msgid "for special needs"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:503
+msgid "Contact Us"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:510
+msgid ""
+"One time plans are useful if you have a lots of existing images which need "
+"to be optimized. You can use it for bulk optimizing all your past images. "
+"You will pay only once."
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:563
+msgid "Your order"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:568
+#, php-format
+msgid "%scancel%sYou just removed %s"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:576 ../inc/functions/admin-ui.php:597
+msgid "Remove this item"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:583
+#, php-format
+msgid "%s per month"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:604
+#, php-format
+msgid "one time %s"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:617
+#, php-format
+msgid ""
+"Switch to yearly subscription and
save %s "
+"per year!"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:618
+#, php-format
+msgid ""
+"Perfect!
You're saving %s per year!"
+"strong>"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:657
+msgid "Thank you for being awesome!"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:668
+msgid "What do our user think about Imagify"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:702
+msgid "Secure Credit Card Payment"
+msgstr ""
+
+#: ../inc/functions/admin-ui.php:703
+msgid "This is secure 128-bits SSL encrypted payment"
+msgstr ""
+
+# @todo The use of typographic apostrophes is recommended, use U+2019 (https://en.wikipedia.org/wiki/Apostrophe#Typographic_form)
+#: ../inc/functions/i18n.php:20
+msgid "Let's get you started!"
+msgstr ""
+
+# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here.
+#: ../inc/functions/i18n.php:21
+msgid "Enter your email to get an API key:"
+msgstr ""
+
+#: ../inc/functions/i18n.php:22
+msgid "Sign Up"
+msgstr ""
+
+# @todo WordPress spells email as “e-mail”. Also “e-mail address” would be more appropriate here. Use period instead of exclamation mark.
+#: ../inc/functions/i18n.php:23
+msgid "You need to specify an email!"
+msgstr ""
+
+#: ../inc/functions/i18n.php:24 ../inc/functions/i18n.php:31
+msgid "Congratulations!"
+msgstr ""
+
+# @todo WordPress spells email as “e-mail”. Also “with your private API key” would add meaning.
+#: ../inc/functions/i18n.php:25
+msgid ""
+"Your account has been succesfully created. Please check your mailbox, you "
+"are going to receive an email with API key."
+msgstr ""
+
+# @todo Exclamation mark needed? Context for translators?
+#: ../inc/functions/i18n.php:26
+msgid "Connect to Imagify!"
+msgstr ""
+
+#: ../inc/functions/i18n.php:27
+msgid "Paste your API key below:"
+msgstr ""
+
+#: ../inc/functions/i18n.php:28
+msgid "Connect me"
+msgstr ""
+
+# @todo Should rather be something like “Validating…” to be consistent with “Optimizing…”
+#: ../inc/functions/i18n.php:29
+msgid "Check in progress..."
+msgstr ""
+
+#: ../inc/functions/i18n.php:30
+msgid "You need to specify your api key!"
+msgstr ""
+
+#: ../inc/functions/i18n.php:32
+msgid ""
+"Your API key is valid. You can now configure the Imagify settings to "
+"optimize your images."
+msgstr ""
+
+#: ../inc/functions/i18n.php:34
+msgid "Cancel"
+msgstr ""
+
+#: ../inc/functions/i18n.php:41
+msgid "Don't Need a Parachute?"
+msgstr ""
+
+#: ../inc/functions/i18n.php:42
+msgid ""
+"If you keep this option deactivated, you won't be able to re-optimize your "
+"images to another compression level and restore your original images in case "
+"of need."
+msgstr ""
+
+#: ../inc/functions/i18n.php:58
+msgid "Original Image"
+msgstr ""
+
+#: ../inc/functions/i18n.php:59
+msgid "Optimized Image"
+msgstr ""
+
+# @todo use ellipsis as 1 character (http://unicode.org/cldr/utility/character.jsp?a=2026)
+#: ../inc/functions/i18n.php:73
+msgid "Please wait..."
+msgstr ""
+
+#: ../inc/functions/i18n.php:74
+msgid ""
+"We are trying to get your unoptimized images, it may take time depending on "
+"the number of images."
+msgstr ""
+
+# @todo Remove capitalization + exclamation mark.
+#: ../inc/functions/i18n.php:76
+msgid "Oops, There is something wrong!"
+msgstr ""
+
+#: ../inc/functions/i18n.php:77
+msgid ""
+"An unknow error occurred when we tried to get all your unoptimized images. "
+"Try again and if the issue still persist, please contact us!"
+msgstr ""
+
+# @todo Context for translators should be provided.
+#: ../inc/functions/i18n.php:82
+msgid "Error"
+msgstr ""
+
+# @todo Context for translators should be provided.
+#: ../inc/functions/i18n.php:85
+msgid "Hold on!"
+msgstr ""
+
+#: ../inc/functions/i18n.php:86
+msgid "All your images have been optimized by Imagify. Congratulations!"
+msgstr ""
+
+# @todo Context for translators should be provided of what %1$s and %2$s represent.
+#: ../inc/functions/i18n.php:88
+#, php-format
+msgid ""
+"Discover @imagify, the new compression tool to optimize your images for "
+"free. I saved %1$s out of %2$s!"
+msgstr ""
+
+# @todo What is going to happen when user does leave the page?
+#: ../inc/functions/i18n.php:92
+msgid "Imagify is still processing. Are you sure you want to leave this page?"
+msgstr ""
+
+#: ../inc/functions/i18n.php:101
+msgid "F j, Y"
+msgstr ""
+
+#: ../inc/functions/process.php:40
+msgid ""
+"Sorry, our servers are temporarily unaccessible. Please, try again in a "
+"couple of minutes."
+msgstr ""
+
+#: ../inc/functions/process.php:46
+msgid "External HTTP requests are blocked"
+msgstr ""
+
+#: ../inc/functions/process.php:52
+msgid "File path is empty"
+msgstr ""
+
+#: ../inc/functions/process.php:58
+#, php-format
+msgid "Could not find %s"
+msgstr ""
+
+#: ../inc/functions/process.php:63
+#, php-format
+msgid "%s is not writable"
+msgstr ""
+
+# @todo %s is what?
+#: ../inc/functions/process.php:72
+#, php-format
+msgid "Skipped (%s), image not found."
+msgstr ""
diff --git a/readme.txt b/readme.txt
index 8e87a9486..f9bfd5c1a 100644
--- a/readme.txt
+++ b/readme.txt
@@ -3,7 +3,7 @@ Contributors: wp_media
Tags: compress image, images, performance, optimization, photos, upload, resize, gif, png, jpg, reduce image size, retina
Requires at least: 3.7.0
Tested up to: 4.6
-Stable tag: 1.5.8
+Stable tag: 1.5.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -135,6 +135,12 @@ When the plugin is disabled, your existing images remain optimized. Backups of t
3. Media Page
== Changelog ==
+= 1.5.9 =
+* 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
+
= 1.5.8 =
* Regression fix
* Check if the backup option is active before doing a backup when an image is resized