The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
| 19 | android:title="@string/language_settings"> |
| 20 | |
| 21 | <PreferenceScreen |
| 22 | android:title="@string/phone_language" |
| 23 | android:summary="@string/phone_language_summary"> |
| 24 | <intent android:action="android.intent.action.MAIN" |
| 25 | android:targetPackage="com.android.settings" |
| 26 | android:targetClass="com.android.settings.LocalePicker"/> |
| 27 | </PreferenceScreen> |
| 28 | |
| 29 | <PreferenceCategory android:key="text_category" |
| 30 | android:title="@string/text_category" /> |
| 31 | |
| 32 | <PreferenceScreen |
| 33 | android:title="@string/user_dict_settings_title" |
| 34 | android:summary="@string/user_dict_settings_summary"> |
| 35 | <intent android:action="android.intent.action.MAIN" |
| 36 | android:targetPackage="com.android.settings" |
| 37 | android:targetClass="com.android.settings.UserDictionarySettings" /> |
| 38 | </PreferenceScreen> |
| 39 | |
| 40 | <PreferenceCategory |
| 41 | android:key="hardkeyboard_category" |
| 42 | android:title="@string/hardkeyboard_category"> |
| 43 | <CheckBoxPreference |
| 44 | android:key="auto_replace" |
| 45 | android:title="@string/auto_replace" |
| 46 | android:summaryOn="@string/auto_replace_summary" |
| 47 | android:summaryOff="@string/auto_replace_summary" |
| 48 | android:persistent="false"/> |
| 49 | <CheckBoxPreference |
| 50 | android:key="auto_caps" |
| 51 | android:title="@string/auto_caps" |
| 52 | android:summaryOn="@string/auto_caps_summary" |
| 53 | android:summaryOff="@string/auto_caps_summary" |
| 54 | android:persistent="false"/> |
| 55 | <CheckBoxPreference |
| 56 | android:key="auto_punctuate" |
| 57 | android:title="@string/auto_punctuate" |
| 58 | android:summaryOn="@string/auto_punctuate_summary" |
| 59 | android:summaryOff="@string/auto_punctuate_summary" |
| 60 | android:persistent="false"/> |
| 61 | </PreferenceCategory> |
| 62 | </PreferenceScreen> |