2010-03-13 13:56:32 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
2011-02-05 07:00:12 -05:00
|
|
|
Copyright 2009-2011 Sebastian Kaspari
|
2010-03-13 13:56:32 -05:00
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
<PreferenceScreen
|
2010-11-18 12:52:19 -05:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_connection">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_reconnect_title"
|
|
|
|
android:summary="@string/settings_reconnect_desc"
|
|
|
|
android:key="@string/key_reconnect"
|
|
|
|
android:defaultValue="@string/default_reconnect" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_chat">
|
|
|
|
<ListPreference
|
2010-09-05 14:22:19 -04:00
|
|
|
android:title="@string/settings_fontsize_title"
|
|
|
|
android:summary="@string/settings_fontsize_desc"
|
|
|
|
android:dialogTitle="@string/settings_fontsize_dialog_title"
|
|
|
|
android:entries="@array/fontsize_labels"
|
|
|
|
android:entryValues="@array/fontsize_values"
|
|
|
|
android:key="@string/key_fontsize"
|
|
|
|
android:defaultValue="@string/default_fontsize" />
|
2010-11-18 12:52:19 -05:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_icons_title"
|
|
|
|
android:summary="@string/settings_icons_desc"
|
|
|
|
android:key="@string/key_show_icons"
|
|
|
|
android:defaultValue="@string/default_show_icons" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_colors_title"
|
|
|
|
android:summary="@string/settings_colors_desc"
|
|
|
|
android:key="@string/key_show_colors"
|
|
|
|
android:defaultValue="@string/default_show_colors"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_colors_nick_title"
|
|
|
|
android:key="@string/key_show_colors_nick"
|
|
|
|
android:summary="@string/settings_colors_nick_desc"
|
|
|
|
android:defaultValue="@string/default_show_colors_nick"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_timestamp_title"
|
|
|
|
android:summary="@string/settings_timestamp_desc"
|
|
|
|
android:key="@string/key_show_timestamp"
|
|
|
|
android:defaultValue="@string/default_show_timestamp" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_24h_title"
|
|
|
|
android:summary="@string/settings_24h_desc"
|
|
|
|
android:key="@string/key_24h_format"
|
|
|
|
android:defaultValue="@string/default_24h_format"
|
|
|
|
android:dependency="@string/key_show_timestamp" />
|
2010-11-18 13:25:26 -05:00
|
|
|
<CheckBoxPreference
|
2011-03-15 15:42:35 -04:00
|
|
|
android:title="@string/settings_joinpartquit_title"
|
|
|
|
android:summary="@string/settings_joinpartquit_desc"
|
|
|
|
android:key="@string/key_show_joinpartquit"
|
|
|
|
android:defaultValue="@string/default_show_joinpartquit" />
|
2011-03-15 15:53:47 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_noticeserverwindow_title"
|
|
|
|
android:summary="@string/settings_noticeserverwindow_desc"
|
|
|
|
android:key="@string/key_notice_server_window"
|
|
|
|
android:defaultValue="@string/default_notice_server_window" />
|
2011-03-15 22:21:48 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_mirc_colors_title"
|
|
|
|
android:summary="@string/settings_mirc_colors_desc"
|
|
|
|
android:key="@string/key_mirc_colors"
|
2011-03-17 23:08:21 -04:00
|
|
|
android:defaultValue="@string/default_mirc_colors" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_graphical_smilies_title"
|
|
|
|
android:summary="@string/settings_graphical_smilies_desc"
|
|
|
|
android:key="@string/key_graphical_smilies"
|
|
|
|
android:defaultValue="@string/default_graphical_smilies" />
|
2010-09-10 02:26:08 -04:00
|
|
|
</PreferenceCategory>
|
2010-12-17 16:29:33 -05:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_highlight">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_sound_highlight_title"
|
|
|
|
android:summary="@string/settings_sound_highlight_desc"
|
|
|
|
android:key="@string/key_sound_highlight"
|
|
|
|
android:defaultValue="@string/default_sound_highlight" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_vibrate_highlight_title"
|
|
|
|
android:summary="@string/settings_vibrate_highlight_desc"
|
|
|
|
android:key="@string/key_vibrate_highlight"
|
|
|
|
android:defaultValue="@string/default_vibrate_highlight" />
|
|
|
|
</PreferenceCategory>
|
2010-11-18 12:52:19 -05:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/settings_misc">
|
2010-09-05 16:04:55 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/settings_voice_recognition_title"
|
|
|
|
android:summary="@string/settings_voice_recognition_desc"
|
|
|
|
android:key="@string/key_voice_recognition"
|
|
|
|
android:defaultValue="@string/default_voice_recognition" />
|
2010-11-18 12:52:19 -05:00
|
|
|
<EditTextPreference
|
|
|
|
android:title="@string/settings_quitmessage_title"
|
|
|
|
android:summary="@string/settings_quitmessage_desc"
|
|
|
|
android:key="@string/key_quitmessage"
|
|
|
|
android:defaultValue="@string/default_quitmessage"
|
|
|
|
android:dialogTitle="@string/settings_quitmessage_dialog_title"
|
|
|
|
android:dialogMessage="@string/settings_quitmessage_dialog_desc" />
|
|
|
|
</PreferenceCategory>
|
2010-03-13 13:56:32 -05:00
|
|
|
</PreferenceScreen>
|