chinwag-android/app/src/main/res/values/string-arrays.xml
mcclure 85a6b2d96b
Preference to disable multiple-login usernames (#2718)
* Preference to disable multiple-login usernames (with problems)

* Fix problem where 'show self username disambiguation' does not take effect immediately because MainActivity needed to be restarted

* Make 'show username in toolbars' a 3-option selector, default when multiple accounts logged in

* Move SHOW_SELF_USERNAME higher in preference fragment
2022-10-18 19:38:17 +02:00

32 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="app_theme_names">
<item>@string/app_them_dark</item>
<item>@string/app_theme_light</item>
<item>@string/app_theme_black</item>
<item>@string/app_theme_auto</item>
<item>@string/app_theme_system</item>
</string-array>
<string-array name="post_privacy_names">
<item>@string/post_privacy_public</item>
<item>@string/post_privacy_unlisted</item>
<item>@string/post_privacy_followers_only</item>
</string-array>
<string-array name="post_text_size_names">
<item>@string/post_text_size_smallest</item>
<item>@string/post_text_size_small</item>
<item>@string/post_text_size_medium</item>
<item>@string/post_text_size_large</item>
<item>@string/post_text_size_largest</item>
</string-array>
<string-array name="pref_show_self_username_names">
<item>@string/pref_show_self_username_always</item>
<item>@string/pref_show_self_username_disambiguate</item>
<item>@string/pref_show_self_username_never</item>
</string-array>
</resources>