| The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 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 commonly considered word separators in this language --> |
| Amith Yamasani | a6a6617 | 2010-02-21 18:00:32 -0800 | [diff] [blame] | 22 | <string name="word_separators">.\u0009\u0020,;:!?\n()[]*&@{}/<>_+=|\u0022</string> |
| The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 23 | <!-- Symbols that are sentence separators, for purposes of making it hug the last sentence. --> |
| satok | 979f869 | 2010-08-20 14:35:02 +0900 | [diff] [blame] | 24 | <string name="sentence_separators">.,!?)</string> |
| Amith Yamasani | 6a6075c | 2010-02-03 15:35:49 -0800 | [diff] [blame] | 25 | <!-- Symbols that are suggested between words --> |
| Ken Wakasa | f5df46f | 2010-10-21 01:56:18 +0900 | [diff] [blame] | 26 | <string name="suggested_punctuations">!?,\u0022\u0027:();-/@_</string> |
| Ken Wakasa | 1508c0e | 2010-09-15 13:37:52 +0900 | [diff] [blame] | 27 | |
| Tadashi G. Takaoka | 246acc5 | 2010-12-14 11:06:05 +0900 | [diff] [blame^] | 28 | <!-- Label for ALT modifier key. Must be short to fit on key! --> |
| 29 | <string name="label_alt_key">ALT</string> |
| 30 | <!-- Label for "Tab" key. Must be short to fit on key! --> |
| 31 | <string name="label_tab_key">Tab</string> |
| 32 | <!-- Label for "switch to symbols" key. Must be short to fit on key! --> |
| 33 | <string name="label_to_symbol_key">\?123</string> |
| 34 | <!-- Label for "switch to numeric" key. Must be short to fit on key! --> |
| 35 | <string name="label_to_numeric_key">123</string> |
| 36 | |
| Ken Wakasa | 1508c0e | 2010-09-15 13:37:52 +0900 | [diff] [blame] | 37 | <!-- Option values to show/hide the settings key in onscreen keyboard --> |
| 38 | <!-- Automatically decide to show or hide the settings key --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 39 | <string name="settings_key_mode_auto">0</string> |
| Ken Wakasa | 1508c0e | 2010-09-15 13:37:52 +0900 | [diff] [blame] | 40 | <!-- Always show the settings key --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 41 | <string name="settings_key_mode_always_show">1</string> |
| Ken Wakasa | 1508c0e | 2010-09-15 13:37:52 +0900 | [diff] [blame] | 42 | <!-- Always hide the settings key --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 43 | <string name="settings_key_mode_always_hide">2</string> |
| 44 | <!-- Array of the settings key mode values --> |
| 45 | <string-array name="settings_key_modes_values"> |
| 46 | <item>@string/settings_key_mode_auto</item> |
| 47 | <item>@string/settings_key_mode_always_show</item> |
| 48 | <item>@string/settings_key_mode_always_hide</item> |
| 49 | </string-array> |
| 50 | <!-- Array of the settings key modes --> |
| 51 | <string-array name="settings_key_modes"> |
| 52 | <item>@string/settings_key_mode_auto_name</item> |
| 53 | <item>@string/settings_key_mode_always_show_name</item> |
| 54 | <item>@string/settings_key_mode_always_hide_name</item> |
| 55 | </string-array> |
| satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 56 | |
| 57 | <!-- Always show the suggestion strip --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 58 | <string name="prefs_suggestion_visibility_show_value">0</string> |
| satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 59 | <!-- Show the suggestion strip only on portrait mode --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 60 | <string name="prefs_suggestion_visibility_show_only_portrait_value">1</string> |
| satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 61 | <!-- Always hide the suggestion strip --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 62 | <string name="prefs_suggestion_visibility_hide_value">2</string> |
| satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 63 | <!-- Default value of the visibility of the suggestion strip --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 64 | <string name="prefs_suggestion_visibility_default_value">0</string> |
| 65 | <!-- Option to show/hide the suggestion strip --> |
| 66 | <string-array name="prefs_suggestion_visibility_values"> |
| 67 | <item>@string/prefs_suggestion_visibility_show_value</item> |
| 68 | <item>@string/prefs_suggestion_visibility_show_only_portrait_value</item> |
| 69 | <item>@string/prefs_suggestion_visibility_hide_value</item> |
| 70 | </string-array> |
| 71 | <string-array name="prefs_suggestion_visibilities"> |
| 72 | <item>@string/prefs_suggestion_visibility_show_name</item> |
| 73 | <item>@string/prefs_suggestion_visibility_show_only_portrait_name</item> |
| 74 | <item>@string/prefs_suggestion_visibility_hide_name</item> |
| 75 | </string-array> |
| 76 | |
| Tadashi G. Takaoka | 9ecad8c | 2010-12-13 12:37:23 +0900 | [diff] [blame] | 77 | <string name="auto_correction_threshold_mode_index_off">0</string> |
| 78 | <string name="auto_correction_threshold_mode_index_modest">1</string> |
| 79 | <string name="auto_correction_threshold_mode_index_aggeressive">2</string> |
| 80 | <string-array name="auto_correction_threshold_mode_indexes"> |
| 81 | <item>@string/auto_correction_threshold_mode_index_off</item> |
| 82 | <item>@string/auto_correction_threshold_mode_index_modest</item> |
| 83 | <item>@string/auto_correction_threshold_mode_index_aggeressive</item> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 84 | </string-array> |
| 85 | <string-array name="auto_correction_threshold_modes"> |
| 86 | <item>@string/auto_correction_threshold_mode_off</item> |
| 87 | <item>@string/auto_correction_threshold_mode_modest</item> |
| 88 | <item>@string/auto_correction_threshold_mode_aggeressive</item> |
| 89 | </string-array> |
| 90 | |
| 91 | <string name="voice_mode_main">0</string> |
| 92 | <string name="voice_mode_symbols">1</string> |
| 93 | <string name="voice_mode_off">2</string> |
| 94 | <string-array name="voice_input_modes_values"> |
| 95 | <item>@string/voice_mode_main</item> |
| 96 | <item>@string/voice_mode_symbols</item> |
| 97 | <item>@string/voice_mode_off</item> |
| 98 | </string-array> |
| 99 | <!-- Array of Voice Input modes --> |
| 100 | <string-array name="voice_input_modes"> |
| 101 | <item>@string/voice_input_modes_main_keyboard</item> |
| 102 | <item>@string/voice_input_modes_symbols_keyboard</item> |
| 103 | <item>@string/voice_input_modes_off</item> |
| 104 | </string-array> |
| 105 | <!-- Array of Voice Input modes summary --> |
| 106 | <string-array name="voice_input_modes_summary"> |
| 107 | <item>@string/voice_input_modes_summary_main_keyboard</item> |
| 108 | <item>@string/voice_input_modes_summary_symbols_keyboard</item> |
| 109 | <item>@string/voice_input_modes_summary_off</item> |
| 110 | </string-array> |
| 111 | |
| 112 | <!-- Title for Latin keyboard debug settings activity / dialog --> |
| 113 | <string name="english_ime_debug_settings">Android keyboard Debug settings</string> |
| 114 | <string name="prefs_debug_mode">Debug Mode</string> |
| satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 115 | |
| Tadashi G. Takaoka | 75fde64 | 2010-11-19 00:31:20 -0800 | [diff] [blame] | 116 | <!-- Keyboard theme names --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 117 | <string name="layout_basic">Basic</string> |
| 118 | <string name="layout_high_contrast">Basic (High Contrast)</string> |
| 119 | <string name="layout_stone_bold">Stone (bold)</string> |
| 120 | <string name="layout_stone_normal">Stone (normal)</string> |
| 121 | <string name="layout_gingerbread">Gingerbread</string> |
| 122 | <string name="layout_honeycomb">Honeycomb</string> |
| Tadashi G. Takaoka | 75fde64 | 2010-11-19 00:31:20 -0800 | [diff] [blame] | 123 | |
| 124 | <!-- For keyboard theme switcher dialog --> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 125 | <string-array name="keyboard_layout_modes"> |
| Tadashi G. Takaoka | 75fde64 | 2010-11-19 00:31:20 -0800 | [diff] [blame] | 126 | <item>@string/layout_basic</item> |
| 127 | <item>@string/layout_high_contrast</item> |
| 128 | <item>@string/layout_stone_normal</item> |
| 129 | <item>@string/layout_stone_bold</item> |
| 130 | <item>@string/layout_gingerbread</item> |
| 131 | <item>@string/layout_honeycomb</item> |
| 132 | </string-array> |
| Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 133 | <string-array name="keyboard_layout_modes_values"> |
| Tadashi G. Takaoka | 75fde64 | 2010-11-19 00:31:20 -0800 | [diff] [blame] | 134 | <item>0</item> |
| 135 | <item>1</item> |
| 136 | <item>2</item> |
| 137 | <item>3</item> |
| 138 | <item>4</item> |
| 139 | <item>5</item> |
| 140 | </string-array> |
| The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 141 | </resources> |