OSDN Git Service

Import translations. DO NOT MERGE
[android-x86/packages-apps-Settings.git] / res / xml / application_settings.xml
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 <!--
18
19       This code is deprecated. This screen is no longer used in Settings.
20       The ApplicationSettings class is kept in case an external app references it directly.
21
22 -->
23
24 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
25         android:title="@string/applications_settings"
26         android:summary="@string/applications_settings_summary"
27         android:key="applications_settings">
28
29     <Preference
30             android:fragment="com.android.settings.applications.ManageApplications"
31             android:title="@string/manageapplications_settings_title"
32             android:summary="@string/manageapplications_settings_summary">
33     </Preference>
34
35     <Preference
36             android:fragment="com.android.settings.applications.ManageApplications"
37             android:title="@string/runningservices_settings_title"
38             android:summary="@string/runningservices_settings_summary">
39         <extra android:name="classname" android:value="com.android.settings.Settings$RunningServicesActivity" />
40     </Preference>
41
42     <Preference
43             android:fragment="com.android.settings.applications.ManageApplications"
44             android:title="@string/storageuse_settings_title"
45             android:summary="@string/storageuse_settings_summary">
46         <extra android:name="classname"
47                 android:value="com.android.settings.Settings$StorageUseActivity" />
48     </Preference>
49
50     <CheckBoxPreference
51             android:key="toggle_advanced_settings"
52             android:title="@string/advanced_settings"
53             android:summaryOff="@string/advanced_settings_summary"
54             android:summaryOn="@string/advanced_settings_summary" />
55
56     <ListPreference
57         android:key="app_install_location"
58         android:title="@string/app_install_location_title"
59         android:summary="@string/app_install_location_summary"
60         android:entries="@array/app_install_location_entries"
61         android:entryValues="@array/app_install_location_values"/>
62
63 </PreferenceScreen>
64