donottranslate.xml revision a2982dd5a7b44a388464b5885366e52c2f828b43
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    <!-- Symbols that are suggested between words -->
22    <string name="suggested_punctuations">!,?,\\,,:,;,\",(,),\',-,/,@,_</string>
23    <!-- Symbols that should be swapped with a weak space -->
24    <string name="weak_space_swapping_symbols">.,;:!?)]}</string>
25    <!-- Symbols that should strip a weak space -->
26    <!-- Don't remove the enclosing double quotes, they protect whitespace (not just U+0020) -->
27    <string name="weak_space_stripping_symbols">"&#x0009;&#x0020;\n"/_\'-@\"</string>
28    <!-- Symbols that should convert weak spaces into real space -->
29    <string name="phantom_space_promoting_symbols">([*&amp;{&lt;&gt;+=|</string>
30    <!-- Symbols that do NOT separate words -->
31    <string name="symbols_excluded_from_word_separators">\'-</string>
32    <!-- Word separator list is the union of all symbols except those that are not separators:
33    weak_space_swapping_symbols | weak_space_stripping_symbols
34            \ symbols_excluded_from_word_separators -->
35    <!-- Symbol characters list that should switch back to the main layout -->
36    <!-- U+2018: "‘" LEFT SINGLE QUOTATION MARK
37         U+2019: "’" RIGHT SINGLE QUOTATION MARK
38         U+201A: "‚" SINGLE LOW-9 QUOTATION MARK
39         U+201B: "‛" SINGLE HIGH-REVERSED-9 QUOTATION MARK
40         U+201C: "“" LEFT DOUBLE QUOTATION MARK
41         U+201D: "”" RIGHT DOUBLE QUOTATION MARK
42         U+201E: "„" DOUBLE LOW-9 QUOTATION MARK
43         U+201F: "‟" DOUBLE HIGH-REVERSED-9 QUOTATION MARK
44         U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
45         U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK -->
46    <!-- <string name="layout_switch_back_symbols">\"\'&#x2018;&#x2019;&#x201A;&#x201B;&#x201C;&#x201D;&#x201E;&#x201F;&#x00AB;&#x00BB;</string> -->
47    <string name="layout_switch_back_symbols"></string>
48
49    <!--  Always show the suggestion strip -->
50    <string name="prefs_suggestion_visibility_show_value">0</string>
51    <!--  Show the suggestion strip only on portrait mode -->
52    <string name="prefs_suggestion_visibility_show_only_portrait_value">1</string>
53    <!--  Always hide the suggestion strip -->
54    <string name="prefs_suggestion_visibility_hide_value">2</string>
55    <!--  Default value of the visibility of the suggestion strip -->
56    <string name="prefs_suggestion_visibility_default_value">0</string>
57    <!--  Option to show/hide the suggestion strip -->
58    <string-array name="prefs_suggestion_visibility_values">
59       <item>@string/prefs_suggestion_visibility_show_value</item>
60       <item>@string/prefs_suggestion_visibility_show_only_portrait_value</item>
61       <item>@string/prefs_suggestion_visibility_hide_value</item>
62    </string-array>
63    <string-array name="prefs_suggestion_visibilities">
64       <item>@string/prefs_suggestion_visibility_show_name</item>
65       <item>@string/prefs_suggestion_visibility_show_only_portrait_name</item>
66       <item>@string/prefs_suggestion_visibility_hide_name</item>
67    </string-array>
68
69    <string name="auto_correction_threshold_mode_index_off">0</string>
70    <string name="auto_correction_threshold_mode_index_modest">1</string>
71    <string name="auto_correction_threshold_mode_index_aggeressive">2</string>
72    <string name="auto_correction_threshold_mode_index_very_aggeressive">3</string>
73    <string-array name="auto_correction_threshold_mode_indexes">
74      <item>@string/auto_correction_threshold_mode_index_off</item>
75      <item>@string/auto_correction_threshold_mode_index_modest</item>
76      <item>@string/auto_correction_threshold_mode_index_aggeressive</item>
77      <item>@string/auto_correction_threshold_mode_index_very_aggeressive</item>
78    </string-array>
79    <string-array name="auto_correction_threshold_modes">
80      <item>@string/auto_correction_threshold_mode_off</item>
81      <item>@string/auto_correction_threshold_mode_modest</item>
82      <item>@string/auto_correction_threshold_mode_aggeressive</item>
83      <item>@string/auto_correction_threshold_mode_very_aggeressive</item>
84    </string-array>
85
86    <string name="voice_mode_main">0</string>
87    <string name="voice_mode_symbols">1</string>
88    <string name="voice_mode_off">2</string>
89    <string-array name="voice_input_modes_values">
90        <item>@string/voice_mode_main</item>
91        <item>@string/voice_mode_symbols</item>
92        <item>@string/voice_mode_off</item>
93    </string-array>
94    <!-- Array of Voice Input modes -->
95    <string-array name="voice_input_modes">
96        <item>@string/voice_input_modes_main_keyboard</item>
97        <item>@string/voice_input_modes_symbols_keyboard</item>
98        <item>@string/voice_input_modes_off</item>
99    </string-array>
100    <!-- Array of Voice Input modes summary -->
101    <string-array name="voice_input_modes_summary">
102        <item>@string/voice_input_modes_summary_main_keyboard</item>
103        <item>@string/voice_input_modes_summary_symbols_keyboard</item>
104        <item>@string/voice_input_modes_summary_off</item>
105    </string-array>
106
107    <!-- Title for Latin keyboard debug settings activity / dialog -->
108    <string name="english_ime_debug_settings">Android keyboard Debug settings</string>
109    <string name="prefs_debug_mode">Debug Mode</string>
110    <string name="prefs_force_non_distinct_multitouch">Force non-distinct multitouch</string>
111
112    <!-- Keyboard theme names -->
113    <string name="layout_basic">Basic</string>
114    <string name="layout_high_contrast">Basic (High Contrast)</string>
115    <string name="layout_stone_bold">Stone (bold)</string>
116    <string name="layout_stone_normal">Stone (normal)</string>
117    <string name="layout_gingerbread">Gingerbread</string>
118    <string name="layout_ics">IceCreamSandwich</string>
119
120    <!-- For keyboard theme switcher dialog -->
121    <string-array name="keyboard_layout_modes">
122        <item>@string/layout_basic</item>
123        <item>@string/layout_high_contrast</item>
124        <item>@string/layout_stone_normal</item>
125        <item>@string/layout_stone_bold</item>
126        <item>@string/layout_gingerbread</item>
127        <item>@string/layout_ics</item>
128    </string-array>
129    <string-array name="keyboard_layout_modes_values">
130        <item>0</item>
131        <item>1</item>
132        <item>2</item>
133        <item>3</item>
134        <item>4</item>
135        <item>5</item>
136    </string-array>
137
138    <!-- Subtype locale display name exceptions.
139         For each exception, there should be related string resource for display name that has
140         explicit keyboard layout. The string resource name must be "subtype_with_layout_<locale>. -->
141    <string-array name="subtype_locale_exception_keys">
142        <item>en_US</item>
143        <item>en_GB</item>
144        <item>es_US</item>
145    </string-array>
146    <string-array name="subtype_locale_exception_values">
147        <item>English (US)</item>
148        <item>English (UK)</item>
149        <item>Español (EE.UU.)</item>
150    </string-array>
151
152    <!-- Generic subtype label -->
153    <string name="subtype_generic">%s</string>
154
155    <!-- Predefined keyboard layouts for additional subtype -->
156    <string-array name="predefined_layouts">
157        <item>qwerty</item>
158        <item>qwertz</item>
159        <item>azerty</item>
160        <item>dvorak</item>
161        <item>colemak</item>
162        <item>pcqwerty</item>
163    </string-array>
164    <!-- Predefined keyboard layout display names -->
165    <string-array name="predefined_layout_display_names">
166        <item>QWERTY</item>
167        <item>QWERTZ</item>
168        <item>AZERTY</item>
169        <item>Dvorak</item>
170        <item>Colemak</item>
171        <item>PC</item>
172    </string-array>
173    <!-- Description for generic subtype that has predefined layout.
174         The string resource name must be "subtype_generic_<layout name>".
175         The string resource with "No language" also must be added to strings.xml and the resource
176         name must be "subtype_no_language_<layout name>" -->
177    <string name="subtype_generic_qwerty">%s (QWERTY)</string>
178    <string name="subtype_generic_qwertz">%s (QWERTZ)</string>
179    <string name="subtype_generic_azerty">%s (AZERTY)</string>
180    <string name="subtype_generic_dvorak">%s (Dvorak)</string>
181    <string name="subtype_generic_colemak">%s (Colemak)</string>
182    <string name="subtype_generic_pcqwerty">%s (PC)</string>
183
184    <!-- Description for Bulgarian (BDS) subtype. -->
185    <string name="subtype_bulgarian_bds">%s (BDS)</string>
186
187    <!-- Compatibility map from subtypeLocale:subtypeExtraValue to keyboardLayoutSet -->
188    <string-array name="locale_and_extra_value_to_keyboard_layout_set_map">
189        <item>en_US:TrySuppressingImeSwitcher,AsciiCapable,SupportTouchPositionCorrection</item>
190        <item>qwerty</item>
191        <item>en_GB:TrySuppressingImeSwitcher,AsciiCapable,SupportTouchPositionCorrection</item>
192        <item>qwerty</item>
193        <item>ar:SupportTouchPositionCorrection</item>
194        <item>arabic</item>
195        <item>cs:AsciiCapable,SupportTouchPositionCorrection</item>
196        <item>qwertz</item>
197        <item>da:AsciiCapable,SupportTouchPositionCorrection</item>
198        <item>nordic</item>
199        <item>de:AsciiCapable,SupportTouchPositionCorrection</item>
200        <item>qwertz</item>
201        <item>es:AsciiCapable,SupportTouchPositionCorrection</item>
202        <item>spanish</item>
203        <item>fi:AsciiCapable,SupportTouchPositionCorrection</item>
204        <item>nordic</item>
205        <item>fr:AsciiCapable,SupportTouchPositionCorrection</item>
206        <item>azerty</item>
207        <item>fr_CA:AsciiCapable,SupportTouchPositionCorrection</item>
208        <item>qwerty</item>
209        <item>hr:AsciiCapable,SupportTouchPositionCorrection</item>
210        <item>qwertz</item>
211        <item>hu:AsciiCapable,SupportTouchPositionCorrection</item>
212        <item>qwertz</item>
213        <item>it:AsciiCapable,SupportTouchPositionCorrection</item>
214        <item>qwerty</item>
215        <item>iw:SupportTouchPositionCorrection</item>
216        <item>hebrew</item>
217        <item>nb:AsciiCapable,SupportTouchPositionCorrection</item>
218        <item>nordic</item>
219        <item>nl:AsciiCapable,SupportTouchPositionCorrection</item>
220        <item>qwerty</item>
221        <item>pl:AsciiCapable,SupportTouchPositionCorrection</item>
222        <item>qwerty</item>
223        <item>ru:SupportTouchPositionCorrection</item>
224        <item>east_slavic</item>
225        <item>sr:SupportTouchPositionCorrection</item>
226        <item>south_slavic</item>
227        <item>sv:AsciiCapable,SupportTouchPositionCorrection</item>
228        <item>nordic</item>
229        <item>tr:AsciiCapable,SupportTouchPositionCorrection</item>
230        <item>qwerty</item>
231    </string-array>
232
233    <!-- dictionary pack package name /settings activity (for shared prefs and settings) -->
234    <string name="dictionary_pack_package_name">com.google.android.inputmethod.latin.dictionarypack</string>
235    <string name="dictionary_pack_settings_activity">com.google.android.inputmethod.latin.dictionarypack.DictionarySettingsActivity</string>
236    <string name="settings_warning_researcher_mode">Attention!  You are using the special keyboard for research purposes.</string>
237</resources>
238