aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2019-08-15 18:03:41 +0200
committerPapoteur <papoteur@mageia.org>2019-08-15 18:03:41 +0200
commitfcb66263ae0dd664d3a373d5eeb015fd44b2e252 (patch)
tree34bce4b1803c86d951e9dcb92ce748f495548dec /lib
parenteb4bcba5349f9ff5c89e1733acb36aa277efa52f (diff)
downloadisodumper-fcb66263ae0dd664d3a373d5eeb015fd44b2e252.tar
isodumper-fcb66263ae0dd664d3a373d5eeb015fd44b2e252.tar.gz
isodumper-fcb66263ae0dd664d3a373d5eeb015fd44b2e252.tar.bz2
isodumper-fcb66263ae0dd664d3a373d5eeb015fd44b2e252.tar.xz
isodumper-fcb66263ae0dd664d3a373d5eeb015fd44b2e252.zip
Add comment for translator
Update translation catalogues
Diffstat (limited to 'lib')
-rwxr-xr-xlib/isodumper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index eab8b5d..f044191 100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -128,7 +128,7 @@ class Info(object):
class IsoDumper(object):
- RELEASE="v1.13"
+ RELEASE="v1.14"
def get_devices(self):
self.list=self.u.find_devices()
@@ -170,6 +170,7 @@ class IsoDumper(object):
break
def sizeof_fmt(self, num):
+ #I18N these are units for files size
for unit in [_('B'),_('KiB'),_('MiB'),_('GiB'),_('TiB')]:
if abs(num) < 1024.0:
return "%3.3f %s" % (num, unit)