mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7eb59bef28
--HG-- rename : mobile/android/base/resources/xml/preferences.xml.in => mobile/android/base/resources/xml/preferences.xml rename : mobile/android/base/resources/xml/preferences_customize.xml.in => mobile/android/base/resources/xml/preferences_customize.xml rename : mobile/android/base/resources/xml/searchable.xml.in => mobile/android/base/resources/xml/searchable.xml rename : mobile/android/base/resources/xml/sync_authenticator.xml.in => mobile/android/base/resources/xml/sync_authenticator.xml rename : mobile/android/base/resources/xml/sync_options.xml.in => mobile/android/base/resources/xml/sync_options.xml rename : mobile/android/base/resources/xml/sync_syncadapter.xml.in => mobile/android/base/resources/xml/sync_syncadapter.xml
68 lines
3.0 KiB
XML
68 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!-- Preferences screen for pre-v11 Android devices that do not support
|
|
PreferenceFragment or ActionBar. Preference changes here should be mirrored
|
|
to xml-v11/preferences.xml. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto"
|
|
android:enabled="false">
|
|
|
|
<org.mozilla.gecko.SyncPreference android:key="android.not_a_preference.sync"
|
|
android:title="@string/pref_sync"
|
|
android:persistent="false" />
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_customize" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@string/android_package_name"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_customize" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_display" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@string/android_package_name"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_display" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_privacy_short" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@string/android_package_name"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_privacy" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_vendor">
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@string/android_package_name"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_vendor" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
<PreferenceScreen android:title="@string/pref_category_devtools">
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@string/android_package_name"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_devtools" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceScreen>
|