player_rate: Use tabular figures for speed rate menu

Since gtk::ModelButton allows to set markup, the menu entries can now use
tabular figures.

Make the labels untranslatable, as they are generic enough already, and
being translatable would make even less sense with markup.
This commit is contained in:
Alexander Mikhaylenko 2020-01-25 02:36:40 +05:00 committed by Jordan Petridis
parent 4ce0819c68
commit 5e688c104c
No known key found for this signature in database
GPG Key ID: E8523968931763BE

View File

@ -45,6 +45,9 @@ Tobias Bernard
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">1.00×</property>
<attributes>
<attribute name="font-features" value="tnum=1"/>
</attributes>
</object>
<packing>
<property name="expand">False</property>
@ -79,7 +82,8 @@ Tobias Bernard
<property name="orientation">vertical</property>
<child>
<object class="GtkModelButton" id="rate_1_50">
<property name="text" translatable="yes">1.50×</property>
<property name="text">&lt;span font-features="tnum=1"&gt;1.50×&lt;/span&gt;</property>
<property name="use-markup">True</property>
<property name="visible">True</property>
<property name="tooltip_text" translatable="yes">1.5 speed rate</property>
<property name="role">radio</property>
@ -92,7 +96,8 @@ Tobias Bernard
</child>
<child>
<object class="GtkModelButton" id="rate_1_25">
<property name="text" translatable="yes">1.25×</property>
<property name="text">&lt;span font-features="tnum=1"&gt;1.25×&lt;/span&gt;</property>
<property name="use-markup">True</property>
<property name="visible">True</property>
<property name="tooltip_text" translatable="yes">1.25 speed rate</property>
<property name="role">radio</property>
@ -105,7 +110,8 @@ Tobias Bernard
</child>
<child>
<object class="GtkModelButton" id="normal_rate">
<property name="text" translatable="yes">1.00×</property>
<property name="text">&lt;span font-features="tnum=1"&gt;1.00×&lt;/span&gt;</property>
<property name="use-markup">True</property>
<property name="visible">True</property>
<property name="tooltip_text" translatable="yes">Normal speed</property>
<property name="active">True</property>