Fix string for a better translation
This commit is contained in:
parent
8b2732cf16
commit
0ddff9c2a9
|
@ -127,7 +127,8 @@ class ServerInfoDialog(Gtk.Dialog):
|
||||||
hours = 0
|
hours = 0
|
||||||
if seconds >= 3600:
|
if seconds >= 3600:
|
||||||
hours = delta.seconds // 3600
|
hours = delta.seconds // 3600
|
||||||
self.uptime = _('%s days, %s hours') % (delta.days, hours)
|
self.uptime = _('%(days)s days, %(hours)s hours') % {
|
||||||
|
'days': delta.days, 'hours': hours}
|
||||||
self.update(self.get_infos, self.info_listbox)
|
self.update(self.get_infos, self.info_listbox)
|
||||||
|
|
||||||
def _nec_version_result_received(self, obj):
|
def _nec_version_result_received(self, obj):
|
||||||
|
|
Loading…
Reference in New Issue