blob: 56dceef2def3d8b6ac17760e0f85275421c550b3 [file] [log] [blame]
The Android Open Source Project923bf412009-03-13 15:11:42 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2008, 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 <!-- Title for Latin keyboard -->
22 <string name="english_ime_name">Android keyboard</string>
23 <!-- Title for Latin keyboard settings activity / dialog -->
24 <string name="english_ime_settings">Android keyboard settings</string>
Ken Wakasac1ff2842010-09-07 20:22:50 +090025 <!-- Title for Latin keyboard input options dialog -->
26 <string name="english_ime_input_options">Input options</string>
The Android Open Source Project923bf412009-03-13 15:11:42 -070027
28 <!-- Option to provide vibrate/haptic feedback on keypress -->
29 <string name="vibrate_on_keypress">Vibrate on keypress</string>
satok979f8692010-08-20 14:35:02 +090030
The Android Open Source Project923bf412009-03-13 15:11:42 -070031 <!-- Option to play back sound on keypress in soft keyboard -->
32 <string name="sound_on_keypress">Sound on keypress</string>
satok979f8692010-08-20 14:35:02 +090033
34 <!-- Option to pop up the character with a larger font above soft keyboard -->
35 <string name="popup_on_keypress">Popup on keypress</string>
36
The Android Open Source Project923bf412009-03-13 15:11:42 -070037 <!-- Option to enable using nearby keys when correcting/predicting -->
38 <string name="hit_correction">Correct typing errors</string>
39
40 <!-- Description for hit_correction -->
41 <string name="hit_correction_summary">Enable input error correction</string>
42
43 <!-- Option to enable using nearby keys when correcting/predicting in landscape-->
44 <string name="hit_correction_land">Landscape input errors</string>
45
46 <!-- Description for hit_correction in landscape -->
47 <string name="hit_correction_land_summary">Enable input error correction</string>
48
49 <!-- Option to automatically correct word on hitting space -->
50 <string name="auto_correction">Word suggestions</string>
51
52 <!-- Description for auto_correction -->
53 <string name="auto_correction_summary">Automatically correct the previous word</string>
54
55 <!-- Option to enable text prediction -->
56 <string name="prediction">Word suggestions</string>
57 <!-- Category title for text prediction -->
58 <string name="prediction_category">Word suggestion settings</string>
59 <!-- Description for text prediction -->
60 <string name="prediction_summary">Enable auto completion while typing</string>
61
62 <!-- Dialog title for auto complete choices -->
63 <string name="auto_complete_dialog_title">Auto completion</string>
64
65 <!-- Option to enable text prediction in landscape -->
66 <string name="prediction_landscape">Increase text field size</string>
67 <!-- Description for text prediction -->
68 <string name="prediction_landscape_summary">Hide word suggestions in landscape view</string>
69
70 <!-- Option to enable auto capitalization of sentences -->
71 <string name="auto_cap">Auto-capitalization</string>
72 <!-- Description for auto cap -->
73 <string name="auto_cap_summary">Capitalize the start of a sentence</string>
74 <!-- Option to enable auto punctuate -->
75 <string name="auto_punctuate">Auto-punctuate</string>
76 <!-- Description for auto punctuate -->
77 <string name="auto_punctuate_summary"></string>
78
Amith Yamasani6e3d4272009-03-25 17:39:38 -070079 <!-- Option to enable quick fixes -->
80 <string name="quick_fixes">Quick fixes</string>
81 <!-- Description for quick fixes -->
82 <string name="quick_fixes_summary">Corrects commonly typed mistakes</string>
83
84 <!-- Option to enable showing suggestions -->
85 <string name="show_suggestions">Show suggestions</string>
86 <!-- Description for show suggestions -->
87 <string name="show_suggestions_summary">Display suggested words while typing</string>
88
89 <!-- Option to enable auto completion -->
90 <string name="auto_complete">Auto-complete</string>
91 <!-- Description for auto completion -->
92 <string name="auto_complete_summary">Spacebar and punctuation automatically insert highlighted word</string>
93
Ken Wakasa1508c0e2010-09-15 13:37:52 +090094 <!-- Option to show/hide the settings key -->
95 <string name="prefs_settings_key">Show settings key</string>
96 <!-- Array of the settings key mode values -->
97 <string-array name="settings_key_modes_values" translatable="false">
98 <item>@string/settings_key_mode_auto</item>
99 <item>@string/settings_key_mode_always_show</item>
100 <item>@string/settings_key_mode_always_hide</item>
101 </string-array>
102 <!-- Option to automatically decide to show/hide the settings key -->
103 <string name="settings_key_mode_auto_name">Automatic</string>
104 <!-- Option to always show the settings key -->
105 <string name="settings_key_mode_always_show_name">Always show</string>
106 <!-- Option to always hide the settings key -->
107 <string name="settings_key_mode_always_hide_name">Always hide</string>
108 <!-- Array of the settings key modes -->
109 <string-array name="settings_key_modes">
110 <item>@string/settings_key_mode_auto_name</item>
111 <item>@string/settings_key_mode_always_show_name</item>
112 <item>@string/settings_key_mode_always_hide_name</item>
113 </string-array>
114
satok979f8692010-08-20 14:35:02 +0900115 <!-- Option to enable bigram completion -->
116 <string name="bigram_suggestion">Bigram Suggestions</string>
117 <!-- Description for auto completion -->
118 <string name="bigram_suggestion_summary">Use previous word to improve suggestion</string>
119
The Android Open Source Project923bf412009-03-13 15:11:42 -0700120 <!-- Array of prediction modes -->
121 <string-array name="prediction_modes">
122 <item>None</item>
123 <item>Basic</item>
124 <item>Advanced</item>
125 </string-array>
126
127 <!-- Don't translate -->
Mike LeBeau466741d2010-01-16 12:21:23 -0800128 <string name="prediction_none" translatable="false">0</string>
The Android Open Source Project923bf412009-03-13 15:11:42 -0700129 <!-- Don't translate -->
Mike LeBeau466741d2010-01-16 12:21:23 -0800130 <string name="prediction_basic" translatable="false">1</string>
The Android Open Source Project923bf412009-03-13 15:11:42 -0700131 <!-- Don't translate -->
Mike LeBeau466741d2010-01-16 12:21:23 -0800132 <string name="prediction_full" translatable="false">2</string>
The Android Open Source Project923bf412009-03-13 15:11:42 -0700133
Mike LeBeau466741d2010-01-16 12:21:23 -0800134 <string-array name="prediction_modes_values" translatable="false">
The Android Open Source Project923bf412009-03-13 15:11:42 -0700135 <item>@string/prediction_none</item>
136 <item>@string/prediction_basic</item>
137 <item>@string/prediction_full</item>
138 </string-array>
139
140 <!-- Indicates that a word has been added to the dictionary -->
141 <string name="added_word"><xliff:g id="word">%s</xliff:g> : Saved</string>
Mike LeBeau466741d2010-01-16 12:21:23 -0800142
The Android Open Source Project923bf412009-03-13 15:11:42 -0700143 <!-- Tip to long press on keys -->
144 <string name="tip_long_press">Hold a key down to see accents (ø, ö, etc.)</string>
145 <!-- Tip to dismiss keyboard -->
146 <string name="tip_dismiss">Press the back key \u21B6 to close the keyboard at any point</string>
147 <!-- Tip to press ?123 to access numbers and symbols -->
148 <string name="tip_access_symbols">Access numbers and symbols</string>
149 <!-- Tip to long press on typed word to add to dictionary -->
150 <string name="tip_add_to_dictionary">Press and hold the left-most word to add it to the dictionary
151 </string>
Amith Yamasani6e3d4272009-03-25 17:39:38 -0700152
153 <!-- Instruction to touch the bubble to continue -->
154 <string name="touch_to_continue">Touch this hint to continue »</string>
155
156 <!-- Instruction to touch the bubble to start typing -->
157 <string name="touch_to_finish">Touch here to close this hint and start typing!</string>
158
159 <!-- Tutorial tip 1 - The keyboard opens any time you touch a text field -->
160 <string name="tip_to_open_keyboard"><b>The keyboard opens any time you touch a text field</b></string>
161
162 <!-- Tutorial tip 2 - Touch and hold a key to view accents (examples) -->
163 <string name="tip_to_view_accents"><b>Touch &amp; hold a key to view accents\n(ø, ö, ô, ó, and so on)</b>
164 </string>
165
166 <!-- Tutorial tip 3 - How to switch to number/symbol keyboard -->
167 <string name="tip_to_open_symbols"><b>Switch to numbers and symbols by touching this key</b></string>
168
169 <!-- Tutorial tip 4 - How to switch back to alphabet keyboard -->
170 <string name="tip_to_close_symbols"><b>Go back to letters by touching this key again</b></string>
171
172 <!-- Tutorial tip 5 - How to launch keyboard settings -->
173 <string name="tip_to_launch_settings"><b>Touch &amp; hold this key to change keyboard settings, like auto complete</b></string>
174
175 <!-- Tutorial tip 6 - Done with the tutorial -->
176 <string name="tip_to_start_typing"><b>Try it!</b></string>
177
178
The Android Open Source Project923bf412009-03-13 15:11:42 -0700179 <!-- Label for soft enter key when it performs GO action. Must be short to fit on key! -->
180 <string name="label_go_key">Go</string>
181 <!-- Label for soft enter key when it performs NEXT action. Must be short to fit on key! -->
182 <string name="label_next_key">Next</string>
183 <!-- Label for soft enter key when it performs DONE action. Must be short to fit on key! -->
184 <string name="label_done_key">Done</string>
185 <!-- Label for soft enter key when it performs SEND action. Must be short to fit on key! -->
186 <string name="label_send_key">Send</string>
187 <!-- Label for "switch to symbols" key. Must be short to fit on key! -->
188 <string name="label_symbol_key">\?123</string>
189 <!-- Label for "switch to numeric" key. Must be short to fit on key! -->
190 <string name="label_phone_key">123</string>
191 <!-- Label for "switch to alphabetic" key. Must be short to fit on key! -->
192 <string name="label_alpha_key">ABC</string>
193 <!-- Label for ALT modifier key. Must be short to fit on key! -->
194 <string name="label_alt_key">ALT</string>
Eric Fischer0d1bbf62009-06-18 15:53:28 -0700195
Mike LeBeau466741d2010-01-16 12:21:23 -0800196 <!-- Voice related labels -->
197
198 <!-- Title of the warning dialog that shows when a user initiates voice input for
199 the first time. -->
200 <string name="voice_warning_title">Voice input</string>
201
202 <!-- Message that gets put at the top of the warning dialog if the user is attempting to use
203 voice input in a currently unsupported locale. Voice input will work for such a user,
204 but it will only recognize them in English. -->
205 <string name="voice_warning_locale_not_supported">Voice input is not currently supported for your language, but does work in English.</string>
206
207 <!-- Message of the warning dialog that shows when a user initiates voice input for
208 the first time, or turns it on in settings. -->
209 <string name="voice_warning_may_not_understand">Voice input is an experimental feature using Google\'s networked speech recognition.</string>
210
211 <!-- An additional part of the warning dialog for voice input that only shows when the user
212 actually initiates voice input, rather than just turning it on in settings. -->
213 <string name="voice_warning_how_to_turn_off">To turn off voice input, go to keyboard settings.</string>
214
215 <!-- Message to show when user clicks the swiping hint (which says
216 "Swipe across keyboard to speak"). Also shown when enabling settings. -->
217 <string name="voice_hint_dialog_message">To use voice input, press the microphone button or slide your finger across the on-screen keyboard.</string>
218
219 <!-- Short message to tell the user the system is ready for them to speak. -->
220 <string name="voice_listening">Speak now</string>
221
222 <!-- Short message shown after the user finishes speaking. -->
223 <string name="voice_working">Working</string>
224
225 <!-- Short message shown before the user should speak. -->
226 <string name="voice_initializing"></string>
227
228 <!-- Short message shown when a generic error occurs. -->
229 <string name="voice_error">Error. Please try again.</string>
230
231 <!-- Short message shown for a network error. -->
232 <string name="voice_network_error">Couldn\'t connect</string>
233
234 <!-- Short message shown for a network error where the utterance was really long,
235 in which case we should suggest that the user speak less. -->
236 <string name="voice_too_much_speech">Error, too much speech.</string>
237
238 <!-- Short message shown for an audio error. -->
239 <string name="voice_audio_error">Audio problem</string>
240
241 <!-- Short message shown for an error with the voice server. -->
242 <string name="voice_server_error">Server error</string>
243
244 <!-- Short message shown when no speech is heard. -->
245 <string name="voice_speech_timeout">No speech heard</string>
246
247 <!-- Short message shown when the server couldn't parse any speech. -->
248 <string name="voice_no_match">No matches found</string>
249
250 <!-- Short message shown when the user initiates voice and voice
251 search is not installed. -->
252 <string name="voice_not_installed">Voice search not installed</string>
253
254 <!-- Short hint shown in candidate view to explain voice input. -->
255 <string name="voice_swipe_hint"><b>Hint:</b> Swipe across keyboard to speak</string>
256
257 <!-- Short hint shown in candidate view to explain that user can speak punctuation. -->
258 <string name="voice_punctuation_hint"><b>Hint:</b> Next time, try speaking punctuation like \"period\", \"comma\", or \"question mark\".</string>
259
260 <!-- Label on button to stop recognition. Must be short to fit on button. -->
261 <string name="cancel">Cancel</string>
262
263 <!-- Label on button when an error occurs -->
264 <string name="ok">OK</string>
265
266 <!-- Preferences item for enabling speech input -->
Amith Yamasani457fdff2010-02-09 14:17:30 -0800267 <string name="voice_input">Voice input</string>
Mike LeBeau466741d2010-01-16 12:21:23 -0800268
Amith Yamasani457fdff2010-02-09 14:17:30 -0800269 <!-- Array of Voice Input modes -->
270 <string-array name="voice_input_modes">
271 <item>On main keyboard</item>
272 <item>On symbols keyboard</item>
273 <item>Off</item>
274 </string-array>
Amith Yamasanib1cd7012010-01-28 07:33:27 -0800275
Amith Yamasani457fdff2010-02-09 14:17:30 -0800276 <!-- Don't translate -->
277 <string name="voice_mode_main" translatable="false">0</string>
278 <!-- Don't translate -->
279 <string name="voice_mode_symbols" translatable="false">1</string>
280 <!-- Don't translate -->
281 <string name="voice_mode_off" translatable="false">2</string>
282
283 <string-array name="voice_input_modes_values" translatable="false">
284 <item>@string/voice_mode_main</item>
285 <item>@string/voice_mode_symbols</item>
286 <item>@string/voice_mode_off</item>
287 </string-array>
288
289 <!-- Array of Voice Input modes summary -->
290 <string-array name="voice_input_modes_summary">
291 <item>Mic on main keyboard</item>
292 <item>Mic on symbols keyboard</item>
293 <item>Voice input is disabled</item>
294 </string-array>
Amith Yamasanib1cd7012010-01-28 07:33:27 -0800295
Mike LeBeau466741d2010-01-16 12:21:23 -0800296 <!-- Press the "enter" key after the user speaks. Option on settings.-->
297 <string name="auto_submit">Auto submit after voice</string>
298
299 <!-- Press the "enter" key after the user speaks. Summary of option in settings.-->
300 <string name="auto_submit_summary">Automatically press enter when searching or going to the next field.</string>
301
Eric Fischer0d1bbf62009-06-18 15:53:28 -0700302 <!-- IME Tutorial screen (ROMAN) --><skip />
303 <!-- appears above image showing the user to click on a TextView to show the IME -->
304 <string name="open_the_keyboard"><font size="17"><b>Open the keyboard\n</b></font><font size="3">\n</font>Touch any text field.</string>
305
306 <!-- appears above the image showing the back button used to close the keyboard -->
307 <string name="close_the_keyboard"><font size="17"><b>Close the keyboard\n</b></font><font size="3">\n</font>Press the Back key.</string>
308
309 <!-- appears above image showing how to use touch and hold -->
310 <string name="touch_and_hold"><font size="17"><b>Touch \u0026 hold a key for options\n</b></font><font size="3">\n</font>Access punctuation and accents.</string>
311
312 <!-- appears above image showing how to access keyboard settings -->
313 <string name="keyboard_settings"><font size="17"><b>Keyboard settings\n</b></font><font size="3">\n</font>Touch \u0026 hold the <b>\?123\</b> key.</string>
Mike LeBeau466741d2010-01-16 12:21:23 -0800314
Amith Yamasanid9688c72009-09-04 15:30:43 -0700315 <!-- popular web domains for the locale - most popular, displayed on the keyboard -->
316 <string name="popular_domain_0">".com"</string>
317 <!-- popular web domains for the locale - item 1, displayed in the popup -->
318 <string name="popular_domain_1">".net"</string>
319 <!-- popular web domains for the locale - item 2, displayed in the popup -->
320 <string name="popular_domain_2">".org"</string>
321 <!-- popular web domains for the locale - item 3, displayed in the popup -->
322 <string name="popular_domain_3">".gov"</string>
323 <!-- popular web domains for the locale - item 4, displayed in the popup -->
324 <string name="popular_domain_4">".edu"</string>
Mike LeBeau466741d2010-01-16 12:21:23 -0800325
satok9a6a4d32010-09-03 04:25:31 +0900326 <!-- Menu item for launching Input method picker -->
327 <string name="selectInputMethod">Select input method</string>
328
Amith Yamasani36fcf252009-10-12 13:48:35 -0700329 <!-- Title for input language selection screen -->
Amith Yamasaniec7eb072010-02-11 06:06:02 -0800330 <string name="language_selection_title">Input languages</string>
Amith Yamasani457fdff2010-02-09 14:17:30 -0800331 <!-- Title summary for input language selection screen -->
Amith Yamasaniec7eb072010-02-11 06:06:02 -0800332 <string name="language_selection_summary">Slide finger on spacebar to change language</string>
Amith Yamasani66a787b2010-02-10 17:45:35 -0800333
334 <!-- Add to dictionary hint -->
335 <string name="hint_add_to_dictionary">\u2190 Tap again to save</string>
Amith Yamasani0a2df342010-03-04 04:43:15 -0800336
337 <!-- Inform the user that a particular language has an available dictionary -->
338 <string name="has_dictionary">Dictionary available</string>
satok979f8692010-08-20 14:35:02 +0900339
satok5d55cf62010-08-30 14:53:01 +0900340 <!-- Preferences item for enabling to send user statistics to Google. -->
satok979f8692010-08-20 14:35:02 +0900341 <string name="prefs_enable_log">Enable user feedback</string>
satok5d55cf62010-08-30 14:53:01 +0900342 <!-- Description for enabling to send user statistics to Google. -->
satok979f8692010-08-20 14:35:02 +0900343 <string name="prefs_description_log">Help improve this input method editor by automatically sending usage statistics and crash reports to Google.</string>
satok66b42a12010-09-06 19:18:38 +0900344 <!-- Preferences item for enabling to re-correct suggestions . -->
satok85d85c22010-09-08 00:30:31 +0900345 <string name="prefs_enable_recorrection">Tap to re-correct words</string>
satok66b42a12010-09-06 19:18:38 +0900346 <!-- The summary for the preferences item for enabling to re-correct suggestions . -->
347 <string name="prefs_enable_recorrection_summary">You can re-correct words by tapping words you have typed</string>
satok979f8692010-08-20 14:35:02 +0900348
satok31adfa72010-09-01 15:45:20 +0900349 <!-- Description for keyboard theme switcher -->
satok979f8692010-08-20 14:35:02 +0900350 <string name="keyboard_layout">Keyboard Theme</string>
351 <string name="layout_basic" translatable="false">Basic</string>
352 <string name="layout_high_contrast" translatable="false">Basic (High Contrast)</string>
satok31adfa72010-09-01 15:45:20 +0900353 <string name="layout_stone_bold" translatable="false">Stone (bold)</string>
354 <string name="layout_stone_normal" translatable="false">Stone (normal)</string>
355 <string name="layout_gingerbread" translatable="false">Gingerbread</string>
satok979f8692010-08-20 14:35:02 +0900356
357 <string-array name="keyboard_layout_modes" translatable="false">
358 <item>@string/layout_basic</item>
359 <item>@string/layout_high_contrast</item>
360 <item>@string/layout_stone_normal</item>
361 <item>@string/layout_stone_bold</item>
satok31adfa72010-09-01 15:45:20 +0900362 <item>@string/layout_gingerbread</item>
satok979f8692010-08-20 14:35:02 +0900363 </string-array>
364
365 <string-array name="keyboard_layout_modes_values" translatable="false">
366 <item>0</item>
367 <item>1</item>
368 <item>2</item>
369 <item>3</item>
satok31adfa72010-09-01 15:45:20 +0900370 <item>4</item>
satok979f8692010-08-20 14:35:02 +0900371 </string-array>
372
satok979f8692010-08-20 14:35:02 +0900373 <string name="subtype_mode_keyboard">keyboard</string>
374 <string name="subtype_mode_voice">voice</string>
The Android Open Source Project923bf412009-03-13 15:11:42 -0700375</resources>