diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2013-10-07 18:40:22 +0300 |
---|---|---|
committer | Yuri Chornoivan <yurchor@ukr.net> | 2013-10-07 18:40:22 +0300 |
commit | 05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a (patch) | |
tree | 7dc2bd10c3533054b561c6f3828a0d1b6182f281 /src/monitor.py | |
parent | b376ebb06fffd7a147cefed4a7160ef542530fbc (diff) | |
download | net_monitor-05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a.tar net_monitor-05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a.tar.gz net_monitor-05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a.tar.bz2 net_monitor-05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a.tar.xz net_monitor-05dd9ab08283ed4a1e8e3d35aae3bc4284857c2a.zip |
Add argument markers as requested by Gettext Python standard, update translation catalog
Diffstat (limited to 'src/monitor.py')
-rw-r--r-- | src/monitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monitor.py b/src/monitor.py index bc9c323..726a586 100644 --- a/src/monitor.py +++ b/src/monitor.py @@ -396,4 +396,4 @@ class Monitor: hours = uptime / 3600 mins = (uptime - (hours * 3600)) / 60 secs = uptime % 60 - return _("%d hours, %d minutes, %d seconds") % (hours, mins, secs) + return _("%(hours)d hours, %(mins)d minutes, %(secs)d seconds") % (hours, mins, secs) |