blob: 41809c15b55614c2f1068613f6f0a51ae4b9e828 [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>
25
26 <!-- Option to provide vibrate/haptic feedback on keypress -->
27 <string name="vibrate_on_keypress">Vibrate on keypress</string>
28 <!-- Option to play back sound on keypress in soft keyboard -->
29 <string name="sound_on_keypress">Sound on keypress</string>
30
31 <!-- Option to enable using nearby keys when correcting/predicting -->
32 <string name="hit_correction">Correct typing errors</string>
33
34 <!-- Description for hit_correction -->
35 <string name="hit_correction_summary">Enable input error correction</string>
36
37 <!-- Option to enable using nearby keys when correcting/predicting in landscape-->
38 <string name="hit_correction_land">Landscape input errors</string>
39
40 <!-- Description for hit_correction in landscape -->
41 <string name="hit_correction_land_summary">Enable input error correction</string>
42
43 <!-- Option to automatically correct word on hitting space -->
44 <string name="auto_correction">Word suggestions</string>
45
46 <!-- Description for auto_correction -->
47 <string name="auto_correction_summary">Automatically correct the previous word</string>
48
49 <!-- Option to enable text prediction -->
50 <string name="prediction">Word suggestions</string>
51 <!-- Category title for text prediction -->
52 <string name="prediction_category">Word suggestion settings</string>
53 <!-- Description for text prediction -->
54 <string name="prediction_summary">Enable auto completion while typing</string>
55
56 <!-- Dialog title for auto complete choices -->
57 <string name="auto_complete_dialog_title">Auto completion</string>
58
59 <!-- Option to enable text prediction in landscape -->
60 <string name="prediction_landscape">Increase text field size</string>
61 <!-- Description for text prediction -->
62 <string name="prediction_landscape_summary">Hide word suggestions in landscape view</string>
63
64 <!-- Option to enable auto capitalization of sentences -->
65 <string name="auto_cap">Auto-capitalization</string>
66 <!-- Description for auto cap -->
67 <string name="auto_cap_summary">Capitalize the start of a sentence</string>
68 <!-- Option to enable auto punctuate -->
69 <string name="auto_punctuate">Auto-punctuate</string>
70 <!-- Description for auto punctuate -->
71 <string name="auto_punctuate_summary"></string>
72
73 <!-- Array of prediction modes -->
74 <string-array name="prediction_modes">
75 <item>None</item>
76 <item>Basic</item>
77 <item>Advanced</item>
78 </string-array>
79
80 <!-- Don't translate -->
81 <string name="prediction_none" >0</string>
82 <!-- Don't translate -->
83 <string name="prediction_basic">1</string>
84 <!-- Don't translate -->
85 <string name="prediction_full" >2</string>
86
87 <string-array name="prediction_modes_values">
88 <item>@string/prediction_none</item>
89 <item>@string/prediction_basic</item>
90 <item>@string/prediction_full</item>
91 </string-array>
92
93 <!-- Indicates that a word has been added to the dictionary -->
94 <string name="added_word"><xliff:g id="word">%s</xliff:g> : Saved</string>
95 <!-- Accented forms of "a" -->
96 <string name="alternates_for_a">àáâãäåæ</string>
97 <!-- Accented forms of "e" -->
98 <string name="alternates_for_e">èéêë</string>
99 <!-- Accented forms of "i" -->
100 <string name="alternates_for_i">ìíîï</string>
101 <!-- Accented forms of "o" -->
102 <string name="alternates_for_o">òóôõöœø</string>
103 <!-- Accented forms of "u" -->
104 <string name="alternates_for_u">ùúûü</string>
105 <!-- Letters associated with "s" -->
106 <string name="alternates_for_s">§ß</string>
107 <!-- Accented forms of "n" -->
108 <string name="alternates_for_n">ñ</string>
109 <!-- Accented forms of "c" -->
110 <string name="alternates_for_c">ç</string>
111 <!-- Accented forms of "y" -->
112 <string name="alternates_for_y">ýÿ</string>
113 <!-- Accented forms of "z" -->
114 <string name="alternates_for_z"></string>
115
116 <!-- Tip to long press on keys -->
117 <string name="tip_long_press">Hold a key down to see accents (ø, ö, etc.)</string>
118 <!-- Tip to dismiss keyboard -->
119 <string name="tip_dismiss">Press the back key \u21B6 to close the keyboard at any point</string>
120 <!-- Tip to press ?123 to access numbers and symbols -->
121 <string name="tip_access_symbols">Access numbers and symbols</string>
122 <!-- Tip to long press on typed word to add to dictionary -->
123 <string name="tip_add_to_dictionary">Press and hold the left-most word to add it to the dictionary
124 </string>
125
126 <!-- Label for soft enter key when it performs GO action. Must be short to fit on key! -->
127 <string name="label_go_key">Go</string>
128 <!-- Label for soft enter key when it performs NEXT action. Must be short to fit on key! -->
129 <string name="label_next_key">Next</string>
130 <!-- Label for soft enter key when it performs DONE action. Must be short to fit on key! -->
131 <string name="label_done_key">Done</string>
132 <!-- Label for soft enter key when it performs SEND action. Must be short to fit on key! -->
133 <string name="label_send_key">Send</string>
134 <!-- Label for "switch to symbols" key. Must be short to fit on key! -->
135 <string name="label_symbol_key">\?123</string>
136 <!-- Label for "switch to numeric" key. Must be short to fit on key! -->
137 <string name="label_phone_key">123</string>
138 <!-- Label for "switch to alphabetic" key. Must be short to fit on key! -->
139 <string name="label_alpha_key">ABC</string>
140 <!-- Label for ALT modifier key. Must be short to fit on key! -->
141 <string name="label_alt_key">ALT</string>
142</resources>