fix two untranslated strings

This commit is contained in:
guinux 2013-11-22 09:55:22 +01:00
parent 16f57d6c5a
commit 8aaed3ec9c
2 changed files with 2 additions and 2 deletions

View File

@ -865,7 +865,7 @@
</child>
<child>
<object class="GtkImageMenuItem" id="local_item">
<property name="label">Install local packages</property>
<property name="label" translatable="yes">Install local packages</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="image">local_icon</property>

View File

@ -58,7 +58,7 @@ def have_updates():
if len(updates) == 1:
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('1 available update')))
else:
update_top_label.set_markup('<big><b>{}</b></big>'.format('{number} available updates'.format(number = len(updates))))
update_top_label.set_markup('<big><b>{}</b></big>'.format(_('{number} available updates').format(number = len(updates))))
UpdaterWindow.get_window().set_cursor(None)
def handle_error(error):