Strings: Merge "manual only" to "manually" (bug 1215)

This commit is contained in:
Thomas Perl 2010-12-18 14:55:19 +01:00
parent 10cad7aad0
commit 22e24ccfcd

View file

@ -255,7 +255,7 @@ class gPodderPreferences(BuilderWidget):
def format_update_interval_value(self, scale, value):
value = int(value)
if value == 0:
return _('manual only')
return _('manually')
elif value > 0 and len(self.update_interval_presets) > value:
return util.format_seconds_to_hour_min_sec(self.update_interval_presets[value]*60)
else: