forked from Stypox/dicio-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arrays.xml
68 lines (63 loc) · 2.61 KB
/
arrays.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="pref_theme_entries">
<item>@string/pref_theme_light</item>
<item>@string/pref_theme_dark</item>
</string-array>
<string-array name="pref_theme_entry_values">
<item>@string/pref_val_theme_light</item>
<item>@string/pref_val_theme_dark</item>
</string-array>
<!-- Add language names below here (make sure they are ordered alphabetically!) -->
<string-array name="pref_language_entries">
<item>@string/pref_language_system</item>
<item>Deutsch</item>
<item>English</item>
<item>English (India)</item>
<item>Español</item>
<item>Ελληνικά</item>
<item>Français</item>
<item>Italiano</item>
<item>Русский</item>
</string-array>
<!-- Add language codes below here
(make sure they are in the same order as the language names array!) -->
<string-array name="pref_language_entry_values">
<item />
<item>de</item>
<item>en</item>
<item>en-in</item>
<item>es</item>
<item>el</item>
<item>fr</item>
<item>it</item>
<item>ru</item>
</string-array>
<string-array name="pref_input_method_entries">
<item>@string/pref_input_method_vosk</item>
<item>@string/pref_input_method_text</item>
</string-array>
<string-array name="pref_input_method_entry_values">
<item>@string/pref_val_input_method_vosk</item>
<item>@string/pref_val_input_method_text</item>
</string-array>
<string-array name="pref_speech_output_method_entries">
<item>@string/pref_speech_output_method_android</item>
<item>@string/pref_speech_output_method_toast</item>
<item>@string/pref_speech_output_method_snackbar</item>
<item>@string/pref_speech_output_method_nothing</item>
</string-array>
<string-array name="pref_speech_output_method_entry_values">
<item>@string/pref_val_speech_output_method_android</item>
<item>@string/pref_val_speech_output_method_toast</item>
<item>@string/pref_val_speech_output_method_snackbar</item>
<item>@string/pref_val_speech_output_method_nothing</item>
</string-array>
<!-- Qwant was once available as a second search engine, that's why there are settings -->
<string-array name="pref_search_engine_entries">
<item>@string/pref_search_engine_duckduckgo</item>
</string-array>
<string-array name="pref_search_engine_entry_values">
<item>@string/pref_val_search_engine_duckduckgo</item>
</string-array>
</resources>