* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ namespace phpbb\notification\method; /** * Abstract notification method handling email and jabber notifications * using the phpBB messenger. */ abstract class messenger_base extends \phpbb\notification\method\base { /** @var \phpbb\user_loader */ protected $user_loader; /** @var string */ protected $phpbb_root_path; /** @var string */ protected $php_ext; /** * Notification Method Board Constructor * * @param \phpbb\user_loader $user_loader * @param string $phpbb_root_path * @param string $php_ext */ public function __construct(\phpbb\user_loader $user_loader, $phpbb_root_path, $php_ext) { $this->user_loader = $user_loader; $this->phpbb_root_path = $phpbb_root_path; $this->php_ext = $php_ext; } /** * Notify using phpBB messenger * * @param int $notify_method Notify method for messenger (e.g. NOTIFY_IM) * @param string $template_dir_prefix Base directory to prepend to the email template name * * @return null */ protected function notify_using_messenger($notify_method, $template_dir_prefix = '') { if (empty($this->queue)) { return; } // Load all users we want to notify (we need their email address) $user_ids = $users = array(); foreach ($this->queue as $notification) { $user_ids[] = $notification->user_id; } // We do not send emails to banned users if (!function_exists('phpbb_get_banned_user_ids')) { include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext); } $banned_users = phpbb_get_banned_user_ids($user_ids); // Load all the users we need $this->user_loader->load_users($user_ids); // Load the messenger if (!class_exists('messenger')) { include($this->phpbb_root_path . 'includes/functions_messenger.' . $this->php_ext); } $messenger = new \messenger(); // Time to go through the queue and send emails /** @var \phpbb\notification\type\type_interface $notification */ foreach ($this->queue as $notification) { if ($notification->get_email_template() === false) { continue; } $user = $this->user_loader->get_user($notification->user_id); if ($user['user_type'] == USER_IGNORE || ($user['user_type'] == USER_INACTIVE && $user['user_inactive_reason'] == INACTIVE_MANUAL) || in_array($notification->user_id, $banned_users)) { continue; } $messenger->template($notification->get_email_template(), $user['user_lang'], '', $template_dir_prefix); $messenger->set_addresses($user); $messenger->assign_vars(array_merge(array( 'USERNAME' => $user['username'], 'U_NOTIFICATION_SETTINGS' => generate_board_url() . '/ucp.' . $this->php_ext . '?i=ucp_notifications&mode=notification_options', ), $notification->get_email_template_variables())); $messenger->send($notify_method); } // Save the queue in the messenger class (has to be called or these emails could be lost?) $messenger->save_queue(); // We're done, empty the queue $this->empty_queue(); } } ='10'>10space:mode:
authorSARL ENR-68 <david@david.david>2014-07-07 20:56:54 +0200
committerSARL ENR-68 <david@david.david>2014-07-07 20:56:54 +0200
commitc0cae554dc133cc316e4df7f9b405edde33d0a59 (patch)
treebebe76491cff421c1513feebd8c13ba0a6adf8cd /po
parentb8a902dabe0df4e27ce1e84cdf5d142bf45c263b (diff)
downloadisodumper-c0cae554dc133cc316e4df7f9b405edde33d0a59.tar
isodumper-c0cae554dc133cc316e4df7f9b405edde33d0a59.tar.gz
isodumper-c0cae554dc133cc316e4df7f9b405edde33d0a59.tar.bz2
isodumper-c0cae554dc133cc316e4df7f9b405edde33d0a59.tar.xz
isodumper-c0cae554dc133cc316e4df7f9b405edde33d0a59.zip
update for release 0.30
- all .po formatting
Diffstat (limited to 'po')
-rw-r--r--po/ar.po71
-rw-r--r--po/ast.po95
-rw-r--r--po/bg.po97
-rw-r--r--po/ca.po97
-rw-r--r--po/cs.po95
-rw-r--r--po/da.po95
-rw-r--r--po/de.po109
-rw-r--r--po/el.po97
-rw-r--r--po/en_CA.po97
-rw-r--r--po/en_GB.po95
-rw-r--r--po/es.po95
-rw-r--r--po/et.po95
-rw-r--r--po/fr.po107
-rw-r--r--po/gl.po95
-rw-r--r--po/he.po95
-rw-r--r--po/hr.po95
-rw-r--r--po/hu.po71
-rw-r--r--po/id.po95
-rw-r--r--po/isodumper.pot71
-rw-r--r--po/it.po95
-rw-r--r--po/ja.po97
-rw-r--r--po/ka.po97
-rw-r--r--po/ko.po95
-rw-r--r--po/ml.po71
-rw-r--r--po/ms.po71
-rw-r--r--po/nb.po97
-rw-r--r--po/nl.po95
-rw-r--r--po/pl.po95
-rw-r--r--po/pt.po105
-rw-r--r--po/pt_BR.po107
-rw-r--r--po/ro.po95
-rw-r--r--po/ru.po107
-rw-r--r--po/sk.po93
-rw-r--r--po/sl.po105
-rw-r--r--po/sr.po93
-rw-r--r--po/sv.po105
-rw-r--r--po/tr.po107
-rw-r--r--po/uk.po108
-rw-r--r--po/zh_CN.po97
-rw-r--r--po/zh_HK.po99
-rw-r--r--po/zh_TW.po103
41 files changed, 2224 insertions, 1680 deletions
diff --git a/po/ar.po b/po/ar.po
index d6fb2ab..b7bab9a 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: isodumper\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-30 17:50+0200\n"
+"POT-Creation-Date: 2014-07-07 00:05+0200\n"
"PO-Revision-Date: 2009-04-17 17:02+0000\n"
"Last-Translator: Nizar Kerkeni <nizar.kerkeni@gmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
@@ -19,116 +19,120 @@ msgstr ""
"X-Launchpad-Export-Date: 2009-06-12 12:08+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
-#: lib/isodumper.py:153
+#: lib/isodumper.py:152
msgid "Mb"
msgstr ""
-#: lib/isodumper.py:162 lib/isodumper.py:289
+#: lib/isodumper.py:161 lib/isodumper.py:299
msgid "Target Device: "
msgstr "القارىء المستهدف: "
-#: lib/isodumper.py:241
+#: lib/isodumper.py:184
+msgid "Backup in: "
+msgstr ""
+
+#: lib/isodumper.py:247
msgid "The device was formatted successfully."
msgstr ""
-#: lib/isodumper.py:245
+#: lib/isodumper.py:251
msgid "An error occured while creating a partition."
msgstr ""
-#: lib/isodumper.py:247
+#: lib/isodumper.py:253
msgid "Authentication error."
msgstr ""
-#: lib/isodumper.py:249
+#: lib/isodumper.py:255
msgid "An error occurred."
msgstr ""
-#: lib/isodumper.py:272 share/isodumper/isodumper.glade.h:32
+#: lib/isodumper.py:278 share/isodumper/isodumper.glade.h:32
msgid "Backup in:"
msgstr ""
-#: lib/isodumper.py:288
+#: lib/isodumper.py:298
msgid "Image: "
msgstr "ملف: "
-#: lib/isodumper.py:292
+#: lib/isodumper.py:302
msgid "The device is too small to contain the ISO file."
msgstr ""
-#: lib/isodumper.py:299
+#: lib/isodumper.py:309
msgid "The device is bigger than 32 Gbytes. Are you sure you want use it?"
msgstr ""
-#: lib/isodumper.py:326
+#: lib/isodumper.py:336
msgid "Unmounting all partitions of "
msgstr "فصل جميـع أقسام "
-#: lib/isodumper.py:328
+#: lib/isodumper.py:338
msgid "Trying to unmount "
msgstr "محاولة فصل "
-#: lib/isodumper.py:334
+#: lib/isodumper.py:344
msgid " was terminated by signal "
msgstr " تم إنهائه بإشارة "
-#: lib/isodumper.py:334 lib/isodumper.py:340
+#: lib/isodumper.py:344 lib/isodumper.py:350
msgid "Error, umount "
msgstr "خطأ، فصل "
-#: lib/isodumper.py:338
+#: lib/isodumper.py:348
msgid " successfully unmounted"
msgstr " تم فصله بنجاح"
-#: lib/isodumper.py:340
+#: lib/isodumper.py:350
msgid " returned "
msgstr ""
-#: lib/isodumper.py:343
+#: lib/isodumper.py:353
msgid "Execution failed: "
msgstr "فشل التنفيذ: "
-#: lib/isodumper.py:351
+#: lib/isodumper.py:361
msgid "Could not read mtab !"
msgstr ""
-#: lib/isodumper.py:360 lib/isodumper.py:384
+#: lib/isodumper.py:370 lib/isodumper.py:394
msgid "Reading error."
msgstr ""
-#: lib/isodumper.py:366
+#: lib/isodumper.py:376
msgid "You have not the rights for writing on the device"
msgstr ""
-#: lib/isodumper.py:372 lib/isodumper.py:373
+#: lib/isodumper.py:382 lib/isodumper.py:383
msgid " to "
msgstr " إلى "
-#: lib/isodumper.py:372
+#: lib/isodumper.py:382
msgid "Writing "
msgstr "جار الكتابة "
-#: lib/isodumper.py:373
+#: lib/isodumper.py:383
msgid "Executing copy from "
msgstr ""
-#: lib/isodumper.py:389 lib/isodumper.py:402 lib/isodumper.py:411
+#: lib/isodumper.py:399 lib/isodumper.py:412 lib/isodumper.py:421
#, fuzzy
msgid "Writing error."
msgstr "جار الكتابة "
-#: lib/isodumper.py:394
+#: lib/isodumper.py:404
msgid "Wrote: "
msgstr ""
-#: lib/isodumper.py:406
+#: lib/isodumper.py:416
msgid " successfully written to "
msgstr ""
-#: lib/isodumper.py:406 lib/isodumper.py:495
+#: lib/isodumper.py:416 lib/isodumper.py:507
msgid "Image "
msgstr "ملف "
-#: lib/isodumper.py:407
+#: lib/isodumper.py:417
msgid "Bytes written: "
msgstr ""
@@ -151,9 +155,9 @@ msgstr ""
#: share/isodumper/isodumper.glade.h:2
msgid ""
-"Writing is in progress. Exiting will occur that the device will be "
-"unusable.\n"
-"Are you sure you want to quit during writing on the device?"
+"Writing is in progress. Exiting during writing will occur that the device or "
+"the backup will be unusable.\n"
+"Are you sure you want to quit during writing?"
msgstr ""
#: share/isodumper/isodumper.glade.h:4
@@ -281,8 +285,7 @@ msgstr ""
#: share/isodumper/isodumper.glade.h:46
msgid ""
"<b>Success</b>\n"
-" The image was successfully written to the\n"
-" target device.\n"
+" The operation was successfully performed.\n"
" \n"
" You are free to unplug it now, a log isodumper.log \n"
" of the operation will be saved in your homedir/.isodumper/ when\n"
diff --git a/po/ast.po b/po/ast.po
index 6930d1b..b07c4c2 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: isodumper\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-30 17:50+0200\n"
+"POT-Creation-Date: 2014-07-07 00:05+0200\n"
"PO-Revision-Date: 2010-05-27 18:13+0000\n"
"Last-Translator: ivarela <ivarela@ubuntu.com>\n"
"Language-Team: Asturian <ast@li.org>\n"
@@ -19,115 +19,119 @@ msgstr ""
"X-Launchpad-Export-Date: 2013-07-03 20:32+0000\n"
"X-Generator: Launchpad (build 16692)\n"
-#: lib/isodumper.py:153
+#: lib/isodumper.py:152
msgid "Mb"
msgstr ""
-#: lib/isodumper.py:162 lib/isodumper.py:289
+#: lib/isodumper.py:161 lib/isodumper.py:299
msgid "Target Device: "
msgstr "Preséu de destín: "
-#: lib/isodumper.py:241
+#: lib/isodumper.py:184
+msgid "Backup in: "
+msgstr ""
+
+#: lib/isodumper.py:247
msgid "The device was formatted successfully."
msgstr ""
-#: lib/isodumper.py:245
+#: lib/isodumper.py:251
msgid "An error occured while creating a partition."
msgstr ""
-#: lib/isodumper.py:247
+#: lib/isodumper.py:253
msgid "Authentication error."
msgstr ""
-#: lib/isodumper.py:249
+#: lib/isodumper.py:255
msgid "An error occurred."
msgstr ""
-#: lib/isodumper.py:272 share/isodumper/isodumper.glade.h:32
+#: lib/isodumper.py:278 share/isodumper/isodumper.glade.h:32
msgid "Backup in:"
msgstr ""
-#: lib/isodumper.py:288
+#: lib/isodumper.py:298
msgid "Image: "
msgstr "Imaxe: "
-#: lib/isodumper.py:292
+#: lib/isodumper.py:302
msgid "The device is too small to contain the ISO file."
msgstr ""
-#: lib/isodumper.py:299
+#: lib/isodumper.py:309
msgid "The device is bigger than 32 Gbytes. Are you sure you want use it?"
msgstr ""
-#: lib/isodumper.py:326
+#: lib/isodumper.py:336
msgid "Unmounting all partitions of "
msgstr "Desmontando toles particiones de "
-#: lib/isodumper.py:328
+#: lib/isodumper.py:338
msgid "Trying to unmount "
msgstr "Intentando desmontar "
-#: lib/isodumper.py:334
+#: lib/isodumper.py:344
msgid " was terminated by signal "
msgstr " terminóse pola señal "
-#: lib/isodumper.py:334 lib/isodumper.py:340
+#: lib/isodumper.py:344 lib/isodumper.py:350
msgid "Error, umount "
msgstr "Fallu, desmontar "
-#: lib/isodumper.py:338
+#: lib/isodumper.py:348
msgid " successfully unmounted"
msgstr " desmontáu correchamente"
-#: lib/isodumper.py:340
+#: lib/isodumper.py:350
msgid " returned "
msgstr " devueltu "
-#: lib/isodumper.py:343
+#: lib/isodumper.py:353
msgid "Execution failed: "
msgstr "Falló la execución: "
-#: lib/isodumper.py:351
+#: lib/isodumper.py:361
msgid "Could not read mtab !"
msgstr "¡ Nun ye dable lleer mtab !"
-#: lib/isodumper.py:360 lib/isodumper.py:384
+#: lib/isodumper.py:370 lib/isodumper.py:394
msgid "Reading error."
msgstr ""
-#: lib/isodumper.py:366
+#: lib/isodumper.py:376
msgid "You have not the rights for writing on the device"
msgstr ""
-#: lib/isodumper.py:372 lib/isodumper.py:373
+#: lib/isodumper.py:382 lib/isodumper.py:383
msgid " to "
msgstr " a "
-#: lib/isodumper.py:372
+#: lib/isodumper.py:382
msgid "Writing "
msgstr "Escribiendo "
-#: lib/isodumper.py:373
+#: lib/isodumper.py:383
msgid "Executing copy from "
msgstr ""
-#: lib/isodumper.py:389 lib/isodumper.py:402 lib/isodumper.py:411
+#: lib/isodumper.py:399 lib/isodumper.py:412 lib/isodumper.py:421
msgid "Writing error."
msgstr ""
-#: lib/isodumper.py:394
+#: lib/isodumper.py:404
msgid "Wrote: "
msgstr "Escritu: "
-#: lib/isodumper.py:406
+#: lib/isodumper.py:416
msgid " successfully written to "
msgstr " escritu con éxitu en "
-#: lib/isodumper.py:406 lib/isodumper.py:495
+#: lib/isodumper.py:416 lib/isodumper.py:507
msgid "Image "
msgstr "Imaxe "
-#: lib/isodumper.py:407
+#: lib/isodumper.py:417
msgid "Bytes written: "
msgstr ""
@@ -150,9 +154,9 @@ msgstr ""
#: share/isodumper/isodumper.glade.h:2
msgid ""
-"Writing is in progress. Exiting will occur that the device will be "
-"unusable.\n"
-"Are you sure you want to quit during writing on the device?"
+"Writing is in progress. Exiting during writing will occur that the device or "
+"the backup will be unusable.\n"
+"Are you sure you want to quit during writing?"
msgstr ""
#: share/isodumper/isodumper.glade.h:4
@@ -286,20 +290,29 @@ msgstr ""
#: share/isodumper/isodumper.glade.h:46
msgid ""
"<b>Success</b>\n"
-" The image was successfully written to the\n"
-" target device.\n"
+" The operation was successfully performed.\n"
" \n"
" You are free to unplug it now, a log isodumper.log \n"
" of the operation will be saved in your homedir/.isodumper/ when\n"
" you close the application."
msgstr ""
-"<b>Fecho</b>\n"
-" La imaxe grabóse correchamente nel\n"
-" preséu de destín.\n"
-"\n"
-" Puedes desconeutalu agora, va guardase un\n"
-" informe de la operación nel to direutoriu home\n"
-" si zarres l'aplicación."
+
+#~ msgid ""
+#~ "<b>Success</b>\n"
+#~ " The image was successfully written to the\n"
+#~ " target device.\n"
+#~ " \n"
+#~ " You are free to unplug it now, a log isodumper.log \n"
+#~ " of the operation will be saved in your homedir/.isodumper/ when\n"
+#~ " you close the application."
+#~ msgstr ""
+#~ "<b>Fecho</b>\n"
+#~ " La imaxe grabóse correchamente nel\n"
+#~ " preséu de destín.\n"
+#~ "\n"
+#~ " Puedes desconeutalu agora, va guardase un\n"
+#~ " informe de la operación nel to direutoriu home\n"
+#~ " si zarres l'aplicación."
#~ msgid ""
#~ "<b>Error</b>\n"
diff --git a/po/bg.po b/po/bg.po
index f9dac97..a411ab7 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: isodumper\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-30 17:50+0200\n"
+"POT-Creation-Date: 2014-07-07 00:05+0200\n"
"PO-Revision-Date: 2009-04-03 18:33+0000\n"
"Last-Translator: Krasimir Chonov <mk2616@abv.bg>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
@@ -19,117 +19,121 @@ msgstr ""
"X-Launchpad-Export-Date: 2009-06-12 12:08+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
-#: lib/isodumper.py:153
+#: lib/isodumper.py:152
msgid "Mb"
msgstr ""
-#: lib/isodumper.py:162 lib/isodumper.py:289
+#: lib/isodumper.py:161 lib/isodumper.py:299
msgid "Target Device: "
msgstr "Целево устройство: "
-#: lib/isodumper.py:241
+#: lib/isodumper.py:184
+msgid "Backup in: "
+msgstr ""
+
+#: lib/isodumper.py:247
msgid "The device was formatted successfully."
msgstr ""
-#: lib/isodumper.py:245
+#: lib/isodumper.py:251
msgid "An error occured while creating a partition."
msgstr ""
-#: lib/isodumper.py:247
+#: lib/isodumper.py:253
msgid "Authentication error."
msgstr ""
-#: lib/isodumper.py:249
+#: lib/isodumper.py:255
msgid "An error occurred."
msgstr ""
-#: lib/isodumper.py:272 share/isodumper/isodumper.glade.h:32
+#: lib/isodumper.py:278 share/isodumper/isodumper.glade.h:32
msgid "Backup in:"
msgstr ""
-#: lib/isodumper.py:288
+#: lib/isodumper.py:298
msgid "Image: "
msgstr "Изображение: "
-#: lib/isodumper.py:292
+#: lib/isodumper.py:302
msgid "The device is too small to contain the ISO file."
msgstr ""
-#: lib/isodumper.py:299
+#: lib/isodumper.py:309
msgid "The device is bigger than 32 Gbytes. Are you sure you want use it?"
msgstr ""
-#: lib/isodumper.py:326
+#: lib/isodumper.py:336
msgid "Unmounting all partitions of "
msgstr "Демонтиране на всички дялове на "
-#: lib/isodumper.py:328
+#: lib/isodumper.py:338
msgid "Trying to unmount "
msgstr "Опит за демонтиране "
-#: lib/isodumper.py:334
+#: lib/isodumper.py:344
msgid " was terminated by signal "
msgstr " беше спрян от сигнал "
-#: lib/isodumper.py:334 lib/isodumper.py:340
+#: lib/isodumper.py:344 lib/isodumper.py:350
msgid "Error, umount "
msgstr "Грешка, демонтиране "
-#: lib/isodumper.py:338
+#: lib/isodumper.py:348
msgid " successfully unmounted"
msgstr " е демонтиран успешно"
-#: lib/isodumper.py:340
+#: lib/isodumper.py:350
msgid " returned "
msgstr " върна "
-#: lib/isodumper.py:343
+#: lib/isodumper.py:353
msgid "Execution failed: "
msgstr "Изпълнението се провали: "
-#: lib/isodumper.py:351
+#: lib/isodumper.py:361
msgid "Could not read mtab !"
msgstr "Файлът mtab не мож еда се прочете !"
-#: lib/isodumper.py:360 lib/isodumper.py:384
+#: lib/isodumper.py:370 lib/isodumper.py:394
msgid "Reading error."
msgstr ""
-#: lib/isodumper.py:366
+#: lib/isodumper.py:376
msgid "You have not the rights for writing on the device"
msgstr ""
-#: lib/isodumper.py:372 lib/isodumper.py:373
+#: lib/isodumper.py:382 lib/isodumper.py:383
msgid " to "
msgstr " на "
-#: lib/isodumper.py:372
+#: lib/isodumper.py:382
msgid "Writing "
msgstr "Записване "
-#: lib/isodumper.py:373
+#: lib/isodumper.py:383
#, fuzzy
msgid "Executing copy from "
msgstr "Изпълнение на: dd if="
-#: lib/isodumper.py:389 lib/isodumper.py:402 lib/isodumper.py:411
+#: lib/isodumper.py:399 lib/isodumper.py:412 lib/isodumper.py:421
#, fuzzy
msgid "Writing error."
msgstr "Записване "
-#: lib/isodumper.py:394
+#: lib/isodumper.py:404
msgid "Wrote: "
msgstr "Записа: "
-#: lib/isodumper.py:406
+#: lib/isodumper.py:416
msgid " successfully written to "
msgstr " е успешно записан на "
-#: lib/isodumper.py:406 lib/isodumper.py:495
+#: lib/isodumper.py:416 lib/isodumper.py:507
msgid "Image "
msgstr "Образ "
-#: lib/isodumper.py:407
+#: lib/isodumper.py:417
msgid "Bytes written: "
msgstr ""
@@ -152,9 +156,9 @@ msgstr ""
#: share/isodumper/isodumper.glade.h:2
msgid ""
-"Writing is in progress. Exiting will occur that the device will be "
-"unusable.\n"
-"Are you sure you want to quit during writing on the device?"
+"Writing is in progress. Exiting during writing will occur that the device or "
+"the backup will be unusable.\n"
+"Are you sure you want to quit during writing?"
msgstr ""
#: share/isodumper/isodumper.glade.h:4
@@ -286,23 +290,32 @@ msgid ""
msgstr ""
#: share/isodumper/isodumper.glade.h:46
-#, fuzzy
msgid ""
"<b>Success</b>\n"
-" The image was successfully written to the\n"
-" target device.\n"
+" The operation was successfully performed.\n"
" \n"
" You are free to unplug it now, a log isodumper.log \n"
" of the operation will be saved in your homedir/.isodumper/ when\n"
" you close the application."
msgstr ""
-"<b>Успешно</b>\n"
-" Образът беше записан успешно\n"
-" на целевото устройство.\n"
-" \n"
-" Можете да извадите устройството, ще\n"
-" се запази отчет във вашата домашна\n"
-" папка, ако затворите програмата."
+
+#, fuzzy
+#~ msgid ""
+#~ "<b>Success</b>\n"
+#~ " The image was successfully written to the\n"
+#~ " target device.\n"
+#~ " \n"
+#~ " You are free to unplug it now, a log isodumper.log \n"
+#~ " of the operation will be saved in your homedir/.isodumper/ when\n"
+#~ " you close the application."
+#~ msgstr ""
+#~ "<b>Успешно</b>\n"
+#~ " Образът беше записан успешно\n"
+#~ " на целевото устройство.\n"
+#~ " \n"
+#~ " Можете да извадите устройството, ще\n"
+#~ " се запази отчет във вашата домашна\n"
+#~ " папка, ако затворите програмата."
#, fuzzy
#~ msgid ""
diff --git a/po/ca.po b/po/ca.po
index 3eaf9ab..ff65155 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: isodumper\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-30 17:50+0200\n"
+"POT-Creation-Date: 2014-07-07 00:05+0200\n"
"PO-Revision-Date: 2009-06-12 12:05+0000\n"
"Last-Translator: Siegfried Gevatter <rainct@ubuntu.com>\n"
"Language-Team: Catalan <ca@li.org>\n"
@@ -19,117 +19,121 @@ msgstr ""
"X-Launchpad-Export-Date: 2009-06-12 12:08+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
-#: lib/isodumper.py:153
+#: lib/isodumper.py:152
msgid "Mb"
msgstr ""
-#: lib/isodumper.py:162 lib/isodumper.py:289
+#: lib/isodumper.py:161 lib/isodumper.py:299
msgid "Target Device: "
msgstr "Dispositiu de destí: "
-#: lib/isodumper.py:241
+#: lib/isodumper.py:184
+msgid "Backup in: "
+msgstr ""
+
+#: lib/isodumper.py:247
msgid "The device was formatted successfully."
msgstr ""
-#: lib/isodumper.py:245
+#: lib/isodumper.py:251
msgid "An error occured while creating a partition."
msgstr ""
-#: lib/isodumper.py:247
+#: lib/isodumper.py:253
msgid "Authentication error."
msgstr ""
-#: lib/isodumper.py:249
+#: lib/isodumper.py:255
msgid "An error occurred."
msgstr ""
-#: lib/isodumper.py:272 share/isodumper/isodumper.glade.h:32
+#: lib/isodumper.py:278 share/isodumper/isodumper.glade.h:32
msgid "Backup in:"
msgstr ""
-#: lib/isodumper.py:288
+#: lib/isodumper.py:298
msgid "Image: "
msgstr "Imatge: "
-#: lib/isodumper.py:292
+#: lib/isodumper.py:302
msgid "The device is too small to contain the ISO file."
msgstr ""
-#: lib/isodumper.py:299
+#: lib/isodumper.py:309
msgid "The device is bigger than 32 Gbytes. Are you sure you want use it?"
msgstr ""
-#: lib/isodumper.py:326
+#: lib/isodumper.py:336
msgid "Unmounting all partitions of "
msgstr "Desmuntant totes les particions de "
-#: lib/isodumper.py:328
+#: lib/isodumper.py:338
msgid "Trying to unmount "
msgstr "Intentant desmuntar "
-#: lib/isodumper.py:334
+#: lib/isodumper.py:344
msgid " was terminated by signal "
msgstr " s'ha acabat per un senyal "
-#: lib/isodumper.py:334 lib/isodumper.py:340
+#: lib/isodumper.py:344 lib/isodumper.py:350
msgid "Error, umount "
msgstr "Error, desmunta "
-#: lib/isodumper.py:338
+#: lib/isodumper.py:348
msgid " successfully unmounted"
msgstr " desmuntat amb èxit"
-#: lib/isodumper.py:340
+#: lib/isodumper.py:350
msgid " returned "
msgstr " ha retornat "
-#: lib/isodumper.py:343
+#: lib/isodumper.py:353
msgid "Execution failed: "