131 lines
No EOL
4.3 KiB
XML
131 lines
No EOL
4.3 KiB
XML
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<Preference
|
|
android:key="appearance"
|
|
app:icon="@drawable/ic_settings"
|
|
android:title="@string/general"/>
|
|
|
|
<Preference
|
|
android:key="folders"
|
|
app:icon="@drawable/baseline_folder_24"
|
|
android:title="@string/directories"/>
|
|
|
|
<Preference
|
|
android:key="downloading"
|
|
app:icon="@drawable/ic_downloads"
|
|
android:title="@string/downloads"/>
|
|
|
|
<Preference
|
|
android:key="processing"
|
|
app:icon="@drawable/baseline_star_half_24"
|
|
android:title="@string/processing"/>
|
|
|
|
<Preference
|
|
android:key="updating"
|
|
app:icon="@drawable/ic_update"
|
|
android:title="@string/updating"/>
|
|
|
|
<Preference
|
|
android:key="advanced"
|
|
app:icon="@drawable/baseline_settings_suggest_24"
|
|
android:title="@string/advanced"/>
|
|
|
|
<PreferenceCategory android:title="@string/backup_restore">
|
|
<Preference
|
|
app:icon="@drawable/baseline_save_alt_24"
|
|
app:key="backup"
|
|
app:title="@string/backup"/>
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_restore_page_24"
|
|
app:key="restore"
|
|
app:title="@string/restore"/>
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="true"
|
|
app:icon="@drawable/ic_clock"
|
|
app:key="automatic_backup"
|
|
android:summary="@string/automatic_backup_summary"
|
|
app:title="@string/automatic_backup" />
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_folder_24"
|
|
android:summary=""
|
|
app:key="backup_path"
|
|
app:title="@string/backup_path" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/about" >
|
|
<Preference
|
|
app:icon="@drawable/baseline_exit_to_app_24"
|
|
app:key="package_name"
|
|
app:title="@string/package_name" />
|
|
<Preference
|
|
app:icon="@drawable/ic_discord"
|
|
app:key="discord"
|
|
app:summary="https://discord.gg/WW3KYWxAPm"
|
|
app:title="Discord">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://discord.gg/WW3KYWxAPm" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_telegram"
|
|
app:key="telegram"
|
|
app:summary="https://t.me/ytdlnis"
|
|
app:title="Telegram">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://t.me/ytdlnis" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_translate"
|
|
app:key="translate"
|
|
app:summary="@string/help_translate_summary"
|
|
app:title="@string/help_translate">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://hosted.weblate.org/projects/ytdlnis/" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_security_24"
|
|
app:key="security"
|
|
app:summary="🔐 YTDLnis - Privacy Policy"
|
|
app:title="@string/security">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis/blob/main/SECURITY.md" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_license"
|
|
app:key="license"
|
|
app:summary="GNU General Public License v3.0"
|
|
app:title="@string/license">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis/blob/main/LICENSE" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_code"
|
|
app:key="rreth"
|
|
app:summary="https://github.com/deniscerri/ytdlnis"
|
|
app:allowDividerBelow="true"
|
|
app:title="@string/source_code">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis" />
|
|
</Preference>
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
</PreferenceScreen> |