donottranslate.xml revision 10581e68af1de7d0b5d2c88927ad7bbad7dad600
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2009, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11**     http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
21    <!-- TODO: these settings depend on the language. They should be put either in the dictionary
22         header, or in the subtype maybe? -->
23    <!-- Symbols that are suggested between words -->
24    <string name="suggested_punctuations">!,?,\\,,:,;,\",(,),\',-,/,@,_</string>
25    <!-- Symbols that are normally preceded by a space (used to add an auto-space before these) -->
26    <string name="symbols_preceded_by_space">([{&amp;</string>
27    <!-- Symbols that are normally followed by a space (used to add an auto-space after these) -->
28    <string name="symbols_followed_by_space">.,;:!?)]}&amp;</string>
29    <!-- Symbols that separate words -->
30    <!-- Don't remove the enclosing double quotes, they protect whitespace (not just U+0020) -->
31    <string name="symbols_word_separators">"&#x0009;&#x0020;\n"()[]{}*&amp;&lt;&gt;+=|.,;:!?/_\"</string>
32    <!-- Word connectors -->
33    <string name="symbols_word_connectors">\'-</string>
34    <!-- The sentence separator code point, for capitalization -->
35    <!-- U+002E: "." FULL STOP   ; 2Eh = 46d -->
36    <integer name="sentence_separator">46</integer>
37    <!-- Whether this language uses spaces between words -->
38    <bool name="current_language_has_spaces">true</bool>
39
40    <!--  Always show the suggestion strip -->
41    <string name="prefs_suggestion_visibility_show_value">0</string>
42    <!--  Show the suggestion strip only on portrait mode -->
43    <string name="prefs_suggestion_visibility_show_only_portrait_value">1</string>
44    <!--  Always hide the suggestion strip -->
45    <string name="prefs_suggestion_visibility_hide_value">2</string>
46    <!--  Default value of the visibility of the suggestion strip -->
47    <string name="prefs_suggestion_visibility_default_value">0</string>
48    <!--  Option to show/hide the suggestion strip -->
49    <string-array name="prefs_suggestion_visibility_values">
50       <item>@string/prefs_suggestion_visibility_show_value</item>
51       <item>@string/prefs_suggestion_visibility_show_only_portrait_value</item>
52       <item>@string/prefs_suggestion_visibility_hide_value</item>
53    </string-array>
54    <string-array name="prefs_suggestion_visibilities">
55       <item>@string/prefs_suggestion_visibility_show_name</item>
56       <item>@string/prefs_suggestion_visibility_show_only_portrait_name</item>
57       <item>@string/prefs_suggestion_visibility_hide_name</item>
58    </string-array>
59
60    <string name="auto_correction_threshold_mode_index_off">0</string>
61    <string name="auto_correction_threshold_mode_index_modest">1</string>
62    <string name="auto_correction_threshold_mode_index_aggressive">2</string>
63    <string name="auto_correction_threshold_mode_index_very_aggressive">3</string>
64    <string-array name="auto_correction_threshold_mode_indexes">
65      <item>@string/auto_correction_threshold_mode_index_off</item>
66      <item>@string/auto_correction_threshold_mode_index_modest</item>
67      <item>@string/auto_correction_threshold_mode_index_aggressive</item>
68      <item>@string/auto_correction_threshold_mode_index_very_aggressive</item>
69    </string-array>
70    <string-array name="auto_correction_threshold_modes">
71      <item>@string/auto_correction_threshold_mode_off</item>
72      <item>@string/auto_correction_threshold_mode_modest</item>
73      <item>@string/auto_correction_threshold_mode_aggressive</item>
74      <item>@string/auto_correction_threshold_mode_very_aggressive</item>
75    </string-array>
76
77    <string name="voice_mode_main">0</string>
78    <string name="voice_mode_symbols">1</string>
79    <string name="voice_mode_off">2</string>
80    <string-array name="voice_input_modes_values">
81        <item>@string/voice_mode_main</item>
82        <item>@string/voice_mode_symbols</item>
83        <item>@string/voice_mode_off</item>
84    </string-array>
85    <!-- Array of Voice Input modes -->
86    <string-array name="voice_input_modes">
87        <item>@string/voice_input_modes_main_keyboard</item>
88        <item>@string/voice_input_modes_symbols_keyboard</item>
89        <item>@string/voice_input_modes_off</item>
90    </string-array>
91    <!-- Array of Voice Input modes summary -->
92    <string-array name="voice_input_modes_summary">
93        <item>@string/voice_input_modes_summary_main_keyboard</item>
94        <item>@string/voice_input_modes_summary_symbols_keyboard</item>
95        <item>@string/voice_input_modes_summary_off</item>
96    </string-array>
97
98    <!-- Title for Latin keyboard debug settings activity / dialog -->
99    <string name="english_ime_debug_settings">Android keyboard Debug settings</string>
100    <string name="prefs_debug_mode">Debug Mode</string>
101    <string name="prefs_force_non_distinct_multitouch">Force non-distinct multitouch</string>
102
103    <!-- Keyboard theme names -->
104    <string name="layout_gingerbread">Gingerbread</string>
105    <string name="layout_ics">IceCreamSandwich</string>
106
107    <!-- For keyboard theme switcher dialog -->
108    <string-array name="keyboard_layout_modes">
109        <item>@string/layout_ics</item>
110        <item>@string/layout_gingerbread</item>
111    </string-array>
112    <string-array name="keyboard_layout_modes_values">
113        <item>0</item>
114        <item>1</item>
115    </string-array>
116
117    <!-- Subtype locale display name exceptions.
118         For each exception, there should be related string resources for display name that may have
119         explicit keyboard layout. The string resource name must be "subtype_<locale>" or
120         "subtype_with_layout_<locale>. Please refer to strings.xml for these resources. -->
121    <string-array name="subtype_locale_exception_keys">
122        <item>en_US</item>
123        <item>en_GB</item>
124        <item>es_US</item>
125    </string-array>
126
127    <!-- Generic subtype label -->
128    <string name="subtype_generic">%s</string>
129
130    <!-- Predefined keyboard layouts for additional subtype -->
131    <string-array name="predefined_layouts">
132        <item>qwerty</item>
133        <item>qwertz</item>
134        <item>azerty</item>
135        <item>dvorak</item>
136        <item>colemak</item>
137        <item>pcqwerty</item>
138    </string-array>
139    <!-- Predefined keyboard layout display names -->
140    <string-array name="predefined_layout_display_names">
141        <item>QWERTY</item>
142        <item>QWERTZ</item>
143        <item>AZERTY</item>
144        <item>Dvorak</item>
145        <item>Colemak</item>
146        <item>PC</item>
147    </string-array>
148    <!-- Description for generic subtype that has predefined layout.
149         The string resource name must be "subtype_generic_<layout name>".
150         The string resource with "No language" also must be added to strings.xml and the resource
151         name must be "subtype_no_language_<layout name>" -->
152    <string name="subtype_generic_qwerty">%s (QWERTY)</string>
153    <string name="subtype_generic_qwertz">%s (QWERTZ)</string>
154    <string name="subtype_generic_azerty">%s (AZERTY)</string>
155    <string name="subtype_generic_dvorak">%s (Dvorak)</string>
156    <string name="subtype_generic_colemak">%s (Colemak)</string>
157    <string name="subtype_generic_pcqwerty">%s (PC)</string>
158
159    <!-- Description for Bulgarian (BDS) subtype. -->
160    <string name="subtype_bulgarian_bds">%s (BDS)</string>
161
162    <!-- Compatibility map from subtypeLocale:subtypeExtraValue to keyboardLayoutSet -->
163    <string-array name="locale_and_extra_value_to_keyboard_layout_set_map">
164        <item>en_US:TrySuppressingImeSwitcher,AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
165        <item>qwerty</item>
166        <item>en_GB:TrySuppressingImeSwitcher,AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
167        <item>qwerty</item>
168        <item>ar:SupportTouchPositionCorrection,EmojiCapable</item>
169        <item>arabic</item>
170        <item>cs:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
171        <item>qwertz</item>
172        <item>da:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
173        <item>nordic</item>
174        <item>de:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
175        <item>qwertz</item>
176        <item>es:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
177        <item>spanish</item>
178        <item>fi:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
179        <item>nordic</item>
180        <item>fr:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
181        <item>azerty</item>
182        <item>fr_CA:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
183        <item>qwerty</item>
184        <item>hr:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
185        <item>qwertz</item>
186        <item>hu:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
187        <item>qwertz</item>
188        <item>it:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
189        <item>qwerty</item>
190        <item>iw:SupportTouchPositionCorrection,EmojiCapable</item>
191        <item>hebrew</item>
192        <item>nb:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
193        <item>nordic</item>
194        <item>nl:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
195        <item>qwerty</item>
196        <item>pl:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
197        <item>qwerty</item>
198        <item>ru:SupportTouchPositionCorrection,EmojiCapable</item>
199        <item>east_slavic</item>
200        <item>sr:SupportTouchPositionCorrection,EmojiCapable</item>
201        <item>south_slavic</item>
202        <item>sv:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
203        <item>nordic</item>
204        <item>tr:AsciiCapable,SupportTouchPositionCorrection,EmojiCapable</item>
205        <item>qwerty</item>
206    </string-array>
207
208    <string name="settings_warning_researcher_mode">Attention!  You are using the special keyboard for research purposes.</string>
209</resources>
210