LibreTube/app/src/main/res/xml/sponsorblock_settings.xml

47 lines
1.7 KiB
XML
Raw Normal View History

2022-05-16 15:41:22 +05:30
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<SwitchPreferenceCompat
2022-05-23 00:13:12 +05:30
app:key="sb_enabled_key"
2022-05-24 01:10:24 +05:30
app:title="@string/sponsorblock"
android:summaryOff="@string/disabled"
2022-06-03 22:19:48 +05:30
android:summaryOn="@string/enabled" />
2022-05-16 15:41:22 +05:30
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="sb_notifications_key"
app:title="@string/sponsorblock_notifications"
android:summaryOff="@string/disabled"
android:summaryOn="@string/enabled" />
2022-05-16 15:41:22 +05:30
<PreferenceCategory app:title="@string/category_segments">
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="sponsors_category_key"
app:title="@string/category_sponsor"
app:summary="@string/category_sponsor_description" />
2022-05-16 15:41:22 +05:30
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="selfpromo_category_key"
app:title="@string/category_selfpromo"
app:summary="@string/category_selfpromo_description" />
2022-05-16 15:41:22 +05:30
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="interaction_category_key"
app:title="@string/category_interaction"
app:summary="@string/category_interaction_description" />
2022-05-16 15:41:22 +05:30
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="intro_category_key"
app:title="@string/category_intro"
app:summary="@string/category_intro_description" />
2022-05-16 15:41:22 +05:30
2022-06-03 22:19:48 +05:30
<SwitchPreferenceCompat
app:key="outro_category_key"
app:title="@string/category_outro"
app:summary="@string/category_outro_description" />
2022-05-16 15:41:22 +05:30
</PreferenceCategory>
2022-05-23 00:07:09 +05:30
2022-05-16 22:49:07 +05:30
</androidx.preference.PreferenceScreen>