From 37307eec024937f448d03956c3ced3f2588f7c30 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Wed, 13 Oct 2021 09:09:24 +0200 Subject: Fix strings and update translation catalogs --- backend/raw_write.py | 2 +- lib/isodumper.py | 11 +-- po/af.po | 148 ++++++++++++++++----------------- po/am.po | 148 ++++++++++++++++----------------- po/ar.po | 148 ++++++++++++++++----------------- po/ast.po | 148 ++++++++++++++++----------------- po/az.po | 148 ++++++++++++++++----------------- po/be.po | 148 ++++++++++++++++----------------- po/bg.po | 148 ++++++++++++++++----------------- po/bn.po | 148 ++++++++++++++++----------------- po/br.po | 148 ++++++++++++++++----------------- po/bs.po | 148 ++++++++++++++++----------------- po/ca.po | 153 +++++++++++++++++----------------- po/cs.po | 153 +++++++++++++++++----------------- po/cy.po | 148 ++++++++++++++++----------------- po/da.po | 148 ++++++++++++++++----------------- po/de.po | 153 +++++++++++++++++----------------- po/el.po | 153 +++++++++++++++++----------------- po/en_CA.po | 148 ++++++++++++++++----------------- po/en_GB.po | 148 ++++++++++++++++----------------- po/eo.po | 148 ++++++++++++++++----------------- po/es.po | 153 +++++++++++++++++----------------- po/et.po | 153 +++++++++++++++++----------------- po/eu.po | 148 ++++++++++++++++----------------- po/fa.po | 148 ++++++++++++++++----------------- po/fi.po | 148 ++++++++++++++++----------------- po/fr.po | 153 +++++++++++++++++----------------- po/fur.po | 148 ++++++++++++++++----------------- po/ga.po | 148 ++++++++++++++++----------------- po/gl.po | 148 ++++++++++++++++----------------- po/gu.po | 148 ++++++++++++++++----------------- po/he.po | 148 ++++++++++++++++----------------- po/hi.po | 148 ++++++++++++++++----------------- po/hr.po | 148 ++++++++++++++++----------------- po/hu.po | 148 ++++++++++++++++----------------- po/hy.po | 148 ++++++++++++++++----------------- po/id.po | 148 ++++++++++++++++----------------- po/is.po | 148 ++++++++++++++++----------------- po/isodumper.pot | 227 ++++++++++++++++++++++++++------------------------- po/it.po | 148 ++++++++++++++++----------------- po/ja.po | 153 +++++++++++++++++----------------- po/ka.po | 148 ++++++++++++++++----------------- po/ko.po | 148 ++++++++++++++++----------------- po/ku.po | 148 ++++++++++++++++----------------- po/ky.po | 148 ++++++++++++++++----------------- po/lo.po | 148 ++++++++++++++++----------------- po/lt.po | 148 ++++++++++++++++----------------- po/ltg.po | 148 ++++++++++++++++----------------- po/lv.po | 148 ++++++++++++++++----------------- po/mk.po | 148 ++++++++++++++++----------------- po/mn.po | 148 ++++++++++++++++----------------- po/mr.po | 148 ++++++++++++++++----------------- po/ms.po | 148 ++++++++++++++++----------------- po/mt.po | 148 ++++++++++++++++----------------- po/nb.po | 153 +++++++++++++++++----------------- po/nl.po | 153 +++++++++++++++++----------------- po/nn.po | 148 ++++++++++++++++----------------- po/pa.po | 148 ++++++++++++++++----------------- po/pl.po | 148 ++++++++++++++++----------------- po/pt.po | 148 ++++++++++++++++----------------- po/pt_BR.po | 148 ++++++++++++++++----------------- po/ro.po | 148 ++++++++++++++++----------------- po/ru.po | 148 ++++++++++++++++----------------- po/sc.po | 148 ++++++++++++++++----------------- po/sk.po | 148 ++++++++++++++++----------------- po/sl.po | 153 +++++++++++++++++----------------- po/sq.po | 153 +++++++++++++++++----------------- po/sr.po | 153 +++++++++++++++++----------------- po/sv.po | 148 ++++++++++++++++----------------- po/ta.po | 148 ++++++++++++++++----------------- po/tg.po | 148 ++++++++++++++++----------------- po/th.po | 148 ++++++++++++++++----------------- po/tl.po | 148 ++++++++++++++++----------------- po/tr.po | 148 ++++++++++++++++----------------- po/uk.po | 151 +++++++++++++++++----------------- po/ur.po | 148 ++++++++++++++++----------------- po/uz.po | 148 ++++++++++++++++----------------- po/vi.po | 148 ++++++++++++++++----------------- po/wa.po | 148 ++++++++++++++++----------------- po/xh.po | 148 ++++++++++++++++----------------- po/zh_CN.po | 153 +++++++++++++++++----------------- po/zh_HK.po | 148 ++++++++++++++++----------------- po/zh_TW.po | 148 ++++++++++++++++----------------- po/zu.po | 148 ++++++++++++++++----------------- 84 files changed, 6174 insertions(+), 6127 deletions(-) diff --git a/backend/raw_write.py b/backend/raw_write.py index db903c5..a29b604 100755 --- a/backend/raw_write.py +++ b/backend/raw_write.py @@ -314,7 +314,7 @@ class Dumper(object): if not self.udev_wait(_("opening encrypted partition")): return self._progress = 60 - self.return_message = _("Persistent partition opened: formatting...") + self.return_message = _("Persistent partition opened. Formatting...") # mkfs.ext4 -L mgalive-persist /dev/mapper/crypt_sdb3 process = Popen(['mkfs.ext4','-q','-F','-L', label, '/dev/mapper/crypt_' + base_target],stderr=PIPE) outs, errs = process.communicate() diff --git a/lib/isodumper.py b/lib/isodumper.py index 247e139..2fd0618 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -264,14 +264,14 @@ class IsoDumper(basedialog.BaseDialog): self.logger(message) logging.info(message) partitions = self.u.get_partitions(self.dev.split('(')[1].split(')')[0]) - #, verb in singular 3rd person - self.logger(_("Contents partition(s)")) + # I18N: verb in singular 3rd person + self.logger(_("Contains this/these partition(s)")) for partition in partitions: self.logger(_("{device}: Type={type}, Label={label}").format(device=partition['device'], type=partition['type'], label=partition['label'],)) if len(partitions) == 0: - #, None refers to partition (no partitions on the selected device) + # I18N: None refers to partition (no partitions on the selected device) self.logger(_("None")) self.partition_cbox.setEnabled() self.partition_cbox.setChecked(False) @@ -634,7 +634,8 @@ class IsoDumper(basedialog.BaseDialog): self.final_unsensitive() info = Info(_("Success"), True, _("The operation completed successfully.") + "\n"\ + _("You are free to unplug it now, a logfile \n\ -(/home/-user-/.isodumper/isodumper.log has been saved.") + _("You may also consult /var/log/magiback.log")) +/home/-user-/.isodumper/isodumper.log has been saved.")+ "\n"\ + + _("You may also consult /var/log/magiback.log")) if self.ask_OK(info): return @@ -644,7 +645,7 @@ class IsoDumper(basedialog.BaseDialog): info = Info(_("Warning"), True, _("The operation completed, but with anomalies.\n\ Check carefully the messages in log view") + "\n"\ + _("You are free to unplug it now, a logfile \n\ -(/home/-user-/.isodumper/isodumper.log has been saved.") + "\n"\ +/home/-user-/.isodumper/isodumper.log has been saved.") + "\n"\ + _("You may also consult /var/log/magiback.log")) if self.ask_OK(info): return diff --git a/po/af.po b/po/af.po index 04d1f0d..1872056 100644 --- a/po/af.po +++ b/po/af.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Afrikaans (http://www.transifex.com/MageiaLinux/mageia/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "Verifiëringsfout." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Vordering" @@ -223,8 +223,8 @@ msgstr "Die toestel is te klein om die ISO-lêer te bevat." msgid "Writing confirmation" msgstr "Bevestig skryf" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Waarskuwing" @@ -287,47 +287,47 @@ msgstr "Sukses" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Probleme" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Kies ’n beeldlêer" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,173 +424,173 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Voer uit" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Verslag" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Aangaande" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hulp" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Sluit af" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 is nie beskikbaar op die stelsel nie" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etiket vir die toestel:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Kanselleer" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Goed" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nee" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Prente : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "’n Program om ISO-beeldlêers na ’n toestel te skryf" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -600,11 +600,11 @@ msgstr "" "Geen teikentoestelle is gevind nie.\n" "Prop ’n USB-stokkie in waarheen die beeldlêer geskryf kan word." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Verfris" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/am.po b/po/am.po index 07e6afa..53d4423 100644 --- a/po/am.po +++ b/po/am.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Amharic (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "ማስጠንቀቂያ" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "ስህተት" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "አስኪድ" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "ሪፖርት" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "ተወው" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "አዎ" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "አይ" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ar.po b/po/ar.po index 89f33ec..db18e91 100644 --- a/po/ar.po +++ b/po/ar.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Arabic (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -96,7 +96,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -185,7 +185,7 @@ msgstr "خطأ في المواثقة." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -224,8 +224,8 @@ msgstr "الجهاز أضغر من أن يسع ملف صورة الآيزو." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Warning" @@ -288,47 +288,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "خطأ" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "مفرغ ملفات الآيزو (آيزودامبر)" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -337,23 +337,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -361,7 +361,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -370,24 +370,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -397,26 +397,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -425,184 +425,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "تنفيذ" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "تقرير" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "لايتوفر udisks2 لدى النظام" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "اسم الجهاز:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "نظام الملفات FAT32 (ويندوز)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "نظام الملفات NTFS (ويندوز)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "نظام الملفات ext4 (لينوكس)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "إلغاء" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "حسنا" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "نعم" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "لا" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "أنعش" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ast.po b/po/ast.po index 714a703..37480da 100644 --- a/po/ast.po +++ b/po/ast.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-11-01 23:10+0000\n" "Last-Translator: enolp \n" "Language-Team: Asturian (http://www.transifex.com/MageiaLinux/mageia/" @@ -98,7 +98,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -187,7 +187,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progresu" @@ -228,8 +228,8 @@ msgstr "El preséu ye mui pequeñu como pa contener la ISO." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Alvertencia" @@ -292,23 +292,23 @@ msgstr "Ésitu" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -318,24 +318,24 @@ msgstr "" " va facer que la copia de seguranza nun sirva.\n" " ¿De xuru que quies colar demientres la escritura?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fallu" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "IsoDumper de Mageia" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -344,11 +344,11 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Tamién ufre una carauterística pa formatiar el preséu USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -356,13 +356,13 @@ msgstr "" "IsoDumper pue llanzase dende l'escritoriu o la terminal col comandu " "«isodumper»." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -370,7 +370,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -379,24 +379,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -406,26 +406,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Escoyeta d'una imaxe" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -434,184 +434,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Clave:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Executar" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Tocante a" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ayuda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Colar" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nun ta disponible nel sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Encaboxar" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Aceutar" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sí" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Non" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Semeyes: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Una ferramienta pa escribir imáxenes ISO en preseos" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Refrescar" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/az.po b/po/az.po index d2604fa..934d7fc 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Azerbaijani (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Xəbərdarlıq" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Xəta" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "İcra Et" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Raport Göndər" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Ləğv et" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Bəli" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Xeyir" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/be.po b/po/be.po index bd3bb03..28178b2 100644 --- a/po/be.po +++ b/po/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Belarusian (http://www.transifex.com/MageiaLinux/mageia/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Увага!" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Памылка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Выканаць" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Адмена" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Так" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Не" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/bg.po b/po/bg.po index 52344e0..8cca1f4 100644 --- a/po/bg.po +++ b/po/bg.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/" @@ -96,7 +96,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -185,7 +185,7 @@ msgstr "Грешка при удостоверяване." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Напредък" @@ -225,8 +225,8 @@ msgstr "Устройството е твърде малко за да побер msgid "Writing confirmation" msgstr "Потвърждение за записване" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Внимание" @@ -290,23 +290,23 @@ msgstr "Успешно" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -316,24 +316,24 @@ msgstr "" "устройството или резервното копие ще бъдат неизползваеми.\n" "Наистина ли искате да излезете?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Грешка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -342,23 +342,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -366,7 +366,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -375,24 +375,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -402,26 +402,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Избери образ" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -434,173 +434,173 @@ msgstr "" "искате ли да продължите?\n" "В такъв случай, моля, не изваждайте по време на операцията." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Изпълни" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Доклад" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Относно" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Помощ" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Затвори" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 не е наличен в системата ви" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Етикет на устройството:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Отказ" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Добре" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Да" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Не" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Инструмент за записване на ISO образи в дадено устройство" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -610,11 +610,11 @@ msgstr "" "Не са намерени устройства.\n" "Трябва да използвате USB флаш устройство за да запишете образа." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Опресни" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/bn.po b/po/bn.po index 9ef30cd..a89b40d 100644 --- a/po/bn.po +++ b/po/bn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Bengali (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "সতর্ক" @@ -285,47 +285,47 @@ msgstr "সফলতা" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "ত্রুটি" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "সম্পাদন করো" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "রিপোর্ট" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "বাতিল" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "হ্যাঁ" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "না" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/br.po b/po/br.po index 7911a6d..2375636 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Breton (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -97,7 +97,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -186,7 +186,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -225,8 +225,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Diwallit" @@ -289,47 +289,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fazi" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -338,23 +338,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -362,7 +362,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -371,24 +371,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -398,26 +398,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -426,184 +426,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Seveniñ" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Dezrevell" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Nullañ" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Mat eo" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ya" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ket" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/bs.po b/po/bs.po index b7c27e4..39d774d 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Bosnian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Upozorenje" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Greška" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Izvrši" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Izvještaj" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Odustani" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "U redu" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Da" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ca.po b/po/ca.po index 9988653..031c186 100644 --- a/po/ca.po +++ b/po/ca.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-17 19:25+0000\n" "Last-Translator: Davidmp \n" "Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -100,8 +100,8 @@ msgid "opening encrypted partition" msgstr "obrir una partició encriptada" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Partició persistent oberta: es formata..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -189,7 +189,7 @@ msgstr "Error d'autenticació." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progrés" @@ -230,8 +230,8 @@ msgstr "El dispositiu és massa petit per contenir una imatge ISO." msgid "Writing confirmation" msgstr "Confirmació d'escriptura" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Avís" @@ -296,23 +296,23 @@ msgstr "Correcte" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -323,24 +323,24 @@ msgstr "" "sigui inutilitzable. \n" "Segur que voleu sortir durant l'escriptura?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Error" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "IsoDumper de Mageia" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -354,11 +354,11 @@ msgstr "" "còpia de seguretat de tot el contingut anterior de la unitat extraïble al " "disc dur i, posteriorment, restaurar-la a l'estat anterior." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "També proporciona una funció per formatar la unitat d'USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -366,14 +366,14 @@ msgstr "" "L'IsoDumper es pot obrir des dels menús o des d'una consola d'usuari amb " "l'ordre \"isodumper\"." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" "Es demana la contrasenya d'arrel quan cal per al funcionament del programa." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -386,7 +386,7 @@ msgstr "" "tancar qualsevol finestra de Gestor de fitxers que s'hagi obert " "automàticament)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -401,7 +401,7 @@ msgstr "" "escriure.
- Escriu al dispositiu: aquest botó inicia l'operació: amb " "un diàleg d'avís previ." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -411,7 +411,7 @@ msgstr "" "partició nova on es puguin escriure i recuperar les dades del sistema " "autònom entre sessions." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -419,11 +419,11 @@ msgstr "" "- Encripta: la partició persistent s'encriptarà amb la clau proporcionada al " "camp clau." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "L'operació es mostra a la barra de progrés inferior." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -441,12 +441,12 @@ msgstr "" "utilitzar més endavant per restaurar la unitat extraïble seleccionant-lo com " "a fitxer d'origen (*.img) per escriure." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" "- Fes-ne una còpia de seguretat: inicia l'operació de còpia de seguretat." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -456,15 +456,15 @@ msgstr "" "format especificat: FAT, exFAT, NTFS o ext. Podeu especificar el nom del " "volum i el format en un quadre de diàleg nou." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Ja hi ha una altra instància de l'Isodumper en execució." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Trieu una imatge" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -479,173 +479,173 @@ msgstr "" " Si accepteu continuar, no desconnecteu\n" " el dispositiu mentre duri l'operació." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Clau:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Executa" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Informe" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Quant a" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ajuda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Surt" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 no està disponible al sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etiqueta del dispositiu:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancel·la" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "D'acord" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sí" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "No" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Imatges: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Una eina per passar imatges ISO a memòries USB" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -655,11 +655,11 @@ msgstr "" "No s'han trobat dispositius de destinació.\n" "Heu de connectar una memòria USB a la qual es pugui passar una imatge." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Refresca" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "permet la informació de depuració" @@ -718,6 +718,9 @@ msgstr "Una eina gràfica per passar fitxers .img i .iso a memòries USB" #~ msgid "Invalid signature for %s" #~ msgstr "Signatura no vàlida per a %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Partició persistent oberta: es formata..." + #~ msgid "Target Device: " #~ msgstr "Dispositiu de destinació: " diff --git a/po/cs.po b/po/cs.po index 061b64b..4ce20ef 100644 --- a/po/cs.po +++ b/po/cs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-08-04 05:44+0000\n" "Last-Translator: fri\n" "Language-Team: Czech (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -103,8 +103,8 @@ msgid "opening encrypted partition" msgstr "otevírání šifrovaného, diskového oddílu" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Otevřen trvalý oddíl: formátuje se..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -192,7 +192,7 @@ msgstr "Chyba při ověření." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Postup" @@ -231,8 +231,8 @@ msgstr "Zařízení je příliš malé, aby mohlo obsahovat soubor ISO." msgid "Writing confirmation" msgstr "Potvrzení zápisu" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Varování" @@ -298,23 +298,23 @@ msgstr "Úspěch" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -324,24 +324,24 @@ msgstr "" "se může stát, že zařízení nebo záloha bude nepoužitelná.\n" "Jste si jisti, že chcete skončit během zápisu na zařízení?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Chyba" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -354,11 +354,11 @@ msgstr "" "ručně. Jako bonus může také zálohovat celý obsah flash disku na pevný disk a " "následně jej obnovit do předchozího stavu." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Přidává také možnost formátování USB zařízení." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -366,13 +366,13 @@ msgstr "" "IsoDumper můžete spustit pomocí nabídek, nebo pomocí příkazu 'isodumper' v " "příkazové řádce." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "Pokud je to nutné pro běh programu, je vyžadováno heslo root." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -384,7 +384,7 @@ msgstr "" "„opakování“, jakmile ji vložíte.
(Možná budete muset zavřít všechna " "automaticky otevřená okna Správce souborů)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -398,7 +398,7 @@ msgstr "" "img), který chcete zapsat.
- Zapsat na zařízení: Toto tlačítko zahájí " "operaci - s varujícím dialogem." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -407,18 +407,18 @@ msgstr "" "- Přidat trvalý oddíl: zbývající prostor bude použit pro nový oddíl, kam " "můžou být zapsána data z Live systému a pro obnovu mezi sezeními." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" "- Šifrovat: Trvalý oddíl bude zašifrován klíčem z pole s klíčem." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Operace je zobrazena v ukazateli průběhu níže." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -434,11 +434,11 @@ msgstr "" "záložní soubor lze později použít k obnovení jednotky flash výběrem jako " "zdrojového souboru * .img k zápisu." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Zálohovat zařízení: zahájí zálohování" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -448,15 +448,15 @@ msgstr "" "FAT, exFAT, NTFS nebo ext. V novém dialogovém okně můžete určit název svazku " "a formát." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Isodumper již běží v jiném okně." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Vyberte obraz" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -471,173 +471,173 @@ msgstr "" " Pokud budete pokračovat, prosím neodpojujte\n" " zařízení během příštích operací." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Klíč:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Provést" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Hlášení" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "O programu" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Nápověda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Ukončit" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 není ve vašem systému dostupný" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Popisek pro zařízení:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Storno" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ano" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Obrázky: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Nástroj na zapisování obrazů ISO na zařízení" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -648,11 +648,11 @@ msgstr "" "Je potřeba, abyste zastrčili zařízení USB,\n" "na které lze obraz zapsat." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Obnovit" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "povolit ladicí informace" @@ -713,6 +713,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Neplatný podpis pro %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Otevřen trvalý oddíl: formátuje se..." + #~ msgid "Target Device: " #~ msgstr "Cílové zařízení: " diff --git a/po/cy.po b/po/cy.po index c96d0af..274b5d6 100644 --- a/po/cy.po +++ b/po/cy.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -96,7 +96,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -185,7 +185,7 @@ msgstr "Gwall dilysu." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -224,8 +224,8 @@ msgstr "Mae'r ddyfais yn rhy fach i gynnwys y ffeil ISO." msgid "Writing confirmation" msgstr "Cadarnhad yr ysgrifennu" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Rhybudd" @@ -289,47 +289,47 @@ msgstr "Llwyddiant" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Gwall" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -338,23 +338,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -362,7 +362,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -371,24 +371,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -398,26 +398,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -426,184 +426,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Gweithredu" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Adrodd" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "Nid yw UDisks2 ar gael ar eich system" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Label i'r ddyfais:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Diddymu" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Iawn" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ie" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Na" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Teclyn i ysgrifennu delweddau ISO i ddyfeisiau" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/da.po b/po/da.po index 5eff50f..f96ea98 100644 --- a/po/da.po +++ b/po/da.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -98,7 +98,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -187,7 +187,7 @@ msgstr "Identifikation fejl." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Forløb" @@ -228,8 +228,8 @@ msgstr "Enheden er for lille til at indeholde ISO filen." msgid "Writing confirmation" msgstr "Bekræftelse af skrivning" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Advarsel" @@ -292,23 +292,23 @@ msgstr "Lykkedes" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -318,24 +318,24 @@ msgstr "" " vil gøre enheden eller sikkerhedskopien ubrugelig.\n" " Er du sikker på, at du vil afslutte under skrivning?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fejl" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -344,23 +344,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -368,7 +368,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -377,24 +377,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -404,26 +404,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Vælg et aftryk" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -437,173 +437,173 @@ msgstr "" " Hvis du siger ok her, så tag venligst ikke enheden ud under " "den følgende handling." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Udfør" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapport" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Om" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hjælp" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Afslut" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 er ikke tilgængelig på dit system" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Label til enhenden:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Annullér" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nej" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Et værktøj til at skrive ISO-aftryk på en enhed" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -613,11 +613,11 @@ msgstr "" "Der blev ikke fundet nogen målenhed.\n" "Du skal sætte en USB-nøgle i hvor aftrykket skal skrives på." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Genopfrisk" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/de.po b/po/de.po index 23b8783..e3fe849 100644 --- a/po/de.po +++ b/po/de.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-21 09:57+0000\n" "Last-Translator: psyca\n" "Language-Team: German (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -109,8 +109,8 @@ msgid "opening encrypted partition" msgstr "öffnen der verschlüsselten Partition" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Persistente Partition geöffnet: Formatiere..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -198,7 +198,7 @@ msgstr "Authentifizierungsfehler." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Fortschritt" @@ -239,8 +239,8 @@ msgstr "Dieses Gerät ist zu kein, um die ISO-Datei zu beinhalten." msgid "Writing confirmation" msgstr "Schreiben bestätigen" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Warnung" @@ -306,23 +306,23 @@ msgstr "Erfolg" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -333,24 +333,24 @@ msgstr "" "Sind Sie sicher, dass Sie den Vorgang während des Schreibens auf das Gerät " "beenden wollen?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fehler" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -365,11 +365,11 @@ msgstr "" "Festplatte sichern und das Flash-Laufwerk anschließend auf den vorherigen " "Zustand wiederherstellen." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Es bietet auch die Möglichkeit, dass USB-Gerät zu formatieren." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -377,7 +377,7 @@ msgstr "" "IsoDumper kann entweder über die Menüs oder einer Benutzerkonsole mit dem " "Befehl 'isodumper' gestartet werden." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -385,7 +385,7 @@ msgstr "" "Das root-Passwort wird abgefragt, wenn es für den ausgewählten Vorgang " "benötigt wird." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -398,7 +398,7 @@ msgstr "" "'Aktualisieren', sobald Sie dies getan haben.
(Sie müssen " "gegebenenfalls automatisch geöffnete Dateimanager Fenster schließen)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -412,7 +412,7 @@ msgstr "" "ISO-Abbild *.iso (oder die *.img Flash-Sicherung) auszuwählen.
- " "Sichern nach: Die Schaltfläche startet den Vorgang - mit einer Warnmeldung." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -423,7 +423,7 @@ msgstr "" "Systems gespeichert und bei der nächsten Ausführung wiederhergestellt werden " "können." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -431,11 +431,11 @@ msgstr "" "- Verschlüsseln: Die persistente Partition wird mit dem im Schlüssel-" "Eingabefeld festgelegten Schlüssel verschlüsselt. " -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Der Vorgang wird unter dem Fortschrittsbalken angezeigt." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -452,11 +452,11 @@ msgstr "" "verwendet werden, um das Flash-Laufwerk wiederherzustellen, indem die *.img " "Datei als Quelle zum schreiben ausgewählt wird." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Das Gerät sichern: Führt den Sicherungsvorgang aus" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -467,15 +467,15 @@ msgstr "" "FAT, exFAT, NTFS oder ext - im folgenden Dialog auswählen und dem " "Datenträger einen Namen geben." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Es wir bereits eine Instanz von Isodumper ausgeführt." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Wähle ein Abbild aus" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -489,173 +489,173 @@ msgstr "" "Wenn Sie diesen Vorgang bestätigen, entfernen Sie nicht das Gerät, " "während die folgende Aktion durchgeführt wird." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Schlüssel:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Ausführen" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Bericht" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Über" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hilfe" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Beenden" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisk2 ist nicht auf Ihrem System verfügbar" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Bezeichnung für das Gerät:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Abbrechen" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nein" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Bilder : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Ein Werkzeug um ISO-Abbilder auf ein Gerät zu schreiben" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -666,11 +666,11 @@ msgstr "" "Sie müssen einen USB-Stick einstecken, auf welchem das \n" "Abbild geschrieben werden kann." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Aktualisieren" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "erlaube Debug-Informationen" @@ -732,6 +732,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Die Signatur für %s ist ungültig." +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Persistente Partition geöffnet: Formatiere..." + #~ msgid "Target Device: " #~ msgstr "Zielgerät: " diff --git a/po/el.po b/po/el.po index e212674..77c38b3 100644 --- a/po/el.po +++ b/po/el.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-04-05 04:58+0000\n" "Last-Translator: Dimitrios Glentadakis \n" "Language-Team: Greek (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -104,8 +104,8 @@ msgid "opening encrypted partition" msgstr "άνοιγμα της κρυπτογραφημένης κατάτμησης" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Ανοίχτηκε μια μόνιμη κατάτμηση: Γίνεται μορφοποίηση..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -193,7 +193,7 @@ msgstr "Σφάλμα πιστοποίησης." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Πρόοδος" @@ -234,8 +234,8 @@ msgstr "Η συσκευή είναι πολύ μικρή για να χωρέσ msgid "Writing confirmation" msgstr "Επιβεβαίωση εγγραφής" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Προειδοποίηση" @@ -302,23 +302,23 @@ msgstr "Επιτυχία" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -328,24 +328,24 @@ msgstr "" " θα αχρηστεύσει τη συσκευή ή το αντίγραφο ασφαλείας.\n" " Θέλετε σίγουρα να εξέλθετε εν μέσω της εγγραφής;" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Σφάλμα" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -359,11 +359,11 @@ msgstr "" "ασφαλείας των προηγούμενων περιεχόμενων του USB στον σκληρό σας δίσκο, και " "επαναφέρει το USB στην προηγούμενη κατάσταση." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Προσφέρει επίσης την δυνατότητα μορφοποίησης της συσκευής USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -371,14 +371,14 @@ msgstr "" "Το IsoDumper μπορεί να εκτελεστεί είτε από το μενού είτε από το τερματικό " "με την εντολή 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" "Θα σας ζητηθεί ο κωδικός πρόσβασης υπερχρήστη αν χρειαστεί από το πρόγραμμα." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -391,7 +391,7 @@ msgstr "" "τη συσκευή.
(Ίσως χρειαστεί να κλείσετε τα αυτομάτως ανοιγμένα " "παράθυρα του διαχειριστή αρχείων)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -406,7 +406,7 @@ msgstr "" "συσκευή: Εκτελεί την διεργασία μετά την εμφάνιση ενός προειδοποιητικού " "διαλόγου." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -416,7 +416,7 @@ msgstr "" "μια νέα κατάτμηση όπου τα δεδομένα από το Ζωντανό σύστημα μπορούν να " "εγγραφούν και να ανακτηθούν μεταξύ των συνεδριών." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -424,11 +424,11 @@ msgstr "" "- Κρυπτογράφηση: η μόνιμη κατάτμηση θα κρυπτογραφηθεί με το κλειδί που " "παρέχεται στο πεδίο Κλειδί." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Η διεργασία εμφανίζεται κάτω από την γραμμή προόδου." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -445,13 +445,13 @@ msgstr "" "για την επαναφορά του περιεχομένου του USB επιλέγοντάς το ως την εικόνα *." "img προς εγγραφή." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" "- Δημιουργία αντίγραφου ασφαλείας της συσκευής: - Εκτελεί την διαδικασία " "λήψης του αντίγραφου ασφαλείας." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -461,15 +461,15 @@ msgstr "" "τον τόμο στην καθορισμένη μορφή exFAT, NTFS ή ext. Μπορείτε να καθορίσετε το " "όνομα του τόμου και τον τύπο σε έναν νέο διάλογο." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Το Isodumper εκτελείται ήδη." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Επιλογή εικόνας" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -483,173 +483,173 @@ msgstr "" " Αν συμφωνήσετε, παρακαλώ μην αποσυνδέσετε τη συσκευή " "κατά τη διάρκεια της διεργασίας που ακολουθεί." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Κλειδί:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Εκτέλεση" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Αναφορά" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Περί" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Βοήθεια" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Έξοδος" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "Το UDisks2 δεν είναι διαθέσιμο στο σύστημά σας" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Ετικέτα για τη συσκευή:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Ακύρωση" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Εντάξει" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ναι" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Όχι" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Εικόνες : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Ένα εργαλείο εγγραφής εικόνων ISO σε μια συσκευή" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -659,11 +659,11 @@ msgstr "" "Δεν βρέθηκαν συσκευές προορισμού.\n" "Πρέπει να συνδέσετε ένα κλειδί USB στο οποίο μπορεί να εγγραφεί η εικόνα." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Ανανέωση" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "να επιτρέπονται οι πληροφορίες αποσφαλμάτωσης" @@ -723,6 +723,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Μη έγκυρη υπογραφή για το %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Ανοίχτηκε μια μόνιμη κατάτμηση: Γίνεται μορφοποίηση..." + #~ msgid "Target Device: " #~ msgstr "Συσκευή προορισμού: " diff --git a/po/en_CA.po b/po/en_CA.po index 29acaf0..f623e1a 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: English (Canada) (http://www.transifex.com/MageiaLinux/mageia/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 6cd3c66..37aa7c7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/" @@ -100,7 +100,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -189,7 +189,7 @@ msgstr "Authentication error." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progress" @@ -229,8 +229,8 @@ msgstr "The device is too small to contain the ISO file." msgid "Writing confirmation" msgstr "Writing confirmation" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Warning" @@ -293,23 +293,23 @@ msgstr "Success" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -319,24 +319,24 @@ msgstr "" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Error" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -345,23 +345,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -369,7 +369,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -378,24 +378,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -405,26 +405,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Choose an image" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -438,173 +438,173 @@ msgstr "" " If you say ok here, please do not unplug the device " "during the following operation." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Execute" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Report" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 is not available on your system" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Label for the device:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancel" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "A tool for writing ISO images to a device" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -614,11 +614,11 @@ msgstr "" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/eo.po b/po/eo.po index c61f52a..d91ad2f 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Esperanto (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Averto" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Eraro" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Faru" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Forlasi" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Nuligi" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "JES" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Jes" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Aktualigi" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/es.po b/po/es.po index a4b2ec9..6970c48 100644 --- a/po/es.po +++ b/po/es.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-21 00:08+0000\n" "Last-Translator: José Alberto Valle Cid \n" "Language-Team: Spanish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -111,8 +111,8 @@ msgid "opening encrypted partition" msgstr "abriendo partición cifrada" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Partición persistente abierta: Formateando..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -200,7 +200,7 @@ msgstr "Error de autentificación" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progreso" @@ -241,8 +241,8 @@ msgstr "El dispositivo es demasiado pequeño para que recibir el archivo ISO." msgid "Writing confirmation" msgstr "Confirmación de escritura" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Advertencia" @@ -306,23 +306,23 @@ msgstr "Éxito" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -331,24 +331,24 @@ msgstr "" "Escritura en progreso. Salir durante el proceso de escritura hará que el " "dispositivo quede inutilizable. ¿Seguro que desea salir durante el proceso?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Error" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -363,11 +363,11 @@ msgstr "" "la unidad flash en el disco duro, y restaurar la unidad flash a su estado " "anterior posteriormente." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "También ofrece una función para formatear el dispositivo USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -375,7 +375,7 @@ msgstr "" "IsoDumper se puede iniciar desde los menús o desde una consola de usuario " "mediante el comando 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -383,7 +383,7 @@ msgstr "" "Se solicita la contraseña de root cuando sea necesario para la operación del " "programa." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -396,7 +396,7 @@ msgstr "" "> (Puede que tenga que cerrar cualquier ventana del administrador de " "archivos abierta automáticamente)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -411,7 +411,7 @@ msgstr "" "en el dispositivo: este botón inicia la operación, con un diálogo de " "advertencia previo." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -421,7 +421,7 @@ msgstr "" "nueva partición donde los datos del sistema Live se pueden escribir y " "recuperar entre sesiones." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -429,11 +429,11 @@ msgstr "" "- Cifrar: la partición persistente se cifrará con la clave proporcionada en " "el campo Clave." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "La operación se muestra en la barra de progreso debajo." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -450,13 +450,13 @@ msgstr "" "archivo de respaldo se puede usar más tarde para restaurar la unidad flash " "seleccionándola como fuente del archivo * .img." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" "- Copia de seguridad del dispositivo: inicie la operación de copia de " "seguridad." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -466,15 +466,15 @@ msgstr "" "el formato especificado FAT, exFAT, NTFS o ext. Puede especificar un nombre " "de volumen y el formato en un nuevo cuadro de diálogo." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Ya hay otra instancia de Isodumpler en ejecución." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Escoger una imagen" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -488,173 +488,173 @@ msgstr "" "Si acepta, por favor no desconecte el dispositivo durante la " "siguiente operación." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Clave:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Ejecutar" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Informe" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Acerca de" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ayuda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Salir" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 no está disponible en su sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etiqueta para el dispositivo:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancelar" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Aceptar" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sí" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "No" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Imágenes : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Una herramienta para escribir imágenes ISO en un dispositivo" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -664,11 +664,11 @@ msgstr "" "No se encontraron dispositivos\n" "Ha de conectar un pen-drive USB en el que se escribirá la imagen." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Refrescar" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "permitir información de depuración" @@ -729,6 +729,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Firma inválida para %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Partición persistente abierta: Formateando..." + #~ msgid "Target Device: " #~ msgstr "Dispositivo de destino: " diff --git a/po/et.po b/po/et.po index 223bc8b..a66c3ea 100644 --- a/po/et.po +++ b/po/et.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-09-13 19:21+0000\n" "Last-Translator: Jaanus Ojangu \n" "Language-Team: Estonian (http://www.transifex.com/MageiaLinux/mageia/" @@ -99,8 +99,8 @@ msgid "opening encrypted partition" msgstr "Krüptitud partitsiooni avamine" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Püsipartitsioon on loodud: vormindamine ..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -188,7 +188,7 @@ msgstr "Tõrge autentimisel." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Edenemine" @@ -227,8 +227,8 @@ msgstr "Seade on ISO-tõmmise mahutamiseks liiga väike." msgid "Writing confirmation" msgstr "Kirjutamise kinnitus" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Hoiatus" @@ -293,23 +293,23 @@ msgstr "Kordaminek" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -319,24 +319,24 @@ msgstr "" " võib seade või varukoopia muutuda kasutamiskõlbmatuks.\n" " Kas tõesti väljuda kirjutamise ajal?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Tõrge" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -349,24 +349,24 @@ msgstr "" "tegevus, kui seda puhtalt käsitsi teha. Lisahüvena saab kogu pulga varasema " "sisu varundada kõvakettale ning taastada hiljem pulga varasem seisund." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Samuti saab USB-pulka vormindada." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" "IsoDumperi võib käivitada nii menüüst kui ka konsoolis käsuga \"isodumper\"." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "Kui seda peaks vaja minema, küsitakse administraatori parooli." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -378,7 +378,7 @@ msgstr "" "võimaldab seda \"uuesti otsida\".
(Sel puhul võib olla tarvilik " "sulgeda automaatselt avatud failihalduri aken.)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -391,7 +391,7 @@ msgstr "" "ISO-tõmmise *.iso-faili (või pulga varukoopiafaili *.img).
- seadmesse " "kirjutamine - see käivitab toimingu, näidates eelnevalt hoiatust." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -401,7 +401,7 @@ msgstr "" "partitsioonile, kuhu saab Live-süsteemist andmeid kirjutada, mis jäävad " "seansside vahel alles." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -409,11 +409,11 @@ msgstr "" "- krüptimine: püsipartitsiooni saab krüptida võtmega, mis on antud väljal " "Võti." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Toimingu edenemist näitab allservas edenemisriba." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -429,11 +429,11 @@ msgstr "" "jagu vaba ruumi. Seda varukoopiafaili saab hiljem tarvitada USB-pulga " "taastamiseks, valides vastava *.img-faili kirjutamiseks." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- seadme varundamine: varundamise käivitamine." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -443,15 +443,15 @@ msgstr "" "määratud vormingus: FAT, exFAT, NTFS või ext. Uues dialoogikastis saab " "määrata seadme nime ja vormingu." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Isodumper juba töötab." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Tõmmise valimine" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -466,173 +466,173 @@ msgstr "" " Kui olete kindel, palun ärge lahutage\n" " seadet selle operatsiooni jooksul." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Võti:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Käivita" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Aruanne" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Teave" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Abi" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Välju" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 ei ole Teie süsteemis saadaval" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Seadme nimi:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Loobu" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Olgu" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Jah" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ei" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Pildid: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Tööriist ISO-tõmmiste kirjutamiseks USB-pulgale" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -643,11 +643,11 @@ msgstr "" "Teil tuleb ühendada USB-pulk,\n" " millele saab tõmmise kirjutada." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Värskenda" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" @@ -706,6 +706,9 @@ msgstr "Rakendus .img- ja .iso-failide kirjutamiseks USB-pulgale" #~ msgid "Invalid signature for %s" #~ msgstr "Vigase allkirjaga %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Püsipartitsioon on loodud: vormindamine ..." + #~ msgid "Target Device: " #~ msgstr "Sihtseade: " diff --git a/po/eu.po b/po/eu.po index aa47ce2..2a0214e 100644 --- a/po/eu.po +++ b/po/eu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Basque (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -97,7 +97,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -186,7 +186,7 @@ msgstr "Egiaztaze errorea." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Aurrerapena" @@ -226,8 +226,8 @@ msgstr "Gailu txikiegia ISO fitxategia eduki behar badu." msgid "Writing confirmation" msgstr "Idazte baiestapena" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Abisua" @@ -290,23 +290,23 @@ msgstr "Arrakasta" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -316,24 +316,24 @@ msgstr "" " gailua edo babeskopia erabilezin bihur liteke.\n" " Ziur daztean zehar irten nahi duzula?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Akatsa" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -342,23 +342,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -366,7 +366,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -375,24 +375,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -402,26 +402,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Aukeratu irudi bat" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -435,173 +435,173 @@ msgstr "" " hemen ok esaten baduzu, mesedez ez deskonektatu Gailua " "ondorengo eragiketan zehar." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Exekutatu" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Berri-ematea" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Laguntza" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Irten" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 ez dago eskuragarri sisteman" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Gailuaren etiketa:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Utzi" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Ados" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Bai" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ez" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "ISO irudiak gailu batera idazteko tresna" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -611,11 +611,11 @@ msgstr "" " Ez da gailurik aurkitu helburuan. \n" " USB giltza bat entxufatu behar duzu bertan irudia idatzi ahal izateko." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Freskatu" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/fa.po b/po/fa.po index 19cbb9a..8530bae 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Persian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "هشدار" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "خطا" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "اجرا" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "گزارش" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "لغو" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "بله" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "نه" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/fi.po b/po/fi.po index 60c99eb..02a8792 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Finnish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Varoitus" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Virhe" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Suorita" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Raportoi" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Peruuta" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Kyllä" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ei" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/fr.po b/po/fr.po index 6e075ea..e5d1668 100644 --- a/po/fr.po +++ b/po/fr.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-04-04 17:12+0000\n" "Last-Translator: stroibe974 \n" "Language-Team: French (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -112,8 +112,8 @@ msgid "opening encrypted partition" msgstr "ouvrir la partition cryptée" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Partition persistante ouverte. Formatage..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -201,7 +201,7 @@ msgstr "Erreur d'authentification." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progression" @@ -242,8 +242,8 @@ msgstr "Ce périphérique est trop petit pour contenir l'image ISO." msgid "Writing confirmation" msgstr "Confirmation de l'écriture" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Avertissement" @@ -310,23 +310,23 @@ msgstr "Succès" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -336,24 +336,24 @@ msgstr "" "inutilisable.\n" "Êtes-vous sûr de vouloir quitter le programme en cours d'écriture ?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Erreur" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -367,11 +367,11 @@ msgstr "" "sauvegarder sur disque dur la totalité du contenu initial de la clé, et par " "conséquent rétablir ladite clé dans son état d'origine." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Il offre la possibilité de formater un périphérique USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -379,7 +379,7 @@ msgstr "" "IsoDumper peut être lancé soit à partir du menu, soit à partir d'une console " "en tant qu'utilisateur avec la commande « isodumper »." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -387,7 +387,7 @@ msgstr "" "Le mot de passe Administrateur sera demandé lorsque nécessaire pour " "l'exécution du programme." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -400,7 +400,7 @@ msgstr "" "devrez peut-être fermer une fenêtre automatiquement ouverte par votre " "gestionnaire de fichiers.)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -414,7 +414,7 @@ msgstr "" "img de sauvegarde du périphérique).
- Écrire sur le périphérique : ce " "bouton lance l'opération, précédée d'un message d'avertissement." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -424,7 +424,7 @@ msgstr "" "nouvelle partition dans laquelle les données du système Live pourront être " "écrites et récupérées d'une session à l'autre." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -432,12 +432,12 @@ msgstr "" "- Crypter : la partition persistante sera cryptée avec la clé fournie dans " "le champ Clé." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" "L'avancée de la tâche est visible dans la barre de progression ci-dessous." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -454,11 +454,11 @@ msgstr "" "USB). Ce fichier de sauvegarde peut être utilisé ultérieurement pour " "restaurer le lecteur flash en sélectionnant le fichier source *.img à écrire." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Sauvegarde du périphérique : lancer la sauvegarde." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -468,15 +468,15 @@ msgstr "" "dans le format spécifié en FAT, exFAT, NTFS ou ext. Vous pourrez indiquer un " "nom de volume et le format dans une nouvelle boîte de dialogue." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Une autre instance d’Isodumper est déjà en cours." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Choisir une image" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -491,173 +491,173 @@ msgstr "" " Si vous cliquez sur ok, ne débranchez pas\n" " le lecteur pendant l'opération." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Clé :" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Exécuter" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Sorties" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "À propos" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Aide" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Quitter" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 n'est pas disponible dans votre système" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Nom du volume :" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Annuler" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Oui" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Non" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Images : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Un outil pour écrire des images ISO sur une clé USB" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -668,11 +668,11 @@ msgstr "" " Vous devez brancher une clé USB\n" " sur laquelle l'image pourra être écrite." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Rafraîchir" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "autoriser les informations de débogage" @@ -734,6 +734,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Signature incorrecte pour %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Partition persistante ouverte. Formatage..." + #~ msgid "Target Device: " #~ msgstr "Périphérique cible : " diff --git a/po/fur.po b/po/fur.po index e371df9..94b41da 100644 --- a/po/fur.po +++ b/po/fur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Friulian (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Avertence" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fal" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Eseguìs" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Scancele" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Si" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "No" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ga.po b/po/ga.po index 19f50f2..5e6f063 100644 --- a/po/ga.po +++ b/po/ga.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Irish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Rabhadh" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Earráid" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Rith" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Tuairisc" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cealaigh" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Tá" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Níl" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/gl.po b/po/gl.po index a1d3e76..9c02d0e 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Galician (http://www.transifex.com/MageiaLinux/mageia/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Advertencia" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Erro" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Execución" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Informar" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Saír" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancelar" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Aceptar" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Si" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Non" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Actualizar" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/gu.po b/po/gu.po index 19fadbe..f181364 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Gujarati (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "ચેતવણી" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "રદ કરો " -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "બરાબર" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "હા" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "ના" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/he.po b/po/he.po index 71f2bb4..29a19e2 100644 --- a/po/he.po +++ b/po/he.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-04-10 19:07+0000\n" "Last-Translator: Omeritzics Games \n" "Language-Team: Hebrew (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -99,7 +99,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -188,7 +188,7 @@ msgstr "שגיאה באימות." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "התקדמות" @@ -227,8 +227,8 @@ msgstr "" msgid "Writing confirmation" msgstr "אישור הרישום" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "אזהרה" @@ -291,47 +291,47 @@ msgstr "הצלחה" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "שגיאה" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -340,23 +340,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -364,7 +364,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -373,24 +373,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -400,26 +400,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "נא לבחור קובץ דמות" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -428,184 +428,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "מפתח:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "הפעלה" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "דיווח" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "על אודות" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "עזרה" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "יציאה" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 אינו זמין במערכת שלך" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "תווית להתקן:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (לינוקס)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "ביטול" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "אישור" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "כן" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "לא" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "כלי לרישום קובצי דמות ISO על התקן" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "ריענון" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/hi.po b/po/hi.po index 370804e..707f7a7 100644 --- a/po/hi.po +++ b/po/hi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Hindi (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "प्रगति" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "चेतावनी" @@ -286,47 +286,47 @@ msgstr "सफलता" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "त्रुटि" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "फ़ाइल चुनें" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "कुंजी :" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "निष्पादन" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "रिपोर्ट" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "बारे में" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "सहायता" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "बंद करें" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "उपकरण हेतु लेबल :" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (विंडोज)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (विंडोज)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (विंडोज)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (लिनक्स)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "रद्द करें" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "ठीक है" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "हाँ" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "नहीं" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "रिफ्रेश करें" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/hr.po b/po/hr.po index 94ac6f6..2991f55 100644 --- a/po/hr.po +++ b/po/hr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Croatian (http://www.transifex.com/MageiaLinux/mageia/" @@ -97,7 +97,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -186,7 +186,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -227,8 +227,8 @@ msgstr "Uređaj je premalen da bi sadržavao ISO datoteku." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Upozorenje" @@ -291,47 +291,47 @@ msgstr "Uspjeh" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Greška" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -340,23 +340,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -364,7 +364,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -373,24 +373,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -400,26 +400,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -428,184 +428,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Izvrši" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Izvještaj" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nije dostupan u vašem sustavu" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Odustani" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "U redu" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Da" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/hu.po b/po/hu.po index c7cf1ae..02db052 100644 --- a/po/hu.po +++ b/po/hu.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Hungarian (http://www.transifex.com/MageiaLinux/mageia/" @@ -101,7 +101,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -190,7 +190,7 @@ msgstr "Azonosítási hiba." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Folyamat" @@ -229,8 +229,8 @@ msgstr "Az eszközön nem fér el az ISO fájl." msgid "Writing confirmation" msgstr "Írás megerősítés" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Figyelmeztetés" @@ -294,23 +294,23 @@ msgstr "Sikerült" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -320,24 +320,24 @@ msgstr "" "bootolni az eszközzel.\n" "Biztos, hogy ki szeretne lépni az írás közepén?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Hiba" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -346,23 +346,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -370,7 +370,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -379,24 +379,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -406,26 +406,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Válasszon ki egy képfájlt" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -437,173 +437,173 @@ msgstr "" "A folyamat letörli az összes adatot az adathordozón. Biztosan folytatod? Ha " "igen, kérjük ne húzd ki az eszközt a művelet során." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Futtatás" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Jelentés" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nem elérhető a rendszerén" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Meghajtó címke:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Mégsem" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Igen" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nem" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Egy eszköz ISO képmások kiírására hordozható eszközre." -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -612,11 +612,11 @@ msgstr "" "Figyelem!\n" "Az céleszköz nem található. Próbáljon újra csatlakoztatni." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/hy.po b/po/hy.po index eb8bad3..6fbb299 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Armenian (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Զգուշացում" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Սխալ" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Հրաժարվել" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Այո" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ոչ" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/id.po b/po/id.po index a1cd1b0..a76b77b 100644 --- a/po/id.po +++ b/po/id.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Indonesian (http://www.transifex.com/MageiaLinux/mageia/" @@ -98,7 +98,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -187,7 +187,7 @@ msgstr "Otentikasi salah." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -227,8 +227,8 @@ msgstr "Perangkat terlalu kecil untuk file ISO." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Peringatan" @@ -292,47 +292,47 @@ msgstr "Berhasil" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Error" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -341,23 +341,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -365,7 +365,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -374,24 +374,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -401,26 +401,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -429,184 +429,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Eksekusi" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Laporan" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 tidak tersedia pada sistem Anda" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Nama perangkat:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Batal" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ya" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Tidak" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/is.po b/po/is.po index 7e77631..d27370b 100644 --- a/po/is.po +++ b/po/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Icelandic (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Aðvörun" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Villa" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Keyra" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Skýrsla" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Hætta við" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Í lagi" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Já" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nei" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Endurlesa" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/isodumper.pot b/po/isodumper.pot index 3f82970..d6c91d8 100644 --- a/po/isodumper.pot +++ b/po/isodumper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: isodumper 1.27\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 10:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -92,7 +92,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -111,220 +111,221 @@ msgstr "" msgid "Target Device: {}" msgstr "" +#. I18N: verb in singular 3rd person #: lib/isodumper.py:268 -msgid "Contents partition(s)" +msgid "Contains this/these partition(s)" msgstr "" -#: lib/isodumper.py:270 +#: lib/isodumper.py:271 #, python-brace-format msgid "{device}: Type={type}, Label={label}" msgstr "" -#: lib/isodumper.py:275 +#: lib/isodumper.py:276 msgid "None" msgstr "" #. I18N these are units for files size -#: lib/isodumper.py:296 +#: lib/isodumper.py:297 msgid "B" msgstr "" -#: lib/isodumper.py:296 +#: lib/isodumper.py:297 msgid "GiB" msgstr "" -#: lib/isodumper.py:296 +#: lib/isodumper.py:297 msgid "KiB" msgstr "" -#: lib/isodumper.py:296 +#: lib/isodumper.py:297 msgid "MiB" msgstr "" -#: lib/isodumper.py:296 lib/isodumper.py:300 +#: lib/isodumper.py:297 lib/isodumper.py:301 msgid "TiB" msgstr "" -#: lib/isodumper.py:304 +#: lib/isodumper.py:305 msgid "Backup to:" msgstr "" -#: lib/isodumper.py:362 +#: lib/isodumper.py:363 msgid "Signature file {} not found\n" msgstr "" -#: lib/isodumper.py:362 +#: lib/isodumper.py:363 msgid "or key expired" msgstr "" -#: lib/isodumper.py:370 +#: lib/isodumper.py:371 msgid "Persistence partition is to use when writing a Live ISO image." msgstr "" -#: lib/isodumper.py:373 +#: lib/isodumper.py:374 msgid "Formatting confirmation in {}" msgstr "" -#: lib/isodumper.py:383 +#: lib/isodumper.py:384 msgid "The device was formatted successfully." msgstr "" -#: lib/isodumper.py:387 +#: lib/isodumper.py:388 msgid "An error occurred while creating a partition." msgstr "" -#: lib/isodumper.py:391 +#: lib/isodumper.py:392 msgid "Authentication error." msgstr "" -#: lib/isodumper.py:395 +#: lib/isodumper.py:396 msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:414 lib/isodumper.py:871 msgid "Progress" msgstr "" -#: lib/isodumper.py:427 lib/isodumper.py:535 lib/isodumper.py:612 +#: lib/isodumper.py:428 lib/isodumper.py:536 lib/isodumper.py:613 msgid "unmounting" msgstr "" -#: lib/isodumper.py:458 +#: lib/isodumper.py:459 msgid "Backup confirmation" msgstr "" -#: lib/isodumper.py:458 +#: lib/isodumper.py:459 msgid "Do you want to overwrite the file?" msgstr "" -#: lib/isodumper.py:466 +#: lib/isodumper.py:467 #, python-format msgid "" "The destination directory is too small to receive the backup (%s Mb needed)" msgstr "" -#: lib/isodumper.py:476 +#: lib/isodumper.py:477 msgid "Backup to: {}" msgstr "" -#: lib/isodumper.py:489 +#: lib/isodumper.py:490 #, python-brace-format msgid "{source} successfully written to {target}" msgstr "" -#: lib/isodumper.py:513 +#: lib/isodumper.py:514 msgid "The device is too small to contain the ISO file." msgstr "" -#: lib/isodumper.py:518 +#: lib/isodumper.py:519 msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:522 lib/isodumper.py:646 lib/isodumper.py:658 +#: lib/isodumper.py:946 lib/isodumper.py:956 msgid "Warning" msgstr "" -#: lib/isodumper.py:522 +#: lib/isodumper.py:523 msgid "The device is bigger than 32 Gbytes. Are you sure you want use it?" msgstr "" -#: lib/isodumper.py:528 +#: lib/isodumper.py:529 #, python-brace-format msgid "Writing {source} to {target}" msgstr "" -#: lib/isodumper.py:530 +#: lib/isodumper.py:531 #, python-brace-format msgid "Executing copy from {source} to {target}" msgstr "" -#: lib/isodumper.py:548 +#: lib/isodumper.py:549 #, python-brace-format msgid "Image {source} written to {target}" msgstr "" -#: lib/isodumper.py:550 +#: lib/isodumper.py:551 msgid "Bytes written: {}" msgstr "" -#: lib/isodumper.py:553 +#: lib/isodumper.py:554 msgid "Checking " msgstr "" -#: lib/isodumper.py:570 +#: lib/isodumper.py:571 msgid "Adding persistent partition" msgstr "" -#: lib/isodumper.py:574 +#: lib/isodumper.py:575 msgid "No key for encrypted partition provided. Adding the partition aborted." msgstr "" -#: lib/isodumper.py:586 +#: lib/isodumper.py:587 msgid "Added encrypted persistent partition" msgstr "" -#: lib/isodumper.py:590 +#: lib/isodumper.py:591 msgid "Adding encrypted persistent partition failed" msgstr "" -#: lib/isodumper.py:601 +#: lib/isodumper.py:602 msgid "Added persistent partition" msgstr "" -#: lib/isodumper.py:603 +#: lib/isodumper.py:604 msgid "Adding persistent partition failed" msgstr "" -#: lib/isodumper.py:635 +#: lib/isodumper.py:636 msgid "Success" msgstr "" -#: lib/isodumper.py:635 +#: lib/isodumper.py:636 msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:637 lib/isodumper.py:648 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:639 lib/isodumper.py:650 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:646 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:658 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:670 lib/isodumper.py:757 lib/isodumper.py:1055 +#: lib/isodumper.py:1063 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:705 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:712 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:712 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:714 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -333,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:718 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:720 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:722 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:723 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -357,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:726 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -366,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:731 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:733 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:734 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:735 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -393,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:739 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:740 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:757 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:781 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:782 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -421,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:789 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:816 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:819 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:821 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:827 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:834 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:842 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:844 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:846 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:847 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:848 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:849 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:850 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:855 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:860 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:862 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:865 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:867 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:868 lib/isodumper.py:1087 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:875 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:878 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:880 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:882 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:905 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:947 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:947 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:954 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:957 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1055 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1063 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1075 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1079 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1081 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1083 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1085 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1088 lib/isodumper.py:1159 msgid "Cancel" msgstr "" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1128 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1138 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1139 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1147 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1148 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1157 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1158 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1201 msgid "allow debug information" msgstr "" diff --git a/po/it.po b/po/it.po index f6a7608..f72781f 100644 --- a/po/it.po +++ b/po/it.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Italian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -99,7 +99,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -188,7 +188,7 @@ msgstr "Errore di autenticazione." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -229,8 +229,8 @@ msgstr "Il dispositivo è troppo piccolo per contenere il file ISO." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Attenzione" @@ -293,47 +293,47 @@ msgstr "Successo" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Errore" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -342,23 +342,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -366,7 +366,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -375,24 +375,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -402,26 +402,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -430,184 +430,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Esegui" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Segnalazione" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 non è disponibile sul tuo sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etichetta per il dispositivo:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Annulla" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sì" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "No" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ja.po b/po/ja.po index fb94b01..85798ee 100644 --- a/po/ja.po +++ b/po/ja.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-14 08:51+0000\n" "Last-Translator: Masanori Kakura \n" "Language-Team: Japanese (http://www.transifex.com/MageiaLinux/mageia/" @@ -97,8 +97,8 @@ msgid "opening encrypted partition" msgstr "暗号化パーティションのオープン" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "永続パーティションを開きました: フォーマットしています..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -186,7 +186,7 @@ msgstr "認証エラーです。" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "進捗状況" @@ -226,8 +226,8 @@ msgstr "このデバイスは ISO ファイルを書き込むには小さすぎ msgid "Writing confirmation" msgstr "書き込みの確認" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "警告" @@ -292,23 +292,23 @@ msgstr "処理に成功しました" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -318,24 +318,24 @@ msgstr "" " デバイスやバックアップが使えなくなります。\n" " 本当に書き込み中に終了しますか?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "エラー" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -349,11 +349,11 @@ msgstr "" "全内容をハード ディスクにバックアップしたり、後でフラッシュ ドライブを前の状" "態に復元したりもできます。" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "USB デバイスをフォーマットする機能も提供します。" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -361,13 +361,13 @@ msgstr "" "IsoDumper はメニューから、またはユーザの端末で 'isodumper' コマンドで起動でき" "ます。" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "プログラムの処理に必要なときに root のパスワードが求められます。" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -379,7 +379,7 @@ msgstr "" "試行' をさせて検出します。
(自動的に開かれたファイル マネージャのウィン" "ドウを閉じる必要があるかもしれません)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -393,7 +393,7 @@ msgstr "" "バックアップ ファイルの *.img) を選択します。
- デバイスへ書き込む: この" "ボタンは書き込みの操作を実行します - その前に警告ダイアログが表示されます。" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -403,7 +403,7 @@ msgstr "" "そこにはライブ システムからデータを書き込んでセッションをまたいで復元すること" "ができます。" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -411,11 +411,11 @@ msgstr "" "- 暗号化: 永続パーティションはのフィールドで与えられた鍵で暗号化され" "ます。" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "実行中の処理は下部の進捗バーに表示されます。" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -431,11 +431,11 @@ msgstr "" "ファイルは後に書き込むファイルとして *.img ファイルを選択することでフラッ" "シュ ドライブの中身を復元するのに使えます。" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- デバイスをバックアップ: バックアップの処理を行います。" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -445,15 +445,15 @@ msgstr "" "exFAT, NTFS, ext のいずれかの指定された形式で作成します。ボリューム名と形式は" "新しく表示されるダイアログ ボックスで指定できます。" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "別の Isodumper が既に動作しています。" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "イメージを選択してください" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -467,173 +467,173 @@ msgstr "" " ここで了承した場合、この後の処理が終わるまでデバイスを抜かないでく" "ださい。" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "鍵:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "実行" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "出力" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "情報" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "ヘルプ" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "終了" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "このシステムでは UDisks2 が利用できません" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "デバイスのラベル:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "キャンセル" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "はい" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "いいえ" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
画像 : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "ISO イメージをデバイスへ書き込むツール" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -643,11 +643,11 @@ msgstr "" "出力先となるデバイスが見つかりません。\n" "イメージが書き込み可能な USB キーを挿し込む必要があります。" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "更新" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "デバッグ情報の出力を許可" @@ -706,6 +706,9 @@ msgstr ".img や .iso のファイルを USB スティックへ書き込む GUI #~ msgid "Invalid signature for %s" #~ msgstr "%s の署名が無効です" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "永続パーティションを開きました: フォーマットしています..." + #~ msgid "Target Device: " #~ msgstr "書き込み先デバイス: " diff --git a/po/ka.po b/po/ka.po index c0a360b..506dbd7 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Georgian (http://www.transifex.com/MageiaLinux/mageia/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "გაფრთხილება" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "შეცდომა" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "გამოქცევა" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "დიახ" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "არა" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ko.po b/po/ko.po index 78e4baf..72a223e 100644 --- a/po/ko.po +++ b/po/ko.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Korean (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "경고" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "오류" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "실행" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "보고" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "취소" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "확인" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "예" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "아니오" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ku.po b/po/ku.po index afe4aaa..444b6dd 100644 --- a/po/ku.po +++ b/po/ku.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Kurdish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Li bala we" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "çewt" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Betal" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Erê" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Na" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ky.po b/po/ky.po index 8a67a36..82c95df 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Kyrgyz (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Эскертүү" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Ката" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Аткаруу" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Калтыруу" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ооба" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Жок" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Жаңыртуу" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/lo.po b/po/lo.po index c1fe426..b5261fe 100644 --- a/po/lo.po +++ b/po/lo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Lao (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "ເກີດການຜິດພາດ" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "ຍົກເລີກ" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/lt.po b/po/lt.po index 7918196..f825099 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Lithuanian (http://www.transifex.com/MageiaLinux/mageia/" @@ -96,7 +96,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -185,7 +185,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -224,8 +224,8 @@ msgstr "Įrenginys yra pernelyg mažas, kad sutalpintų ISO failą." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Dėmėsio" @@ -288,47 +288,47 @@ msgstr "Pavyko" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Klaida" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -337,23 +337,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -361,7 +361,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -370,24 +370,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -397,26 +397,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -425,184 +425,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Vykdyti" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Apie" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Išeiti" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 jūsų sistemoje yra neprieinama" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Įrenginio etiketė:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Atsisakyti" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Gerai" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Taip" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Paveikslai : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Įkelti iš naujo" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ltg.po b/po/ltg.po index 49d81ec..01c69b0 100644 --- a/po/ltg.po +++ b/po/ltg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Latgalian (http://www.transifex.com/MageiaLinux/mageia/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Uzmaneibu" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Kliuda" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Izpildeit" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Ziņuojums" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Atceļt" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Labi" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Da" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nā" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/lv.po b/po/lv.po index bf8e39a..2a9ed05 100644 --- a/po/lv.po +++ b/po/lv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Latvian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Uzmanību" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Kļūda" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Izpildīt" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Ziņojums" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Atcelt" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Jā" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nē" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/mk.po b/po/mk.po index dd433fb..99b9f2d 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Macedonian (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Предупредување" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Грешка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Изврши" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Извештај" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Откажи" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Во ред" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Да" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Не" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/mn.po b/po/mn.po index 77499d6..478e715 100644 --- a/po/mn.po +++ b/po/mn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Mongolian (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Анхааруулга" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Алдаа" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Биелүүлэх" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Хүчингүй" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Тийм" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Үгүй" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/mr.po b/po/mr.po index eac6724..b7acce1 100644 --- a/po/mr.po +++ b/po/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Marathi (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "रद्द करा" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "ठीक आहे" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "होय" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "नाही" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ms.po b/po/ms.po index 7b8bde1..9686f0b 100644 --- a/po/ms.po +++ b/po/ms.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Malay (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -95,7 +95,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -184,7 +184,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -223,8 +223,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Amaran" @@ -287,47 +287,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Ralat" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -336,23 +336,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -360,7 +360,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -369,24 +369,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -396,26 +396,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -424,184 +424,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Laksana" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Laporan" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Batal" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ya" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Tidak" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/mt.po b/po/mt.po index 1e7fc28..ff91358 100644 --- a/po/mt.po +++ b/po/mt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Maltese (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Twissija" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Problema" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Ħaddem" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapport" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Ikkanċella" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Iva" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Le" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/nb.po b/po/nb.po index 29b4f6a..22613d0 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-04-01 16:14+0000\n" "Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/MageiaLinux/mageia/" @@ -97,8 +97,8 @@ msgid "opening encrypted partition" msgstr "åpner kryptert partisjon" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Persistent partisjon er åpnet: formaterer..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -186,7 +186,7 @@ msgstr "Autentiseringsfeil." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Framgang" @@ -227,8 +227,8 @@ msgstr "Enheten er for liten til å romme ISO filen." msgid "Writing confirmation" msgstr "Bekreftelse på skriving" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Advarsel" @@ -293,23 +293,23 @@ msgstr "Suksess" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -319,24 +319,24 @@ msgstr "" "vil gjøre enheten eller sikkerhetskopien ubrukelig.\n" "Er du sikker på at du vil avslutte?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Feil" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -350,11 +350,11 @@ msgstr "" "sikkerhetskopiere hele det tidligere innholdet i flash-stasjonen , og " "deretter gjenopprette flash-stasjonen til sin forrige tilstand." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Det har har også funksjoner for å formatere USB-disken." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -362,7 +362,7 @@ msgstr "" "IsoDumper kan startes enten fra menyene, eller fra en brukerkonsoll med " "kommandoen 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -370,7 +370,7 @@ msgstr "" "Rotpassordet blir etterspurt når dette er nødvendig for programmets " "funksjonering." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -383,7 +383,7 @@ msgstr "" "inn.
(Det kan hende du må lukke alle automatisk åpnede Filhåndterings-" "vinduer)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -397,7 +397,7 @@ msgstr "" "sikkerhetskopifil * .img) for å skrive til.
- Skriv til enhet: Denne " "knappen starter operasjonen - med en forhåndsvarslingsdialog." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -407,7 +407,7 @@ msgstr "" "en ny partisjon der data fra Live-systemet kan skrives og gjenopprettes " "mellom økter." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -415,11 +415,11 @@ msgstr "" "_ Krypter: den persistente partisjonen vil bli kryptert med den tildelte " "nøkkelen i Nøkkelfeltet." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Operasjonen vises i fremdriftslinjen under." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -436,11 +436,11 @@ msgstr "" "brukes til senere å gjenopprette flash-stasjonen ved å velge den som kilde " "* .img-fil." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Sikkerhetskopiere enheten: start sikkerhetskopieringen." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -450,15 +450,15 @@ msgstr "" "formatet i FAT, exFAT, NTFS eller ext. Du kan angi volumnavn og format i en " "ny dialogboks." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Det kjører en annen instans av Isodumper." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Velg et bilde" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -472,173 +472,173 @@ msgstr "" "Sier du OK her, vennligst ikke ta ut enheten i den føgende " "operasjonen." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Nøkkel:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Kjør" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapporter" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Om" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hjelp" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Avslutt" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisk2 er ikke tilgjengelig på ditt system" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etikett for enheten:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Avbryt" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nei" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Bilder : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Et verktøy for å skrive ISO bilder til en enhet" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -648,11 +648,11 @@ msgstr "" "Ingen målenhet ble funnet.\n" "Du må sette inn en USB minnepinne slika t bildet kan bli skrevet." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Oppdater" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "tillat debug informasjon." @@ -712,6 +712,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Ugyldig signatur for %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Persistent partisjon er åpnet: formaterer..." + #~ msgid "Target Device: " #~ msgstr "Målenhet: " diff --git a/po/nl.po b/po/nl.po index 383276b..5876697 100644 --- a/po/nl.po +++ b/po/nl.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-07-04 10:12+0000\n" "Last-Translator: Marcel Pol \n" "Language-Team: Dutch (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -102,8 +102,8 @@ msgid "opening encrypted partition" msgstr "versleutelde partitie openen" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Permanente partitie geopend: formatteren..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -191,7 +191,7 @@ msgstr "Authenticatiefout." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Voortgang" @@ -230,8 +230,8 @@ msgstr "Het opslagmedium is te klein voor het ISO-bestand." msgid "Writing confirmation" msgstr "Schrijfbevestiging" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Waarschuwing" @@ -297,23 +297,23 @@ msgstr "Succes" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -323,24 +323,24 @@ msgstr "" " zal het apparaat of de back-up onbruikbaar maken.\n" " Weet u zeker dat u tijdens het schrijven wilt stoppen?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fout" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia-IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -355,11 +355,11 @@ msgstr "" "naar de harde schijf schrijven en daarmee later de oorspronkelijke staat van " "het flashapparaat herstellen. " -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Het heeft ook een functie om het usb-apparaat te formatteren." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -367,7 +367,7 @@ msgstr "" "IsoDumper kan vanuit het menu gestart worden of met het commando 'isodumper' " "in een terminal." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -375,7 +375,7 @@ msgstr "" "Het rootwachtwoord wordt gevraagd wanneer dit voor het functioneren van het " "programma nodig is." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -388,7 +388,7 @@ msgstr "" "een ingestoken is.
(Het kan nodig zijn een automatisch geopend venster " "van de bestandsbeheerder te sluiten)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -402,7 +402,7 @@ msgstr "" "*.img) dat uitgeschreven moet worden.
- Naar apparaat schrijven: Deze " "knop start de bewerking - na een waarschuwing." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -412,7 +412,7 @@ msgstr "" "worden voor een nieuwe partitie waar gegevens van het Live-systeem " "opgeslagen kunnen worden en dan na een herstart beschikbaar zijn." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -420,11 +420,11 @@ msgstr "" "- Versleutel: de permanente partitie zal versleuteld worden met de sleutel " "die in het Sleutelveld staat." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "De bewerking wordt weergegeven in de voortgangsbalk onderaan." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -441,11 +441,11 @@ msgstr "" "oorspronkelijke staat hersteld worden, door het als bron .img-bestand te " "kiezen om uit te schrijven." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Het apparaat back-uppen: start de back-up-bewerking." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -455,15 +455,15 @@ msgstr "" "in het aangegeven formaat, FAT, exFAT, NTFS of ext. U kunt een volumenaam en " "het formaat opgeven in een nieuw dialoogvenster." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Isodumper werd al eerder gestart en is nog bezig." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Kies een beeldbestand" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -477,173 +477,173 @@ msgstr "" "Indien u OK antwoordt, ontkoppel het apparaat dan nietgedurende de " "volgende bewerking." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Sleutel:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Uitvoeren" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Verslag" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Info" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hulp" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Afsluiten" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 is niet beschikbaar op uw systeem" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Apparaatlabel:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Annuleren" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nee" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Afbeeldingen : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Een tool om ISO-beeldbestanden naar een apparaat te schrijven" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -653,11 +653,11 @@ msgstr "" "Er werden geen doelapparaten gevonden.\n" "Plug een usb-stick in om het beeldbestand naar toe te schrijven." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Verversen" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "debug-informatie toestaan" @@ -717,6 +717,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Ongeldige handtekening voor %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Permanente partitie geopend: formatteren..." + #~ msgid "Target Device: " #~ msgstr "Doelapparaat: " diff --git a/po/nn.po b/po/nn.po index 7fa0762..ed44ea7 100644 --- a/po/nn.po +++ b/po/nn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Norwegian Nynorsk (http://www.transifex.com/MageiaLinux/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Åtvaring" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Feil" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Køyr" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapporter" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Avbryt" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nei" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/pa.po b/po/pa.po index 92434dc..4a7dad0 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/MageiaLinux/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "ਠੀਕ ਹੈ" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "ਹਾਂ" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "ਨਹੀਂ" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/pl.po b/po/pl.po index b3a99b6..9bb155e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Polish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -102,7 +102,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -191,7 +191,7 @@ msgstr "Błąd uwierzytelniania." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -232,8 +232,8 @@ msgstr "Urządzenie jest za małe aby pomieścić obraz ISO." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Ostrzeżenie" @@ -296,47 +296,47 @@ msgstr "Sukces" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Błąd" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -345,23 +345,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -369,7 +369,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -378,24 +378,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -405,26 +405,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -433,184 +433,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Uruchom" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Raport" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nie jest dostępny w twoim systemie" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etykieta dla urządzenia:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Anuluj" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Tak" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nie" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/pt.po b/po/pt.po index 8759dc0..6181248 100644 --- a/po/pt.po +++ b/po/pt.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Portuguese (http://www.transifex.com/MageiaLinux/mageia/" @@ -103,7 +103,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -192,7 +192,7 @@ msgstr "Erro de Autenticação." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Evolução" @@ -233,8 +233,8 @@ msgstr "O dispositivo é demasiado pequeno para conter o ficheiro ISO." msgid "Writing confirmation" msgstr "Confirmação de gravação" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Aviso" @@ -298,23 +298,23 @@ msgstr "Sucesso" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -324,24 +324,24 @@ msgstr "" "irá danificar o dispositivo ou a cópia de segurança.\n" "Tem a certeza de que quer sair durante a gravação?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Erro" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -350,23 +350,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -374,7 +374,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -383,24 +383,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -410,26 +410,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Já existe uma instância isodumper em execução." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Escolha uma imagem" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -442,173 +442,173 @@ msgstr "" "Tem a certeza de que quer continuar?\n" "Se responder OK não retire o dispositivo durante a operação." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Executar" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Reportar" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Acerca" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ajuda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Sair" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 não está disponível no seu sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Nome para o dispositivo:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancelar" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sim" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Não" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Imagens: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Uma ferramenta para gravar imagens ISO em dispositivo amovíveis" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -618,11 +618,11 @@ msgstr "" "Não foram encontrados dispositivos de destino.\n" "Tem de ligar uma unidade USB para onde a imagem pode ser gravada." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Recarregar" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5d4d207..dc75260 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-16 22:38+0000\n" "Last-Translator: Michael Martins \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/MageiaLinux/" @@ -103,7 +103,7 @@ msgid "opening encrypted partition" msgstr "abrindo partição criptografada" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -192,7 +192,7 @@ msgstr "Erro de autenticação." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progresso" @@ -233,8 +233,8 @@ msgstr "O dispositivo é demasiado pequeno para conter o arquivo ISO." msgid "Writing confirmation" msgstr "Gravando confirmação" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Aviso" @@ -300,23 +300,23 @@ msgstr "Sucesso" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -326,24 +326,24 @@ msgstr "" "fará com que o dispositivo ou o backup ficará inutilizável.\n" "Tem certeza que quer parar durante a gravação?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Erro" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -357,11 +357,11 @@ msgstr "" "fazer backup de todo o conteúdo anterior do pen drive no disco rígido e " "restaurar a unidade flash para o seu estado anterior posteriormente." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Ele também dá um recurso para formatar o dispositivo USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -369,7 +369,7 @@ msgstr "" "IsoDumper pode ser iniciado a partir dos menus ou pelo console do usuário " "com o comando 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -377,7 +377,7 @@ msgstr "" "A senha root é solicitada quando isso é necessário para o funcionamento do " "programa." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -390,7 +390,7 @@ msgstr "" "(Talvez seja necessário fechar qualquer janela do Gerenciador de arquivos " "aberta automaticamente)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -405,7 +405,7 @@ msgstr "" "dispositivo: Este botão inicia a operação - antes apresenta um diálogo de " "alerta." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -415,7 +415,7 @@ msgstr "" "nova partição onde os dados do sistema Live podem ser escritos e recuperados " "entre as sessões." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -423,11 +423,11 @@ msgstr "" "- Criptografar: a partição persistente será criptografada com a chave " "fornecida no campo Chave." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "A operação é mostrada na barra de progresso abaixo." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -444,11 +444,11 @@ msgstr "" "mais tarde para restaurar a unidade flash selecionando-a como o arquivo de " "origem *.img para escrever." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Faça backup do dispositivo: inicie a operação de backup." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -458,15 +458,15 @@ msgstr "" "formato especificado em FAT, exFAT, NTFS ou ext. Você pode especificar um " "nome de volume e o formato em uma nova caixa de diálogo." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Já existe outra instância do Isodumper sendo executada." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Escolha uma imagem" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -480,173 +480,173 @@ msgstr "" "Se você dizer ok aqui, por favor não deslpluge o dispositivo durante " "a operação seguinte." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Chave:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Executar" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Relatório" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Sobre" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ajuda" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Sair" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 não está disponível em seu sistema" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Etiqueta para o dispositivo:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Cancelar" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Sim" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Não" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Fotos : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Uma ferramenta de gravação de imagens ISO para dispositivo" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -656,11 +656,11 @@ msgstr "" "Nenhum dispositivo foi encontrado.\n" "Você precisa conectar-se um dispotivoUSB para que a imagem possa ser gravado." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Atualizar" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ro.po b/po/ro.po index f517dd4..10645ef 100644 --- a/po/ro.po +++ b/po/ro.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Romanian (http://www.transifex.com/MageiaLinux/mageia/" @@ -97,7 +97,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -186,7 +186,7 @@ msgstr "Eroare de autentificare." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progresie" @@ -227,8 +227,8 @@ msgstr "Dispozitivul este prea mic ca să conține fișierul ISO." msgid "Writing confirmation" msgstr "Confirmare de scriere" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Avertisment" @@ -291,23 +291,23 @@ msgstr "Succes" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -317,24 +317,24 @@ msgstr "" "face inutilizabil dispozitivul sau copia de siguranță.\n" "Sigur doriți să părăsiți în scursul scrierii?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Eroare" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -343,23 +343,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -367,7 +367,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -376,24 +376,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -403,26 +403,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Alegeți o imagine" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -436,173 +436,173 @@ msgstr "" "Dacă spuneți da aici, vă rugăm să nu deconectați dispozitivul în " "cursul operației următoare." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Execută" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Raport" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Ieșire" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nu este prezent în acest sistem" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Eticheta pentru dispozitivul:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "EXT4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Anulează" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Da" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nu" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "O unealtă pentru scrierea imaginilor ISO pe un dispozitiv" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -612,11 +612,11 @@ msgstr "" "Nu s-a găsit dispozitivul destinație. \n" "Trebuie să conectați o cheie USB pe care să poată fi scrisă imaginea." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ru.po b/po/ru.po index 33cf764..bc396b2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Russian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -103,7 +103,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -192,7 +192,7 @@ msgstr "Ошибка аутентификации." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Прогресс" @@ -233,8 +233,8 @@ msgstr "Устройство слишком маленькое чтобы вме msgid "Writing confirmation" msgstr "Подтверждение записи" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Внимание" @@ -299,23 +299,23 @@ msgstr "Успешно" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -325,24 +325,24 @@ msgstr "" "то устройство или резервная копия будут непригодными.\n" "Вы уверены, что хотите выйти во время записи?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Ошибка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -357,11 +357,11 @@ msgstr "" "предварительного содержания флэшки на диске компьютера и восстановления " "предыдущего состояния флешки из резервной копии." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Предусмотрена также возможность форматирования устройства USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -369,7 +369,7 @@ msgstr "" "IsoDumper можно запустить из меню или консоли пользователя с помощью команды " "«isodumper»." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -377,7 +377,7 @@ msgstr "" "Пароль root должен быть предоставлен, когда это необходимо для выполнения " "программой определённых задач." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -390,7 +390,7 @@ msgstr "" "повторного поиска подходящих носителей данных.
(Вам следует закрыть " "любые автоматически открытые окна программ для управления файлами.)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -405,7 +405,7 @@ msgstr "" "на устройство: эта кнопка начинает выполнение действия с предварительным " "показом диалогового окна предупреждения." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -416,7 +416,7 @@ msgstr "" "портативной Live системы для хранения между сеансами пользования этой " "системой." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -424,13 +424,13 @@ msgstr "" "- Шифрование: постоянный раздел будет зашифрован с помощью ключа, который " "указан в поле Ключ." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" "Продвижение выполнения будет показано с помощью полоски прогресса, которая " "расположена внизу." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -448,28 +448,28 @@ msgstr "" "восстановления содержимого флешки - просто выберите в качестве источника *." "img и запишите на флешку." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" "- Создать резервную копию устройства: запустить действие из резервного " "копирования." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Ещё один экземпляр Isodumper уже запущен." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Выберите изображение" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -484,173 +484,173 @@ msgstr "" "Если Вы ответите \"Да\", пожалуйста, не отключайте\n" "устройство во время операции." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Ключ:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Выполнить" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Отчёт" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "О программе" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Справка" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Выйти" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 не доступен в вашей системе." -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Метка для устройства:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Отмена" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Да" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Нет" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Графика : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Инструмент для записи ISO образов на устройство." -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -662,11 +662,11 @@ msgstr "" "Вам нужно подключить USB-устройство,\n" "на которое можно записать образ." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Обновить" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/sc.po b/po/sc.po index 19a52fc..a96f314 100644 --- a/po/sc.po +++ b/po/sc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Sardinian (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Atentu" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Faddina" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Esecuta" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Arrelata" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Annudda" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Eya" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "No" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/sk.po b/po/sk.po index 31b5856..afe51c5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Slovak (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -99,7 +99,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -188,7 +188,7 @@ msgstr "Chyba overenia práv." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -227,8 +227,8 @@ msgstr "Zariadenie je príliš malé aby mohlo obsahovať ISO obraz." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Upozornenie" @@ -291,47 +291,47 @@ msgstr "Úspech" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Chyba" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -340,23 +340,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -364,7 +364,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -373,24 +373,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -400,26 +400,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -428,184 +428,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Vykonať" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Správa" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nenájdené vo vašom systéme" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Meno pre zariadenie:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Zrušiť" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Áno" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nie" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/sl.po b/po/sl.po index 62d5240..95ff019 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-12 10:59+0000\n" "Last-Translator: Filip Komar \n" "Language-Team: Slovenian (http://www.transifex.com/MageiaLinux/mageia/" @@ -99,8 +99,8 @@ msgid "opening encrypted partition" msgstr "odpiranje šifriranega razdelka" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Odprt razdelek za obdržanje sprememb: formatiranje ..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -188,7 +188,7 @@ msgstr "Napaka overjanja." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "v delu ..." @@ -228,8 +228,8 @@ msgstr "Izbrana naprava nima dovolj prostora za datoteko odtisa diska." msgid "Writing confirmation" msgstr "Potrditev pisanja" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Opozorilo" @@ -295,23 +295,23 @@ msgstr "Uspeh" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -321,24 +321,24 @@ msgstr "" "napravo ali varnostno kopijo pustil v neuporabnem\n" "stanju. Ali res želite takoj prekiniti pisanje?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Napaka" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -351,11 +351,11 @@ msgstr "" "negotovo ali lahko celo nevarno. Dodatno lahko shrani arhiv celotne prejšnje " "vsebine na trdi disk in ga po potrebi povrne nazaj na napravo." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Ponuja tudi možnost formatiranja naprave USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -363,7 +363,7 @@ msgstr "" "Program IsoDumper je možno zagnati tako iz menija kot iz ukazne vrstice z " "ukazom »isodumper«." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -371,7 +371,7 @@ msgstr "" "Poziv za korensko geslo se pojavi samo takrat, kadar ga kako programsko " "opravilo potrebuje." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -383,7 +383,7 @@ msgstr "" "pomnilniška naprava ni bila zaznana ter možnost ponovne detekcije.
(Mogoče bo treba zapreti kako samodejno odprto okno upravitelja datotek)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -397,7 +397,7 @@ msgstr "" "bliskovne pomnilniške naprave *.img) za zapis.
- Pisanje na napravo: Ta " "gumb sproži proces - s predhodnim opozorilnim oknom." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -407,7 +407,7 @@ msgstr "" "uporabljen v novem razdelku, kjer se bodo podatki iz živega sistema lahko " "zapisali in se ohranili med sejami." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -415,11 +415,11 @@ msgstr "" "- Šifriranje: razdelek za obdržanje sprememb bo šifriran s ključem iz polja " "Ključ." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Vrstica napredka in opravilo sta vidna spodaj." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -436,11 +436,11 @@ msgstr "" "v prejšnje stanje bliskovne pomnilniške naprave z izbiro izvorne datoteke *." "img file za zapis." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Arhiviranje vsebine naprave: zagon opravila arhiviranja" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -450,15 +450,15 @@ msgstr "" "izbranem tipu FAT, exFAT, NTFS ali ext. Ime in tip razdelka je možno " "določiti v novem pogovornem oknu." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Okno programa Isodumper je že aktivno." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Izbor odtisa diska" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -472,173 +472,173 @@ msgstr "" "Če boste potrdili, ne odstranjujte\n" "naprave med naslednjim opravilom." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Ključ:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Izvajanje" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Poročilo" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "O programu" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Pomoč" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Končaj" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "Storitev UDisks2 ni na voljo na vašem sistemu" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Oznaka naprave:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Prekliči" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "V redu" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Da" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ne" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Slike : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Orodje za zapis odtisov diskov na napravo" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -648,11 +648,11 @@ msgstr "" "Nobene ciljne naprave ni bilo mogoče najti.\n" "Vstavite ključ USB, na katerega lahko zapišete odtis diska." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Osveževanje" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "omogoči informacije za razhroščevanje" @@ -713,6 +713,9 @@ msgstr "" #~ msgid "Invalid signature for %s" #~ msgstr "Neveljaven podpis za %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Odprt razdelek za obdržanje sprememb: formatiranje ..." + #~ msgid "Target Device: " #~ msgstr "Ciljna naprava: " diff --git a/po/sq.po b/po/sq.po index a0ba9af..3fdb9e2 100644 --- a/po/sq.po +++ b/po/sq.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-04-04 22:09+0000\n" "Last-Translator: Ardit Dani \n" "Language-Team: Albanian (http://www.transifex.com/MageiaLinux/mageia/" @@ -94,8 +94,8 @@ msgid "opening encrypted partition" msgstr "hapja e ndarjes së koduar" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Hapja e ndarjes së vazhdueshme: formatimi..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -183,7 +183,7 @@ msgstr "Gabim vërtetimi." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Progres" @@ -224,8 +224,8 @@ msgstr "Pajisja është shumë e vogël për të përmbajtur dokumentin ISO." msgid "Writing confirmation" msgstr "Konfirmim shkruaj" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Kujdes" @@ -291,23 +291,23 @@ msgstr "Sukses" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -317,24 +317,24 @@ msgstr "" "do të bëjnë pajisjen ose ruajtjen të papërdorshëm.\n" "A jeni i sigurt se doni të dilni gjatë shkrimit?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Gabim" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -348,11 +348,11 @@ msgstr "" "të gjithë përmbajtjen e mëparshme të drive-it në diskun e ngurtë dhe ta " "rivendosë usb në gjendjen e mëparshme më pas." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Jep gjithashtu një veçori për formatimin e pajisjes USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -360,7 +360,7 @@ msgstr "" "IsoDumper mund të lëshohet ose nga menutë, ose një tastierë përdoruesi me " "komandën 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -368,7 +368,7 @@ msgstr "" "Fjalëkalimi root kërkohet kur kjo është e nevojshme për funksionimin e " "programit." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -380,7 +380,7 @@ msgstr "" "'riprovim' ta gjejë pasi të jetë.
(Ju mund të duhet të mbyllni çdo " "dritare të menaxherit të skedarëve të hapur automatikisht)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -394,7 +394,7 @@ msgstr "" "img) për të shkruar.
- Shkruaj pajisjes: Ky buton fillon operacionin - " "me një dialog paralajmërues paraprak." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -404,7 +404,7 @@ msgstr "" "ndarje të re ku të dhënat nga sistemi Live mund të shkruhen dhe të " "rikuperohen midis seancave." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -412,11 +412,11 @@ msgstr "" "- Kriptim: ndarja e vazhdueshme do të kriptohet me çelësin e dhënë në fushën " "Çelës." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Operacioni tregohet në tabelën e progresit poshtë." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -432,11 +432,11 @@ msgstr "" "pajisja USB). Ky skedar i ruajtur mund të përdoret më vonë për të rivendosur " "flash drive duke e zgjedhur atë si skedar burimi *.img për të shkruar." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Ruaj pajisjen: nisni operacionin e ruajtjes." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -446,15 +446,15 @@ msgstr "" "formatin e specifikuar në FAT, exFAT, NTFS ose ext. Ju mund të specifikoni " "një emër vëllimi dhe formati në një kuti të re dialogu." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Ekziston një shembull tjetër i Isodumper që është ekzekutuar tashmë." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Zgjidh një imazh" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -468,173 +468,173 @@ msgstr "" "Nëse vendosni për po, ju lutemi mos hiqni pajisjen gjatë veprimit në " "vazhdim." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Çelës:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Ekzekuto" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Raporti" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Rreth" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Ndihmë" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Dalje" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 nuk është në dispozicion në sistemin tuaj" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Emërtim për pajisjen:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Anulo" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Dakord" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Po" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Jo" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Fotografi : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Një vegël për të shkruar imazhe ISO në pajisje" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -644,11 +644,11 @@ msgstr "" "Pajisja nuk është zbuluar\n" "Ju duhet të fusni një Çelës USB në të cilen imazhi do të shkruhet." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Rifresko" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "lejo korrigjimin e informacionit" @@ -707,6 +707,9 @@ msgstr "Një vegël GUI për të shkruar skedarë .img dhe .iso në USB" #~ msgid "Invalid signature for %s" #~ msgstr "Nënshkrim i pavlefshëm për %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Hapja e ndarjes së vazhdueshme: formatimi..." + #~ msgid "Target Device: " #~ msgstr "Pajisja Synuar:" diff --git a/po/sr.po b/po/sr.po index 4047cd7..37a3b6c 100644 --- a/po/sr.po +++ b/po/sr.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-03-27 09:25+0000\n" "Last-Translator: tomaja \n" "Language-Team: Serbian (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -98,8 +98,8 @@ msgid "opening encrypted partition" msgstr "Отварање криптоване партиције" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Стална партиција отворена: форматирање..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -187,7 +187,7 @@ msgstr "Грешка при аутентификацији." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Напредак" @@ -228,8 +228,8 @@ msgstr "Уређај је сувише мали да садржи ISO фајл." msgid "Writing confirmation" msgstr "Потврда уписа" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Упозорење" @@ -294,23 +294,23 @@ msgstr "Успешно" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -320,24 +320,24 @@ msgstr "" " ће направити уређај или резервну копију неупотребљивом.\n" " Да ли сте сигурни да желите да изађете током уписивања?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Грешка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -351,11 +351,11 @@ msgstr "" "резервну копију ранијег садржаја на флеш уређају на ваш хард диск, и " "обновити флеш уређај на његово претходно стање." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Такође даје могућност форматирања USB уређаја." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -363,13 +363,13 @@ msgstr "" "IsoDumper се може покренути или из меија, или из корисничке конзоле помоћу " "команде 'isodumper'." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "root лозинка се захтева уколико је то протребно за рад програма." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -382,7 +382,7 @@ msgstr "" "
(Можда ћете морати да затворите било који аутоматски отворен прозор " "Фајл Менаџера)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -396,7 +396,7 @@ msgstr "" "уписивање.
- Уписивање на уређај: Овај тастер покреће операцију - уз " "претходни дијалог са упозорењем." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -406,7 +406,7 @@ msgstr "" "партицији где подаци са Live система могу бити уписани и повраћени између " "сесија." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -414,11 +414,11 @@ msgstr "" "- Encrypt: стална партиција ће бити криптована са кључем датим у пољу " "Кључ." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "Операција је приказана у траци напредовања доле." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -434,11 +434,11 @@ msgstr "" "USB уређаја). Ова резервна копија се може касније искористити за обнављање " "флеш уређаја бирањем *.img фајла као извора за уписивање." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Резервна копија уређаја: покретање креирања резервне копије." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -448,15 +448,15 @@ msgstr "" "одређеном формату у FAT, exFAT, NTFS или ext. Можете одредити име партиције " "и формат у новом дијалогу." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Постоји још једна инстанца isodumper-а која је већ покренута." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Изаберите одраз" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -470,173 +470,173 @@ msgstr "" " Уколико овде кажете ок, немојте да искључујете уређај " "током следеће операције." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Кључ:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Изврши" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Извештај" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "О" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Помоћ" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Излаз" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 није доступан на вашем систему" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Ознака за уређај:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Поништи" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "У реду" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Да" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Не" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Слике : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Алат за уписивање ISO одраза на уређај" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -646,11 +646,11 @@ msgstr "" "Циљни уређај није пронађен.\n" "Морате да прикључите USB меморија на који одраз може бити уписан." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Освежи" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "дозволи информације о дебаговању" @@ -709,6 +709,9 @@ msgstr "Графички алат за уписивање .img и .iso на USB #~ msgid "Invalid signature for %s" #~ msgstr "Неисправан потпис за %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Стална партиција отворена: форматирање..." + #~ msgid "Target Device: " #~ msgstr "Циљни уређај: " diff --git a/po/sv.po b/po/sv.po index aa83056..7cd0292 100644 --- a/po/sv.po +++ b/po/sv.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-07-17 23:35+0000\n" "Last-Translator: Kristoffer Grundström \n" "Language-Team: Swedish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -100,7 +100,7 @@ msgid "opening encrypted partition" msgstr "öppnar krypterad partition" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -189,7 +189,7 @@ msgstr "Autentiseringsfel." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Förlopp" @@ -228,8 +228,8 @@ msgstr "Enheten är för liten för att rymma ISO-filen." msgid "Writing confirmation" msgstr "Bekräfta skrivning" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Varning" @@ -293,23 +293,23 @@ msgstr "Lyckades" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -319,24 +319,24 @@ msgstr "" "kommer att göra enheten eller säkerhetskopian oanvändbar.\n" "Är du säker på att du vill avbryta skrivningen?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Fel" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -345,23 +345,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -369,7 +369,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -378,24 +378,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -405,26 +405,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- Säkerhetskopiera enheten: starta proceduren för säkerhetskopiering." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Det finns redan en annan instans av isodumer som redan körs." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Välj en avbild" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -437,173 +437,173 @@ msgstr "" "Är du säker på att du vill fortsätta?\n" "Om du väljer ok här så koppla inte ur enheten under operationen." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Nyckel:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Kör" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapport" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Om" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Hjälp" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Avsluta" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisk2 är inte tillgängligt i ditt system" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Enhetens etikett:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Avbryt" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ja" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Nej" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Bilder : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Ett verktyg för att skriva ISO-filer till en enhet" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -613,11 +613,11 @@ msgstr "" "Ingen målenhet hittades.\n" "Du måste ansluta ett USB-minne som avbilden kan skrivas till." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Uppdatera" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/ta.po b/po/ta.po index 7508f27..6439129 100644 --- a/po/ta.po +++ b/po/ta.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Tamil (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "எச்சரிக்ைக" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "பிழை" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "இயக்கு" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "அறிக்ைக" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "நீக்கு" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "ஓ.கே." -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "ஆம்" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "இல்லை" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/tg.po b/po/tg.po index e630f47..4088df3 100644 --- a/po/tg.po +++ b/po/tg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Tajik (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Огоҳӣ" @@ -288,47 +288,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Хато" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -337,23 +337,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -361,7 +361,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -370,24 +370,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -397,26 +397,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -425,184 +425,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Иҷро кардан" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Маърӯза" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Бекор кардан" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ҳа" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Не" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/th.po b/po/th.po index edce4f5..ce89128 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Thai (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "คำเตือน" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "เกิดการผิดพลาด" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "ดำเนินการ" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "ยกเลิก" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "ตกลง" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "ใช่" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "ไม่ต้อง" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/tl.po b/po/tl.po index 5b873f2..0d64b0f 100644 --- a/po/tl.po +++ b/po/tl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Tagalog (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Babala" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Error" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Execute" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Mag-ulat" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "I-cancel" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Oo" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Hindi" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/tr.po b/po/tr.po index 6679fe7..acf0c73 100644 --- a/po/tr.po +++ b/po/tr.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-02-20 16:07+0000\n" "Last-Translator: Muha Aliss \n" "Language-Team: Turkish (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -101,7 +101,7 @@ msgid "opening encrypted partition" msgstr "şifrelenmiş bölümü açma" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -190,7 +190,7 @@ msgstr "Yetkilendirme hatası." msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "İlerleme" @@ -229,8 +229,8 @@ msgstr "Aygıt ISO dosyasını içermek için çok küçük" msgid "Writing confirmation" msgstr "Yazma onayı" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Uyarı" @@ -294,23 +294,23 @@ msgstr "Başarılı" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -320,24 +320,24 @@ msgstr "" "çıkmak aygıtı veya yedeklemeyi işe yaramaz hale getirir.\n" "Yazma sırasında çıkmak istediğinizden emin misiniz?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Hata" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -351,11 +351,11 @@ msgstr "" "içeriğini sabit diske yedekleyebilir ve daha sonra flash belleği önceki " "durumuna geri getirebilirsiniz." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Ayrıca USB belleğinizi biçimlendirebilir." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -363,7 +363,7 @@ msgstr "" "IsoDumper, menülerden veya 'isodumper' komutuyla bir kullanıcı konsolundan " "başlatılabilir." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -371,7 +371,7 @@ msgstr "" "Programın çalışabilmesi için gerekli olduğunda yönetici parolasını girmenizi " "isteyecektir." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -384,7 +384,7 @@ msgstr "" "olarak açılan herhangi bir Dosya Yöneticisi penceresini kapatmanız " "gerekebilir)." -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -393,24 +393,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -420,26 +420,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Çalışmakta olan başka bir Isodumper isteği var." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Bir imaj seçin" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -452,173 +452,173 @@ msgstr "" " Devam etmek istediğinize emin misiniz?\n" " Eminseniz, lütfen işlem devam ederken aygıtı çıkarmayın." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Çalıştır" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Bildir" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Hakkında" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Yardım" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Çık" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "UDisks2 sisteminizde bulunamadı" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Aygıt etiketi:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "İptal" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Tamam" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Evet" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Hayır" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Görseller : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "ISO imajlarını bir aygıta yazmak için bir araç." -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -628,11 +628,11 @@ msgstr "" " Hedef aygıt bulunamadı.\n" " İmajın üzerine yazılabileceği bir USB bellek takmalısınız." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Yenile" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/uk.po b/po/uk.po index 51dbcbd..18105c9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -96,8 +96,8 @@ msgid "opening encrypted partition" msgstr "відкриття зашифрованого розділу" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "Сталий розділ відкрито: форматуємо…" +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -193,7 +193,7 @@ msgid "An error {} occurred." msgstr "" "Сталася помилка {}." -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "Поступ" @@ -233,8 +233,8 @@ msgstr "Об’єм пам’яті пристрою є надто малим д msgid "Writing confirmation" msgstr "Підтвердження запису" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Попередження" @@ -306,20 +306,20 @@ msgid "The operation completed successfully." msgstr "" "Дію успішно виконано." -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" "Тепер пристрій можна від'єднувати. Збережено \n" "файл журналу (/home/-user-/.isodumper/isodumper.log)." -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" "Також можете ознайомитися із вмістом /var/log/magiback.log" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" @@ -327,7 +327,7 @@ msgstr "" "Виконання дії завершено, але із певними аномаліями.\n" " Уважно ознайомтеся із повідомленнями на панелі журналу" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -338,25 +338,25 @@ msgstr "" "копію.\n" " Ви справді хочете перервати роботу під час запису?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Помилка" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" "Образ ISO для копіювання: " -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "IsoDumper Mageia" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -371,11 +371,11 @@ msgstr "" "вмісту флешки на диску комп'ютера та відновлення попереднього стану флешки з " "резервної копії." -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "Передбачено також можливість форматування пристрою USB." -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." @@ -383,7 +383,7 @@ msgstr "" "IsoDumper можна запустити з меню або консолі користувача за допомогою " "команди «isodumper»." -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." @@ -391,7 +391,7 @@ msgstr "" "Пароль root має бути надано, коли це потрібно для виконання програмою певних " "завдань." -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -404,7 +404,7 @@ msgstr "" "для повторного пошуку придатних носіїв даних.
(Вам варто закрити будь-" "які автоматично відкриті вікна програм для керування файлами.)" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -418,7 +418,7 @@ msgstr "" "img), який слід записати.
- Записати на пристрій: ця кнопка розпочинає " "виконання дії із попереднім показом діалогового вікна попередження." -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -428,7 +428,7 @@ msgstr "" "використано для розділу, на який можна записувати дані з портативної системи " "для зберігання між сеансами користування цієї системою." -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." @@ -436,13 +436,13 @@ msgstr "" "- Зашифрувати: сталий розділ буде зашифровано за допомогою ключа, який " "вказано у полі Ключ." -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" "Поступ виконання дії буде показано за допомогою смужки поступу, яку " "розташовано внизу." -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -459,12 +459,12 @@ msgstr "" "файлом резервної копії можна буде пізніше скористатися для відновлення " "вмісту флешки — просто виберіть його як джерело *.img і запишіть на флешку." -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" "- Створити резервну копію пристрою: запустити дію із резервного копіювання." -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -474,15 +474,15 @@ msgstr "" "форматі — FAT, exFAT, NTFS або ext. Ви можете вказати назву тому та формат у " "новому діалоговому вікні." -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Вже запущено інший екземпляр isodumper." -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "Виберіть образ" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -497,196 +497,196 @@ msgstr "" "Якщо ви підтвердите запис, будь ласка, не демонтуйте\n" " пристрій протягом наступної операції." -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" "Isodumper {}" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" "Виберіть пристрій для роботи:" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" "Оновити список" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" "Виберіть дії" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" "Створити резервну копію пристрою у:" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" "Записати образ з:" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" "Створити розділ такого типу:" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" "Тип:" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" "FAT 32" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" "ext4" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" "NTFS" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" "exfat" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" "Сталий розділ" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" "Мітка:" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" "Зашифрувати розділ за допомогою LUKS з таким ключем:" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "Ключ:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" "Виконання" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" "Коли ви певні, що усі параметри вказано правильно, запустіть:" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Виконати" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Звіт" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "Про програму" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "Довідка" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "Вийти" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "У вашій системі немає UDisks2" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" "Продовжити?" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" "Перевірку чинності підпису GPG файла контрольної суми не пройдено!" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" "Файл контрольної суми підписано" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" "Не знайдено підпису GPG або строк дії ключа вичерпано. Ви справді хочете скористатися цим образом?" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" "Не вибрано образу для резервної копії." -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" "Не вибрано образу для запису." -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "Мітка для пристрою:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Скасувати" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "Гаразд" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Так" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Ні" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Графіка: Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "Інструмент для запису образів ISO на диск" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -696,11 +696,11 @@ msgstr "" "Пристроїв призначення не знайдено.\n" "Вам слід з’єднати з комп’ютером флешку USB, на яку може бути записано образ." -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "Оновити" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "дозволити діагностичні відомості" @@ -785,6 +785,9 @@ msgstr "" #~ msgid "Partition {} is busy" #~ msgstr "Розділ {} зайнято" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "Сталий розділ відкрито: форматуємо…" + #~ msgid "Target Device: " #~ msgstr "Пристрій призначення: " diff --git a/po/ur.po b/po/ur.po index 5ef7de4..5c23235 100644 --- a/po/ur.po +++ b/po/ur.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Urdu (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "انتباه" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "غلطی" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/uz.po b/po/uz.po index db30639..70af33a 100644 --- a/po/uz.po +++ b/po/uz.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Uzbek (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Diqqat" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Xato" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Bajarish" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Xabar berish" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Bekor qilish" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ha" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Yoʻq" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/vi.po b/po/vi.po index bd70649..a477d46 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Vietnamese (http://www.transifex.com/MageiaLinux/mageia/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Cảnh báo" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Lỗi" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Thực thi" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Báo cáo" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Bỏ qua" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Có" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Không" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/wa.po b/po/wa.po index 21910bf..a1cdade 100644 --- a/po/wa.po +++ b/po/wa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Walloon (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -94,7 +94,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -183,7 +183,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -222,8 +222,8 @@ msgstr "L' éndjin est pår trop ptit po contnu l' fitchî ISO." msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "Adviertixhmint" @@ -286,47 +286,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "Aroke" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -335,23 +335,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -359,7 +359,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -368,24 +368,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -395,26 +395,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -423,184 +423,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "Enonder" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "Rapoirt" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Rinoncî" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "'l est Bon" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Oyi" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Neni" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/xh.po b/po/xh.po index c3f8005..6a1efc2 100644 --- a/po/xh.po +++ b/po/xh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Xhosa (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Rhoxisa" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "KULUNGILE" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Ewe" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Hayi" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index e7277ed..d6ccad0 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2021-09-04 18:47+0000\n" "Last-Translator: Dmitry \n" "Language-Team: Chinese (China) (http://www.transifex.com/MageiaLinux/mageia/" @@ -100,8 +100,8 @@ msgid "opening encrypted partition" msgstr "打开加密分区" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." -msgstr "持久分区已打开:正在格式化..." +msgid "Persistent partition opened. Formatting..." +msgstr "" #: backend/raw_write.py:340 msgid "formatting encrypted partition" @@ -189,7 +189,7 @@ msgstr "授权错误。" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "进度" @@ -228,8 +228,8 @@ msgstr "设备空间太小而不能容纳ISO文件。" msgid "Writing confirmation" msgstr "确认写入" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "警告" @@ -292,23 +292,23 @@ msgstr "成功" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -317,24 +317,24 @@ msgstr "" "当前正在写入。如果现在退出,设备或备份\n" "将变得无法使用。您确定要在写入时退出吗?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "错误" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "Mageia IsoDumper" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -346,23 +346,23 @@ msgstr "" "作具有潜在危险性。 作为奖励,它还可以将闪存驱动器之前的全部内容备份到硬盘上," "然后将闪存驱动器恢复到以前的状态。" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "它还提供了格式化 USB 设备的功能。" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "IsoDumper 可以从菜单或使用命令 “isodumper” 的用户控制台启动。" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "当程序运行需要 root 密码时,会请求 root 密码。" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -373,7 +373,7 @@ msgstr "" "有插入闪存驱动器,一旦插入就允许“重试”找到它。
(您可能必须关闭任何自动" "打开的文件管理器窗口)。" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -385,7 +385,7 @@ msgstr "" "择。
- 写入映像:选择要写入的源 ISO 映像 *.iso(或闪存驱动器备份文件 *." "img)。
- 写入设备:此按钮启动操作 - 带有预先警告对话框。" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " @@ -394,17 +394,17 @@ msgstr "" "- 添加持久分区:剩余空间将用于新分区,可以在会话之间写入和恢复来自 Live 系统" "的数据。" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "- 加密:持久分区将使用中提供的密钥加密 场。" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "操作显示在下方的进度条中。" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -418,11 +418,11 @@ msgstr "" "(与 USB 设备大小相同)。 这个备份文件可以在以后通过选择它作为源 *.img 文件来" "恢复闪存驱动器来写出。" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "- 备份:开始备份操作。" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " @@ -431,15 +431,15 @@ msgstr "" "- 格式化设备:在整个卷上以 FAT、exFAT、NTFS 或 ext 的指定格式创建一个唯一分" "区。 您可以在新对话框中指定卷名和格式。" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "Isodumper 的另一个实例已经在运行。" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "选择一个镜像" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -451,173 +451,173 @@ msgstr "" "目标设备上的所有数据将被破坏,您仍然希望继续吗?\n" "如果您确定继续,请不要在后续的操作过程中拔出设备。" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "键:" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "执行" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "报告" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "关于" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "帮助" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "退出" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "您的系统上没有UDisk2" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "设备的卷标" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "exFAT (Windows)" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "取消" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "确定" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "是" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "否" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "Oliver Grawert
Papoteur
Pictures : Timothée Giet" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "一个将 ISO 镜像文件导入 U 盘的工具。" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -627,11 +627,11 @@ msgstr "" "未发现目标设备。 \n" " 需要插入U盘以备镜像文件写入。" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "刷新" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "允许调试信息" @@ -690,6 +690,9 @@ msgstr "一个用于将 .img 和 .iso 文件写入 U 盘的图形化工具" #~ msgid "Invalid signature for %s" #~ msgstr "无效的签名 %s" +#~ msgid "Persistent partition opened: formatting..." +#~ msgstr "持久分区已打开:正在格式化..." + #~ msgid "Target Device: " #~ msgstr "目标设备: " diff --git a/po/zh_HK.po b/po/zh_HK.po index 52c53fd..4828b65 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/MageiaLinux/" @@ -97,7 +97,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -186,7 +186,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -225,8 +225,8 @@ msgstr "設備擁有的容量太少,無法儲存ISO檔案。" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "警告" @@ -289,47 +289,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "錯誤" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -338,23 +338,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -362,7 +362,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -371,24 +371,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -398,26 +398,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -426,184 +426,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "取消" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index e19284b..79f6ac2 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/MageiaLinux/mageia/" @@ -98,7 +98,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -187,7 +187,7 @@ msgstr "認證錯誤。" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "進度" @@ -226,8 +226,8 @@ msgstr "這個裝置太小而放不下 ISO 檔案。" msgid "Writing confirmation" msgstr "寫入確認" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "警告" @@ -290,23 +290,23 @@ msgstr "成功" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" @@ -316,24 +316,24 @@ msgstr "" " 將使裝置或備份無法使用。\n" " 你確定要在寫入時退出嗎?" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "錯誤" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "IsoDumper" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -342,23 +342,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -366,7 +366,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -375,24 +375,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -402,26 +402,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "選擇一個映像檔" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -434,173 +434,173 @@ msgstr "" "  你確定要繼續嗎?\n" "  如果你確定要繼續,請在稍後操作過程中不要移除裝置。" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "執行" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "回報" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "關於" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "說明" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "離開" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "裝置的標籤:" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "FAT 32 (Windows)" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "NTFS (Windows)" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "ext4 (Linux)" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "取消" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "確定" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "是" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "否" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "用於將 ISO 映像檔寫入裝置的工具" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" @@ -610,11 +610,11 @@ msgstr "" "沒有找到目的裝置\n" "您需要插入可以寫入映像檔的 USB 隨身碟。" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "重新整理" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" diff --git a/po/zu.po b/po/zu.po index adcc1d1..c877eca 100644 --- a/po/zu.po +++ b/po/zu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-12 21:45+0200\n" +"POT-Creation-Date: 2021-10-13 09:07+0200\n" "PO-Revision-Date: 2020-06-29 10:00+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Zulu (http://www.transifex.com/MageiaLinux/mageia/language/" @@ -93,7 +93,7 @@ msgid "opening encrypted partition" msgstr "" #: backend/raw_write.py:317 -msgid "Persistent partition opened: formatting..." +msgid "Persistent partition opened. Formatting..." msgstr "" #: backend/raw_write.py:340 @@ -182,7 +182,7 @@ msgstr "" msgid "An error {} occurred." msgstr "" -#: lib/isodumper.py:413 lib/isodumper.py:869 +#: lib/isodumper.py:413 lib/isodumper.py:870 msgid "Progress" msgstr "" @@ -221,8 +221,8 @@ msgstr "" msgid "Writing confirmation" msgstr "" -#: lib/isodumper.py:521 lib/isodumper.py:644 lib/isodumper.py:656 -#: lib/isodumper.py:944 lib/isodumper.py:954 +#: lib/isodumper.py:521 lib/isodumper.py:645 lib/isodumper.py:657 +#: lib/isodumper.py:945 lib/isodumper.py:955 msgid "Warning" msgstr "" @@ -285,47 +285,47 @@ msgstr "" msgid "The operation completed successfully." msgstr "" -#: lib/isodumper.py:636 lib/isodumper.py:646 +#: lib/isodumper.py:636 lib/isodumper.py:647 msgid "" "You are free to unplug it now, a logfile \n" -"(/home/-user-/.isodumper/isodumper.log has been saved." +"/home/-user-/.isodumper/isodumper.log has been saved." msgstr "" -#: lib/isodumper.py:637 lib/isodumper.py:648 +#: lib/isodumper.py:638 lib/isodumper.py:649 msgid "You may also consult /var/log/magiback.log" msgstr "" -#: lib/isodumper.py:644 +#: lib/isodumper.py:645 msgid "" "The operation completed, but with anomalies.\n" " Check carefully the messages in log view" msgstr "" -#: lib/isodumper.py:656 +#: lib/isodumper.py:657 msgid "" "Writing is in progress. Exiting during writing \n" " will make the device or the backup unusable.\n" " Are you sure you want to quit during writing?" msgstr "" -#: lib/isodumper.py:668 lib/isodumper.py:755 lib/isodumper.py:1053 -#: lib/isodumper.py:1061 +#: lib/isodumper.py:669 lib/isodumper.py:756 lib/isodumper.py:1054 +#: lib/isodumper.py:1062 msgid "Error" msgstr "" -#: lib/isodumper.py:703 +#: lib/isodumper.py:704 msgid "ISO Image to copy: " msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "IsoDumper" msgstr "" -#: lib/isodumper.py:710 +#: lib/isodumper.py:711 msgid "Mageia IsoDumper" msgstr "" -#: lib/isodumper.py:712 +#: lib/isodumper.py:713 msgid "" "This GUI program is primarily for safely writing a bootable ISO image to a " "USB flash drive, an operation devious & potentially hazardous when done by " @@ -334,23 +334,23 @@ msgid "" "state subsequently." msgstr "" -#: lib/isodumper.py:716 +#: lib/isodumper.py:717 msgid "It gives also a feature for formatting the USB device." msgstr "" -#: lib/isodumper.py:718 +#: lib/isodumper.py:719 msgid "" "IsoDumper can be launched either from the menus, or a user console with the " "command 'isodumper'." msgstr "" -#: lib/isodumper.py:720 +#: lib/isodumper.py:721 msgid "" "The root password is solicited when this is necessary for the program's " "operation." msgstr "" -#: lib/isodumper.py:721 +#: lib/isodumper.py:722 msgid "" "The flash drive can be inserted beforehand or once the program is started. " "In the latter case, a dialogue will say that there is no flash drive " @@ -358,7 +358,7 @@ msgid "" "close any automatically opened File Manager window)." msgstr "" -#: lib/isodumper.py:724 +#: lib/isodumper.py:725 msgid "" "The fields of the main window are as follows:
- Device to work on: the " "device of the USB flash drive, a drop-down list to choose from.
- Write " @@ -367,24 +367,24 @@ msgid "" "operation - with a prior warning dialogue." msgstr "" -#: lib/isodumper.py:729 +#: lib/isodumper.py:730 msgid "" "- Add a persistent partition: the remaining space will be used in a new " "partition where data from the Live system can be written and recovered " "between sessions." msgstr "" -#: lib/isodumper.py:731 +#: lib/isodumper.py:732 msgid "" "- Encrypt: the persistent partition will be encrypted with the key provided " "in Key field." msgstr "" -#: lib/isodumper.py:732 +#: lib/isodumper.py:733 msgid "The operation is shown in the progress bar beneath." msgstr "" -#: lib/isodumper.py:733 +#: lib/isodumper.py:734 msgid "" "- Backup to: define the name and placement of the backup image file. The " "current flash drive will be backed up to a disc file. Note that the entire " @@ -394,26 +394,26 @@ msgid "" "the source *.img file to write out." msgstr "" -#: lib/isodumper.py:737 +#: lib/isodumper.py:738 msgid "- Backup the device: launch the backup operation." msgstr "" -#: lib/isodumper.py:738 +#: lib/isodumper.py:739 msgid "" "- Format the device: create an unique partition on the entire volume in the " "specified format in FAT, exFAT, NTFS or ext. You can specify a volume name " "and the format in a new dialog box." msgstr "" -#: lib/isodumper.py:755 +#: lib/isodumper.py:756 msgid "There is another instance of Isodumper already running." msgstr "" -#: lib/isodumper.py:779 +#: lib/isodumper.py:780 msgid "Choose an image" msgstr "" -#: lib/isodumper.py:780 +#: lib/isodumper.py:781 msgid "" "Warning\n" "This will destroy all data on the target device,\n" @@ -422,184 +422,184 @@ msgid "" "during the following operation." msgstr "" -#: lib/isodumper.py:787 +#: lib/isodumper.py:788 msgid "Isodumper {}" msgstr "" -#: lib/isodumper.py:814 +#: lib/isodumper.py:815 msgid "Select the device to work on:" msgstr "" -#: lib/isodumper.py:817 +#: lib/isodumper.py:818 msgid "Update list" msgstr "" -#: lib/isodumper.py:819 +#: lib/isodumper.py:820 msgid "Select operations" msgstr "" -#: lib/isodumper.py:825 +#: lib/isodumper.py:826 msgid "Backup the device to:" msgstr "" -#: lib/isodumper.py:832 +#: lib/isodumper.py:833 msgid "Write Image from:" msgstr "" -#: lib/isodumper.py:840 +#: lib/isodumper.py:841 msgid "Create partition of type:" msgstr "" -#: lib/isodumper.py:842 +#: lib/isodumper.py:843 msgid "Type:" msgstr "" -#: lib/isodumper.py:844 +#: lib/isodumper.py:845 msgid "FAT 32" msgstr "" -#: lib/isodumper.py:845 +#: lib/isodumper.py:846 msgid "ext4" msgstr "" -#: lib/isodumper.py:846 +#: lib/isodumper.py:847 msgid "NTFS" msgstr "" -#: lib/isodumper.py:847 +#: lib/isodumper.py:848 msgid "exfat" msgstr "" -#: lib/isodumper.py:848 +#: lib/isodumper.py:849 msgid "Persistent partition" msgstr "" -#: lib/isodumper.py:853 +#: lib/isodumper.py:854 msgid "Label:" msgstr "" -#: lib/isodumper.py:858 +#: lib/isodumper.py:859 msgid "Encrypt partition using LUKS, with key:" msgstr "" -#: lib/isodumper.py:860 +#: lib/isodumper.py:861 msgid "Key:" msgstr "" -#: lib/isodumper.py:863 +#: lib/isodumper.py:864 msgid "Execution" msgstr "" -#: lib/isodumper.py:865 +#: lib/isodumper.py:866 msgid "When you are sure all options are correct, start:" msgstr "" -#: lib/isodumper.py:866 lib/isodumper.py:1085 +#: lib/isodumper.py:867 lib/isodumper.py:1086 msgid "Execute" msgstr "" -#: lib/isodumper.py:873 +#: lib/isodumper.py:874 msgid "Report" msgstr "" -#: lib/isodumper.py:876 +#: lib/isodumper.py:877 msgid "About" msgstr "" -#: lib/isodumper.py:878 +#: lib/isodumper.py:879 msgid "Help" msgstr "" -#: lib/isodumper.py:880 +#: lib/isodumper.py:881 msgid "Quit" msgstr "" -#: lib/isodumper.py:903 +#: lib/isodumper.py:904 msgid "UDisks2 is not available on your system" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "Do you want to continue?" msgstr "" -#: lib/isodumper.py:945 +#: lib/isodumper.py:946 msgid "The validation of the GPG signature of the checksum file failed !" msgstr "" -#: lib/isodumper.py:952 +#: lib/isodumper.py:953 msgid "The checksum file is signed" msgstr "" -#: lib/isodumper.py:955 +#: lib/isodumper.py:956 msgid "" "No GPG signature has been found or the key is expired. Are you sure you want " "to use this image?" msgstr "" -#: lib/isodumper.py:1053 +#: lib/isodumper.py:1054 msgid "No image for backup is selected." msgstr "" -#: lib/isodumper.py:1061 +#: lib/isodumper.py:1062 msgid "No image to write is selected." msgstr "" -#: lib/isodumper.py:1073 +#: lib/isodumper.py:1074 msgid "Label for the device:" msgstr "" -#: lib/isodumper.py:1077 +#: lib/isodumper.py:1078 msgid "FAT 32 (Windows)" msgstr "" -#: lib/isodumper.py:1079 +#: lib/isodumper.py:1080 msgid "exFAT (Windows)" msgstr "" -#: lib/isodumper.py:1081 +#: lib/isodumper.py:1082 msgid "NTFS (Windows)" msgstr "" -#: lib/isodumper.py:1083 +#: lib/isodumper.py:1084 msgid "ext4 (Linux)" msgstr "" -#: lib/isodumper.py:1086 lib/isodumper.py:1157 +#: lib/isodumper.py:1087 lib/isodumper.py:1158 msgid "Cancel" msgstr "Khansela" -#: lib/isodumper.py:1126 +#: lib/isodumper.py:1127 msgid "OK" msgstr "OK" -#: lib/isodumper.py:1136 +#: lib/isodumper.py:1137 msgid "Yes" msgstr "Yebo" -#: lib/isodumper.py:1137 +#: lib/isodumper.py:1138 msgid "No" msgstr "Cha" -#: lib/isodumper.py:1145 +#: lib/isodumper.py:1146 msgid "Oliver Grawert
Papoteur
Pictures : Timothée Giet" msgstr "" -#: lib/isodumper.py:1146 +#: lib/isodumper.py:1147 msgid "A tool for writing ISO images to a device" msgstr "" -#: lib/isodumper.py:1155 +#: lib/isodumper.py:1156 msgid "" "Warning\n" "No target devices were found.\n" "You need to plug in a USB Key to which the image can be written." msgstr "" -#: lib/isodumper.py:1156 +#: lib/isodumper.py:1157 msgid "Refresh" msgstr "" -#: lib/isodumper.py:1199 +#: lib/isodumper.py:1200 msgid "allow debug information" msgstr "" -- cgit v1.2.1