Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:gecko="http://schemas.android.com/apk/res-auto"
8 android:enabled="false">
10 <PreferenceScreen android:title="@string/pref_category_home"
11 android:summary="@string/pref_category_home_summary" >
12 <intent android:action="android.intent.action.VIEW"
13 android:targetPackage="@string/android_package_name"
14 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
15 <extra
16 android:name="resource"
17 android:value="preferences_home" />
18 </intent>
19 </PreferenceScreen>
21 <PreferenceScreen android:title="@string/pref_category_search"
22 android:summary="@string/pref_category_search_summary" >
24 <intent android:action="android.intent.action.VIEW"
25 android:targetPackage="@string/android_package_name"
26 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
27 <extra
28 android:name="resource"
29 android:value="preferences_search" />
30 </intent>
31 </PreferenceScreen>
33 <ListPreference android:key="android.not_a_preference.restoreSession3"
34 android:title="@string/pref_restore"
35 android:defaultValue="quit"
36 android:entries="@array/pref_restore_entries"
37 android:entryValues="@array/pref_restore_values"
38 android:persistent="true" />
41 <org.mozilla.gecko.preferences.AndroidImportPreference
42 android:key="android.not_a_preference.import_android"
43 gecko:entries="@array/pref_import_android_entries"
44 gecko:entryKeys="@array/pref_import_android_keys"
45 gecko:initialValues="@array/pref_import_android_values"
46 android:title="@string/pref_import_android"
47 android:positiveButtonText="@string/bookmarkhistory_button_import"
48 android:negativeButtonText="@string/button_cancel"
49 android:persistent="false" />
52 <ListPreference android:key="app.update.autodownload"
53 android:title="@string/pref_update_autodownload"
54 android:entries="@array/pref_update_autodownload_entries"
55 android:entryValues="@array/pref_update_autodownload_values"
56 android:persistent="false" />
58 </PreferenceScreen>