blob: 5d3010cd11afa07b6b50c78684b47c4f6250c28f [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?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
20 <PreferenceCategory
21 android:key="language_category"
22 android:title="@string/language_category">
23 <!--
24 <ListPreference
25 android:title="@string/phone_language"/>
26 -->
27
28
29 <PreferenceScreen
30 android:title="@string/phone_language">
31 <intent android:action="android.intent.action.MAIN"
32 android:targetPackage="com.android.settings"
33 android:targetClass="com.android.settings.LocalePicker"/>
34 </PreferenceScreen>
35 </PreferenceCategory>
36
37 <PreferenceCategory
38 android:title="@string/text_category" />
39 <CheckBoxPreference
40 android:key="auto_replace"
41 android:title="@string/auto_replace"
42 android:summaryOn="@string/auto_replace_summary"
43 android:summaryOff="@string/auto_replace_summary"
44 android:persistent="false"/>
45 <CheckBoxPreference
46 android:key="auto_caps"
47 android:title="@string/auto_caps"
48 android:summaryOn="@string/auto_caps_summary"
49 android:summaryOff="@string/auto_caps_summary"
50 android:persistent="false"/>
51 <CheckBoxPreference
52 android:key="auto_punctuate"
53 android:title="@string/auto_punctuate"
54 android:summaryOn="@string/auto_punctuate_summary"
55 android:summaryOff="@string/auto_punctuate_summary"
56 android:persistent="false"/>
57</PreferenceScreen>