Mark a couple strings as translatable
This commit is contained in:
parent
4970615f48
commit
5f497b4d79
|
@ -2024,7 +2024,7 @@ is not yet supported.</small></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>
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue