aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2023-01-26 10:12:26 +0100
committerPapoteur <papoteur@mageia.org>2023-01-26 10:12:26 +0100
commit82bb5298cdc0124f69afc548dff6b241f6b84260 (patch)
tree0ac07792a5a9cc94d9f9cee82cda6fd498e6f864 /lib
parentd1ce46da2feb77f3ee61227923695ed2f65e8662 (diff)
downloadisodumper-82bb5298cdc0124f69afc548dff6b241f6b84260.tar
isodumper-82bb5298cdc0124f69afc548dff6b241f6b84260.tar.gz
isodumper-82bb5298cdc0124f69afc548dff6b241f6b84260.tar.bz2
isodumper-82bb5298cdc0124f69afc548dff6b241f6b84260.tar.xz
isodumper-82bb5298cdc0124f69afc548dff6b241f6b84260.zip
Update translation catalog with one new string
Diffstat (limited to 'lib')
-rwxr-xr-xlib/isodumper.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index b83dad4..efb6b51 100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -742,11 +742,9 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
return
def __init__(self, debug=False):
- #: placeholder for release number
APP = "isodumper"
- DIR = "/usr/share/locale"
# Call translation catalog
- gettext.install(APP, localedir=DIR, names=('ngettext',))
+ gettext.install(APP)
# Check that there is no other instance running
current_pid = psutil.Process().pid
@@ -822,7 +820,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
self.operationbox = self.factory.createVBox(self.operation_frame)
self.labelbox = self.factory.createHBox(self.operationbox)
self.labelbox.setStretchable(0, True)
- self.factory.createLabel(self.labelbox, "The selected operations will be executed in order from top to bottom.\nIf both write image and create partition are selected, the partition\nwill be created in the free space after the image.").setStretchable(0, True)
+ self.factory.createLabel(self.labelbox, _("The selected operations will be executed in order from top to bottom.\nIf both write image and create partition are selected, the partition\nwill be created in the free space after the image.")).setStretchable(0, True)
self.backupbox = self.factory.createHBox(self.operationbox)
self.backup_cbox = self.factory.createCheckBox(self.backupbox, _("Backup the device to:"))
self.backup_cbox.setNotify()