Mark a couple strings as translatable

This commit is contained in:
Cole Robinson 2015-08-09 14:01:01 -04:00
parent 4970615f48
commit 5f497b4d79
2 changed files with 2 additions and 2 deletions

View File

@ -2024,7 +2024,7 @@ is not yet supported.&lt;/small&gt;</property>
<object class="GtkLabel" id="summary-title">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label">Ready to begin the installation</property>
<property name="label" translatable="yes">Ready to begin the installation</property>
<property name="use_markup">True</property>
<property name="xalign">0</property>
</object>

View File

@ -98,7 +98,7 @@ class vmmAddStorage(vmmGObjectUI):
def pretty_storage(size):
return "%.1f GiB" % float(size)
hd_label = ("%s available in the default location" %
hd_label = (_("%s available in the default location") %
pretty_storage(max_storage))
hd_label = ("<span color='#484848'>%s</span>" % hd_label)
widget.set_markup(hd_label)