From 7cb3d7e8764f34cef847108e3957ada299ffba3f Mon Sep 17 00:00:00 2001 From: Papoteur Date: Mon, 20 Jan 2020 09:48:26 +0100 Subject: Update help text. Split it in shorter bits. --- lib/isodumper.py | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'lib') diff --git a/lib/isodumper.py b/lib/isodumper.py index 23c506b..0766cc9 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -345,10 +345,10 @@ class IsoDumper(object): self.logger(_("Adding persistent partition")) if self.cryptcb.isChecked(): if self.cryptkey.value() == "": - self.logger(_("No key for crypted partition provided. Adding the partition aborted.")) + self.logger(_("No key for encrypted partition provided. Adding the partition aborted.")) else: iface.do_persistence(target,"mgalive-persist",self.cryptkey.value()) - self.logger(_("Added crypted persistent partition")) + self.logger(_("Added encrypted persistent partition")) else: iface.do_persistence(target,"mgalive-persist", "") self.logger(_("Added persistent partition")) @@ -434,32 +434,32 @@ class IsoDumper(object): # self.chooser.set_tooltip_text(self.img_name) def help_dialog(self): - info = Info(_("IsoDumper"),True,_("Mageia IsoDumper
\ -----------------
\ -This GUI program is primarily for safely writing a bootable ISO image to a USB flash drive, \ + info = Info(_("IsoDumper"),True,_("Mageia IsoDumper")+"
\ +----------------
"+ +_("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 hand. As a bonus, it can also back up the\ entire previous
contents of the flash drive onto the hard disc, and restore the flash drive \ -to its previous state subsequently.
\ -It gives also a feature for formatting the USB device.
\ -
\ -IsoDumper can be launched either from the menus, or a user or root console with the command 'isodumper'.
\ -For normal users, the root password is solicited; this is necessary for the program's operation.
\ -The flash drive can be inserted beforehand or once the program is started. In the latter case, a \ +to its previous state subsequently.")+"
"+ +_("It gives also a feature for formatting the USB device.")+"

"+ +_("IsoDumper can be launched either from the menus, or a user console with the command 'isodumper'.")+"
"+ +_("The root password is solicited when this is necessary for the program's operation.")+"
"+ +_("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 inserted, and allow a 'retry' to find it once it is.
\ -(You may have to close any automatically opened File Manager window).
\ -
\ -The fields of the main window are as follows:
\ +(You may have to close any automatically opened File Manager window).")+"

"+ +_("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 Image: to choose the source ISO image *.iso (or flash drive backup file *.img) to write out.
\ -- Write to device: This button launches the operation - with a prior warning dialogue.
\ -The operation is shown in the progress bar beneath.
\ -- Backup to: define the name and placement of the backup image file. The current flash drive \ +- Write to device: This button launches the operation - with a prior warning dialogue.") +"
"+ +_("- 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.")+ "
"+ +_("- Encrypt: the persistent partition will be encrypted with the key provided in Key field.")+ "
"+ +_("The operation is shown in the progress bar beneath.")+"
"+ +_("- 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 flash drive is preserved, regardless of its \ actual contents; ensure that you have the necessary free disc space (the same size as the USB device). \ -This backup file can be used later to restore the flash drive by selecting it as the source *.img file to write out.
\ -- Backup the device: launch the backup operation.
\ -- Format the device: create an unique partition on the entire volume in the specified format in FAT, \ -NTFS or ext. You can specify a volume name and the format in a new dialog box.
")) +This backup file can be used later to restore the flash drive by selecting it as the source *.img file to write out.")+"
"+ +_("- Backup the device: launch the backup operation.")+"
"+ +_("- Format the device: create an unique partition on the entire volume in the specified format in FAT, \ +NTFS or ext. You can specify a volume name and the format in a new dialog box.")+"
") if self.ask_OK(info) : return @@ -540,7 +540,7 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.