blob: 3792496dc029a5968b246690b63b361f307da74c [file] [log] [blame]
Junichi Monma59aefa22012-04-24 16:13:54 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
19 android:key="openwnn_pref_ja">
20
21 <PreferenceCategory android:title="@string/preference_key_setting_menu">
22 <CheckBoxPreference android:key="key_sound"
23 android:title="@string/preference_key_sound_title"
24 android:summary="@string/preference_key_sound_summary"/>
25 <CheckBoxPreference android:key="key_vibration"
26 android:title="@string/preference_key_vibration_title"
27 android:summary="@string/preference_key_vibration_summary"/>
28 <CheckBoxPreference android:key="auto_caps"
29 android:title="@string/preference_auto_caps_title"
30 android:summary="@string/preference_auto_caps_summary"
31 android:defaultValue="true" />
32 <jp.co.omronsoft.openwnn.JAJP.KeyboardListPreferenceJAJP
33 android:key="keyboard_skin"
34 android:title="@string/preference_keyboard_skin_title"
35 android:summary="@string/preference_keyboard_skin_summary"
36 android:entries="@array/keyboard_skin"
37 android:entryValues="@array/keyboard_skin_id"
38 android:defaultValue="keyboard_android_default" />
39 </PreferenceCategory>
40
41 <PreferenceCategory android:title="@string/preference_conversion_menu_ja">
42 <CheckBoxPreference android:key="opt_enable_learning_ja"
43 android:title="@string/preference_input_learning_title_ja"
44 android:summary="@string/preference_input_learning_summary"
45 android:defaultValue="true" />
46 <CheckBoxPreference android:key="opt_prediction_ja"
47 android:title="@string/preference_prediction_title_ja"
48 android:summary="@string/preference_prediction_summary"
49 android:defaultValue="true" />
50 </PreferenceCategory>
51
52 <PreferenceCategory android:title="@string/preference_conversion_menu_en">
53 <CheckBoxPreference android:key="opt_enable_learning_en"
54 android:title="@string/preference_input_learning_title_en"
55 android:summary="@string/preference_input_learning_summary"
56 android:defaultValue="true" />
57 <CheckBoxPreference android:key="opt_prediction_en"
58 android:title="@string/preference_prediction_title_en"
59 android:summary="@string/preference_prediction_summary"
60 android:defaultValue="false" />
61 </PreferenceCategory>
62
63 <PreferenceCategory android:title="@string/preference_dictionary_menu">
zhuqk0617@thundersoft.com8d4541f2015-04-10 14:18:43 +080064 <PreferenceScreen android:key="user_dictionary_edit_words_ja"
Junichi Monma59aefa22012-04-24 16:13:54 +090065 android:title="@string/preference_dictionary_menu_ja"
66 android:summary="@string/preference_user_dictionary_edit_words_summary_ja"
67 android:persistent="false">
68 <intent android:action="android.intent.action.MAIN"
69 android:targetPackage="jp.co.omronsoft.openwnn"
70 android:targetClass="jp.co.omronsoft.openwnn.JAJP.UserDictionaryToolsListJAJP" />
71 </PreferenceScreen>
72
zhuqk0617@thundersoft.com8d4541f2015-04-10 14:18:43 +080073 <PreferenceScreen android:key="user_dictionary_edit_words_en"
Junichi Monma59aefa22012-04-24 16:13:54 +090074 android:title="@string/preference_dictionary_menu_en"
75 android:summary="@string/preference_user_dictionary_edit_words_summary_en"
76 android:persistent="false">
77 <intent android:action="android.intent.action.MAIN"
78 android:targetPackage="jp.co.omronsoft.openwnn"
79 android:targetClass="jp.co.omronsoft.openwnn.EN.UserDictionaryToolsListEN" />
80 </PreferenceScreen>
81
82 <jp.co.omronsoft.openwnn.JAJP.ClearLearnDictionaryDialogPreferenceJAJP
83 android:key="clear_learn_dictionary"
84 android:title="@string/preference_user_dictionary_clear_learning_title"
85 android:summary="@string/preference_user_dictionary_clear_learning_summary"
86 android:dialogMessage="@string/dialog_clear_learning_dictionary_message"
87 android:positiveButtonText="@string/dialog_button_ok"
88 android:negativeButtonText="@string/dialog_button_cancel"/>
89
90 </PreferenceCategory>
91
92 <PreferenceCategory android:title="@string/preference_aboutime_menu">
93 <Preference android:key="openwnn_version"
94 style="?android:preferenceInformationStyle"
95 android:title="@string/openwnn_japanese"
96 android:summary="@string/openwnn_japanese_copyright" />
97 </PreferenceCategory>
98
99</PreferenceScreen>
100