1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-09-27 18:29:37 +02:00

Reference to strings from font size values array

This commit is contained in:
vanitasvitae 2016-10-28 19:10:23 +02:00
parent b9c4223a5e
commit 666950590b
Signed by: vanitasvitae
GPG key ID: DCCFB3302C9E4615

View file

@ -88,10 +88,10 @@
<!-- Font size -->
<string name="pref_title__font_size">Font size</string>
<array name="pref_entries__font_size">
<item>Normal</item>
<item>Large</item>
<item>Huge</item>
<array name="pref_entries__font_size" translatable="false">
<item>@string/font_size_normal</item>
<item>@string/font_size_large</item>
<item>@string/font_size_huge</item>
</array>
<!-- prefix 's' is needed to make this a string array. Otherwise ListPreference would crash -->
<array name="pref_entries_values__font_size" translatable="false">
@ -99,6 +99,9 @@
<item>large</item>
<item>huge</item>
</array>
<string name="font_size_normal">Normal</string>
<string name="font_size_large">Large</string>
<string name="font_size_huge">Huge</string>
<!-- Load images -->
<string name="pref_title__load_images">Load images</string>