feat(YouTube/Hide feed components): add Hide playables settings

This commit is contained in:
inotia00 2024-05-02 03:29:14 +09:00
parent c2fd379f2e
commit a66f3eebae
2 changed files with 4 additions and 0 deletions

View File

@ -124,6 +124,9 @@ Tap here to learn more about DeArrow."</string>
<string name="revanced_hide_notify_me_button_title">"Hide 'Notify me' button"</string>
<string name="revanced_hide_notify_me_button_summary_on">"'Notify me' button is hidden."</string>
<string name="revanced_hide_notify_me_button_summary_off">"'Notify me' button is shown."</string>
<string name="revanced_hide_playables_title">Hide Playables</string>
<string name="revanced_hide_playables_summary_on">Playables are hidden.</string>
<string name="revanced_hide_playables_summary_off">Playables are shown.</string>
<string name="revanced_hide_show_more_button_title">"Hide 'Show more' button"</string>
<string name="revanced_hide_show_more_button_summary_on">"'Show more' button is hidden."</string>
<string name="revanced_hide_show_more_button_summary_off">"'Show more' button is shown."</string>

View File

@ -93,6 +93,7 @@
<SwitchPreference android:title="@string/revanced_hide_mix_playlists_title" android:key="revanced_hide_mix_playlists" android:defaultValue="false" android:summaryOn="@string/revanced_hide_mix_playlists_summary_on" android:summaryOff="@string/revanced_hide_mix_playlists_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_movie_shelf_title" android:key="revanced_hide_movie_shelf" android:defaultValue="false" android:summaryOn="@string/revanced_hide_movie_shelf_summary_on" android:summaryOff="@string/revanced_hide_movie_shelf_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_notify_me_button_title" android:key="revanced_hide_notify_me_button" android:defaultValue="false" android:summaryOn="@string/revanced_hide_notify_me_button_summary_on" android:summaryOff="@string/revanced_hide_notify_me_button_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_playables_title" android:key="revanced_hide_playables" android:defaultValue="true" android:summaryOn="@string/revanced_hide_playables_summary_on" android:summaryOff="@string/revanced_hide_playables_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_show_more_button_title" android:key="revanced_hide_show_more_button" android:defaultValue="true" android:summaryOn="@string/revanced_hide_show_more_button_summary_on" android:summaryOff="@string/revanced_hide_show_more_button_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_subscriptions_channel_section_title" android:key="revanced_hide_subscriptions_channel_section" android:defaultValue="false" android:summaryOn="@string/revanced_hide_subscriptions_channel_section_summary_on" android:summaryOff="@string/revanced_hide_subscriptions_channel_section_summary_off" />
<SwitchPreference android:title="@string/revanced_hide_ticket_shelf_title" android:key="revanced_hide_ticket_shelf" android:defaultValue="true" android:summaryOn="@string/revanced_hide_ticket_shelf_summary_on" android:summaryOff="@string/revanced_hide_ticket_shelf_summary_off" />SETTINGS: HIDE_FEED_COMPONENTS -->