From fb1fd09faca35977063d611c0156b228796b80f9 Mon Sep 17 00:00:00 2001
From: KobeW50 <84587632+KobeW50@users.noreply.github.com>
Date: Thu, 30 May 2024 05:56:47 -0400
Subject: [PATCH] Improve strings (#53)
* Clarify patch descriptions
* (YouTube): Capitalize proper nouns in settings
and other small string fixes
* (YouTube - Player flyout menu): Capitalize and quote strings
* Update src/main/resources/youtube/settings/host/values/strings.xml
Co-authored-by: KobeW50 <84587632+KobeW50@users.noreply.github.com>
* (YouTube): update strings.xml
* Make "For you shelves" singular
* Plural nouns in patch names and descriptions
* change the patch name in the `Patch information` section
* Update RecentlyVisitedShelfPatch.kt
---------
Co-authored-by: inotia00 <108592928+inotia00@users.noreply.github.com>
---
.../OldStyleLibraryShelfPatch.kt | 2 +-
.../redirection/DislikeRedirectionPatch.kt | 2 +-
.../music/misc/codecs/OpusCodecPatch.kt | 4 +-
.../player/replace/ReplaceCastButtonPatch.kt | 4 +-
.../RecentlyVisitedShelfPatch.kt | 4 +-
.../screenshotpopup/ScreenshotPopupPatch.kt | 2 +-
.../layout/dimming/ShortsDimmingPatch.kt | 2 +-
.../youtube/layout/theme/MaterialYouPatch.kt | 2 +-
.../player/buttons/PlayerButtonsPatch.kt | 2 +-
.../player/comments/CommentsComponentPatch.kt | 2 +-
.../outlinebutton/ShortsOutlineButtonPatch.kt | 2 +-
.../shorts/repeat/ShortsRepeatPatch.kt | 2 +-
.../ResumingShortsOnStartupPatch.kt | 2 +-
.../youtube/settings/host/values/strings.xml | 236 +++++++++---------
.../youtube/settings/xml/revanced_prefs.xml | 8 +-
15 files changed, 138 insertions(+), 138 deletions(-)
diff --git a/src/main/kotlin/app/revanced/patches/music/general/oldstylelibraryshelf/OldStyleLibraryShelfPatch.kt b/src/main/kotlin/app/revanced/patches/music/general/oldstylelibraryshelf/OldStyleLibraryShelfPatch.kt
index c49ac9501..4beb0b2f9 100644
--- a/src/main/kotlin/app/revanced/patches/music/general/oldstylelibraryshelf/OldStyleLibraryShelfPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/general/oldstylelibraryshelf/OldStyleLibraryShelfPatch.kt
@@ -18,7 +18,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
@Suppress("unused")
object OldStyleLibraryShelfPatch : BaseBytecodePatch(
name = "Restore old style library shelf",
- description = "Adds an option to return the library tab to the old style.",
+ description = "Adds an option to return the Library tab to the old style.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
fingerprints = setOf(BrowseIdFingerprint)
diff --git a/src/main/kotlin/app/revanced/patches/music/general/redirection/DislikeRedirectionPatch.kt b/src/main/kotlin/app/revanced/patches/music/general/redirection/DislikeRedirectionPatch.kt
index 83243eb6b..ae5b6e184 100644
--- a/src/main/kotlin/app/revanced/patches/music/general/redirection/DislikeRedirectionPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/general/redirection/DislikeRedirectionPatch.kt
@@ -27,7 +27,7 @@ import com.android.tools.smali.dexlib2.iface.reference.Reference
@Suppress("unused")
object DislikeRedirectionPatch : BaseBytecodePatch(
name = "Disable dislike redirection",
- description = "Adds an option to disable redirection to the next track when clicking the dislike button.",
+ description = "Adds an option to disable redirection to the next track when clicking the Dislike button.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
fingerprints = setOf(
diff --git a/src/main/kotlin/app/revanced/patches/music/misc/codecs/OpusCodecPatch.kt b/src/main/kotlin/app/revanced/patches/music/misc/codecs/OpusCodecPatch.kt
index 22661d829..af4cf2e3f 100644
--- a/src/main/kotlin/app/revanced/patches/music/misc/codecs/OpusCodecPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/misc/codecs/OpusCodecPatch.kt
@@ -8,8 +8,8 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("unused")
object OpusCodecPatch : BaseResourcePatch(
- name = "Enable opus codec",
- description = "Adds an option to use the opus audio codec instead of the mp4a audio codec.",
+ name = "Enable OPUS codec",
+ description = "Adds an option to use the OPUS audio codec instead of the MP4A audio codec.",
dependencies = setOf(
OpusCodecBytecodePatch::class,
SettingsPatch::class
diff --git a/src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt b/src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt
index 38983c31c..3b54565c1 100644
--- a/src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt
@@ -31,8 +31,8 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Suppress("unused")
object ReplaceCastButtonPatch : BaseBytecodePatch(
- name = "Replace cast button",
- description = "Adds an option to replace the cast button in the player with the \"Open music\" button.",
+ name = "Replace Cast button",
+ description = "Adds an option to replace the Cast button in the player with an Open music button.",
dependencies = setOf(
MainActivityResolvePatch::class,
PlayerResponsePatch::class,
diff --git a/src/main/kotlin/app/revanced/patches/reddit/layout/recentlyvisited/RecentlyVisitedShelfPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/layout/recentlyvisited/RecentlyVisitedShelfPatch.kt
index 0d9a95a39..22361979c 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/layout/recentlyvisited/RecentlyVisitedShelfPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/layout/recentlyvisited/RecentlyVisitedShelfPatch.kt
@@ -22,8 +22,8 @@ import com.android.tools.smali.dexlib2.iface.reference.Reference
@Suppress("unused")
object RecentlyVisitedShelfPatch : BaseBytecodePatch(
- name = "Hide recently visited shelf",
- description = "Adds an option to hide the recently visited shelf in the sidebar.",
+ name = "Hide Recently Visited shelf",
+ description = "Adds an option to hide the Recently Visited shelf in the sidebar.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
fingerprints = setOf(CommunityDrawerPresenterFingerprint)
diff --git a/src/main/kotlin/app/revanced/patches/reddit/layout/screenshotpopup/ScreenshotPopupPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/layout/screenshotpopup/ScreenshotPopupPatch.kt
index 858f34735..53acb5a54 100644
--- a/src/main/kotlin/app/revanced/patches/reddit/layout/screenshotpopup/ScreenshotPopupPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/reddit/layout/screenshotpopup/ScreenshotPopupPatch.kt
@@ -16,7 +16,7 @@ import app.revanced.util.resultOrThrow
@Suppress("unused")
object ScreenshotPopupPatch : BaseBytecodePatch(
name = "Disable screenshot popup",
- description = "Adds an option to disable the popup that shows up when taking a screenshot.",
+ description = "Adds an option to disable the popup that appears when taking a screenshot.",
dependencies = setOf(
SettingsPatch::class,
SharedResourceIdPatch::class
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt
index a924ee944..f8f5e9cee 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/dimming/ShortsDimmingPatch.kt
@@ -8,7 +8,7 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("unused")
object ShortsDimmingPatch : BaseResourcePatch(
- name = "Hide shorts dimming",
+ name = "Hide Shorts dimming",
description = "Removes, at compile time, the dimming effect at the top and bottom of Shorts videos.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/MaterialYouPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/MaterialYouPatch.kt
index 2f121d757..10dc49270 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/layout/theme/MaterialYouPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/layout/theme/MaterialYouPatch.kt
@@ -13,7 +13,7 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("DEPRECATION", "unused")
object MaterialYouPatch : BaseResourcePatch(
name = "MaterialYou",
- description = "Enables MaterialYou theme for Android 12+.",
+ description = "Applies the MaterialYou theme for Android 12+ devices.",
dependencies = setOf(
BaseThemePatch::class,
SettingsPatch::class,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/player/buttons/PlayerButtonsPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/player/buttons/PlayerButtonsPatch.kt
index dd5a0b55d..d4932c777 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/player/buttons/PlayerButtonsPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/player/buttons/PlayerButtonsPatch.kt
@@ -36,7 +36,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction3rc
@Suppress("unused")
object PlayerButtonsPatch : BaseBytecodePatch(
name = "Hide player buttons",
- description = "Adds an option to hide buttons in the video player.",
+ description = "Adds options to hide buttons in the video player.",
dependencies = setOf(
CastButtonPatch::class,
FullscreenButtonViewStubPatch::class,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/player/comments/CommentsComponentPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/player/comments/CommentsComponentPatch.kt
index a7227a4fd..658ae6e6d 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/player/comments/CommentsComponentPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/player/comments/CommentsComponentPatch.kt
@@ -22,7 +22,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
@Suppress("unused")
object CommentsComponentPatch : BaseBytecodePatch(
- name = "Hide comments component",
+ name = "Hide comments components",
description = "Adds options to hide components related to comments.",
dependencies = setOf(
LithoFilterPatch::class,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/shorts/outlinebutton/ShortsOutlineButtonPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/shorts/outlinebutton/ShortsOutlineButtonPatch.kt
index a7b2140f0..577df9feb 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/shorts/outlinebutton/ShortsOutlineButtonPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/shorts/outlinebutton/ShortsOutlineButtonPatch.kt
@@ -10,7 +10,7 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("unused")
object ShortsOutlineButtonPatch : BaseResourcePatch(
name = "Shorts outline button",
- description = "Applies the outline icon to the action buttons in the Shorts player.",
+ description = "Applies, at compile time, the outline icon to the action buttons in the Shorts player.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE
) {
diff --git a/src/main/kotlin/app/revanced/patches/youtube/shorts/repeat/ShortsRepeatPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/shorts/repeat/ShortsRepeatPatch.kt
index 17c57f725..d13641551 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/shorts/repeat/ShortsRepeatPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/shorts/repeat/ShortsRepeatPatch.kt
@@ -22,7 +22,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
@Suppress("unused")
object ShortsRepeatPatch : BaseBytecodePatch(
- name = "Change shorts repeat state",
+ name = "Change Shorts repeat state",
description = "Adds an option to control whether Shorts should repeat, autoplay, or pause upon ending.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
diff --git a/src/main/kotlin/app/revanced/patches/youtube/shorts/startupshortsreset/ResumingShortsOnStartupPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/shorts/startupshortsreset/ResumingShortsOnStartupPatch.kt
index 41eb1bf17..c2dd9bd7f 100644
--- a/src/main/kotlin/app/revanced/patches/youtube/shorts/startupshortsreset/ResumingShortsOnStartupPatch.kt
+++ b/src/main/kotlin/app/revanced/patches/youtube/shorts/startupshortsreset/ResumingShortsOnStartupPatch.kt
@@ -24,7 +24,7 @@ import com.android.tools.smali.dexlib2.iface.reference.MethodReference
@Suppress("unused")
object ResumingShortsOnStartupPatch : BaseBytecodePatch(
- name = "Disable resuming shorts on startup",
+ name = "Disable resuming Shorts on startup",
description = "Adds an option to disable the Shorts player from resuming on app startup when Shorts were last being watched.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE,
diff --git a/src/main/resources/youtube/settings/host/values/strings.xml b/src/main/resources/youtube/settings/host/values/strings.xml
index 3bc794313..401dc9a1c 100644
--- a/src/main/resources/youtube/settings/host/values/strings.xml
+++ b/src/main/resources/youtube/settings/host/values/strings.xml
@@ -129,7 +129,7 @@ Tap here to learn more about DeArrow."
"Hide 'Notify me' button"
"'Notify me' button is hidden."
"'Notify me' button is shown."
- Hide playables
+ Hide Playables
Playables are hidden.
Playables are shown.
"Hide 'Show more' button"
@@ -168,18 +168,18 @@ Tap here to learn more about DeArrow."
"Shorts
Playlists
Store"
- Hide browse store button
- Browse store button is hidden.
- Browse store button is shown.
+ Hide Visit store button
+ Visit store button is hidden.
+ Visit store button is shown.
Hide channel member shelf
Channel member shelf is hidden.
Channel member shelf is shown.
Hide channel profile links
- Links at the top of channel profile is hidden.
- Links at the top of channel profile is shown.
+ Links at the top of channel profiles are hidden.
+ Links at the top of channel profiles are shown.
"Hide 'For You' shelf"
- "'For You' shelves are hidden."
- "'For You' shelves are shown."
+ "'For You' shelf is hidden."
+ "'For You' shelf is shown."
Community posts
@@ -250,9 +250,9 @@ Limitations:
Hide videos based on duration
Hide videos with shorter than or longer than duration.\n\nKnown issue: It will not hide videos in the player related videos, instead it will hide the timestamp.
Longer than duration
- Videos with duration longer than this number will be hidden.
+ Videos with durations longer than this number will be hidden.
Shorter than duration
- Videos with duration shorter than this number will be hidden.
+ Videos with durations shorter than this number will be hidden.
View count filter
@@ -375,29 +375,29 @@ Some components may not be hidden."
Enable narrow navigation buttons
Spacing between navigation buttons is narrow.
Spacing between navigation buttons is normal.
- Hide create button
+ Hide Create button
Create button is hidden.
Create button is shown.
- Hide home button
+ Hide Home button
Home button is shown.
Home button is hidden.
- Hide library button
+ Hide Library button
Library button is hidden.
Library button is shown.
Hide notifications button
Notifications button is hidden.
Notifications button is shown.
- Hide shorts button
+ Hide Shorts button
Shorts button is hidden.
Shorts button is shown.
- Hide subscriptions button
+ Hide Subscriptions button
Subscriptions button is hidden.
Subscriptions button is shown.
- Hide navigation label
- Navigation label is hidden.
- Navigation label is shown.
- Switch create with notifications
- "Swaps the positions of the create button and notification button by spoofing device information.
+ Hide navigation labels
+ Navigation labels are hidden.
+ Navigation labels are shown.
+ Swap Create and Notifications buttons
+ "Swaps the positions of the Create button with the Notifications button by spoofing device information.
• The device may need to be rebooted for a change of this setting to take effect.
• Disabling this setting loads more ads from the server side.
@@ -408,7 +408,7 @@ Some components may not be hidden."
Hide elements of the YouTube settings menu.
Hide YouTube settings menu
- Hide elements in YouTube settings menu.
+ Hide elements of the YouTube settings menu.
YouTube settings menu filter
List of YouTube settings menu names to filter, separated by new lines.
"Account
@@ -426,35 +426,35 @@ Captions"
Wide search bar is enabled.
Wide search bar is disabled.
Enable wide search bar with header
- Wide search bar includes YouTube header.
- Wide search bar does not include YouTube header.
+ Wide search bar does not hide the YouTube header.
+ Wide search bar hides the YouTube header.
Enable wide search bar in You tab
- "Enabling this setting will disable the settings button in the You tab.
+ "Enabling this setting will disable the Settings button in the You tab.
In this case, please use the following path to access the settings:
You tab → View channel → Menu → Settings."
- Hide cast button
+ Hide Cast button
Cast button is hidden.
Cast button is shown.
- Hide create button
+ Hide Create button
Create button is hidden.
Create button is shown.
- Hide notification button
- Notification button is hidden.
- Notification button is shown.
- Hide search term thumbnail
+ Hide Notifications button
+ Notifications button is hidden.
+ Notifications button is shown.
+ Hide search term thumbnails
Thumbnails in the search term history are hidden.
Thumbnails in the search term history are shown.
Hide voice search button
Voice search button is hidden.
Voice search button is shown.
- Replace create button
- Replaces create button with settings button.
+ Replace Create button
+ Replaces the Create button with the Settings button.
Action type to assign to button
- "Tap to open RVX Settings.
-Tap and hold to open YouTube Settings."
- "Tap to open YouTube Settings.
-Tap and hold to open RVX Settings."
+ "Tap to open RVX settings.
+Tap and hold to open YouTube settings."
+ "Tap to open YouTube settings.
+Tap and hold to open RVX settings."
@@ -506,8 +506,8 @@ Note:
Seek undo message is hidden.
Seek undo message is shown.
Hide suggested actions
- Suggested actions hidden.
- Suggested actions shown.
+ Suggested actions are hidden.
+ Suggested actions are shown.
Hide timed reactions
Timed reactions are hidden.
Timed reactions are shown.
@@ -525,34 +525,34 @@ Autoplay can be changed in YouTube settings:
Action buttons
Hide or show action buttons under videos.
- Hide clip button
+ Hide Clip button
Clip button is hidden.
Clip button is shown.
- Hide download button
+ Hide Download button
Download button is hidden.
Download button is shown.
- Hide like and dislike buttons
- Like and dislike buttons are hidden.
- Like and dislike buttons are shown.
- Hide remix button
+ Hide Like and Dislike buttons
+ Like and Dislike buttons are hidden.
+ Like and Dislike buttons are shown.
+ Hide Remix button
Remix button is hidden.
Remix button is shown.
- Hide report button
+ Hide Report button
Report button is hidden.
Report button is shown.
- Hide rewards button
+ Hide Rewards button
Rewards button is hidden.
Rewards button is shown.
- Hide save to playlist button
- Save to playlist button is hidden.
- Save to playlist button is shown.
- Hide share button
+ Hide Save button
+ Save button is hidden.
+ Save button is shown.
+ Hide Share button
Share button is hidden.
Share button is shown.
- Hide shop button
+ Hide Shop button
Shop button is hidden.
Shop button is shown.
- Hide thanks button
+ Hide Thanks button
Thanks button is hidden.
Thanks button is shown.
@@ -572,10 +572,10 @@ Autoplay can be changed in YouTube settings:
Channel bar
Hide or show components of the channel bar under videos.
- Hide join button
+ Hide Join button
Join button is hidden.
Join button is shown.
- Hide start trial button
+ Hide Start trial button
Start trial button is hidden.
Start trial button is shown.
@@ -586,9 +586,9 @@ Autoplay can be changed in YouTube settings:
Hide channel guidelines
Channel guidelines are hidden.
Channel guidelines are shown.
- Hide comments by members banner
- Comments by members banner is hidden.
- Comments by members banner is shown.
+ "Hide 'Comments by members' banner"
+ "'Comments by members' banner is hidden."
+ "'Comments by members' banner is shown."
Hide comments section
Comments section is hidden.
Comments section is shown.
@@ -599,12 +599,12 @@ Autoplay can be changed in YouTube settings:
Preview comment is hidden.
Preview comment is shown.
Hide preview comment type
- This does not change the size of the comment section, so it is possible to open the live chat replay in the comment section.
- This changes the size of the comment section, so it is impossible to open a live chat replay in the comment section.
- Hide create shorts button
+ This does not change the size of the comments section, so it is possible to open the live chat replay in the comments section.
+ This changes the size of the comments section, so it is impossible to open a live chat replay in the comments section.
+ Hide create Shorts button
Create Shorts button is hidden.
Create Shorts button is shown.
- Hide thanks button
+ Hide Thanks button
Thanks button is hidden.
Thanks button is shown.
Hide timestamp and emoji buttons
@@ -618,58 +618,58 @@ Autoplay can be changed in YouTube settings:
Change toggle type
Text toggles are used.
Switch toggles are used.
- Hide audio track menu
+ Hide Audio track menu
Audio track menu is hidden.
Audio track menu is shown.
- Hide captions menu
+ Hide Captions menu
Captions menu is hidden.
Captions menu is shown.
Hide captions menu footer
Captions menu footer is hidden.
Captions menu footer is shown.
- Hide lock screen menu
+ Hide Lock screen menu
Lock screen menu is hidden.
Lock screen menu is shown.
- Hide more information menu
+ Hide More information menu
More information menu is hidden.
More information menu is shown.
- Hide playback speed menu
+ Hide Playback speed menu
Playback speed menu is hidden.
Playback speed menu is shown.
Hide quality menu footer
Quality menu footer is hidden.
Quality menu footer is shown.
- Hide report menu
+ Hide Report menu
Report menu is hidden.
Report menu is shown.
Additional settings
- Hide ambient mode menu
+ Hide Ambient mode menu
Ambient mode menu is hidden.
Ambient mode menu is shown.
- Hide help & feedback menu
+ Hide Help & feedback menu
Help & feedback menu is hidden.
Help & feedback menu is shown.
- Hide listen with YouTube Music menu
+ Hide Listen with YouTube Music menu
Listen with YouTube Music menu is hidden.
Listen with YouTube Music menu is shown.
- Hide loop video menu
+ Hide Loop video menu
Loop video menu is hidden.
Loop video menu is shown.
- Hide picture-in-picture menu
+ Hide Picture-in-picture menu
Picture-in-picture menu is hidden.
Picture-in-picture menu is shown.
- Hide premium controls menu
+ Hide Premium controls menu
Premium controls menu is hidden.
Premium controls menu is shown.
+ Hide Stable volume menu
Stable volume menu is shown.
Stable volume menu is hidden.
- Hide stable volume menu
- Hide stats for nerds menu
+ Hide Stats for nerds menu
Stats for nerds menu is hidden.
Stats for nerds menu is shown.
- Hide watch in VR menu
+ Hide Watch in VR menu
Watch in VR menu is hidden.
Watch in VR menu is shown.
@@ -699,31 +699,31 @@ Limitation: Video title disappears when clicked."
Hide quick actions container
Quick actions container is hidden.
Quick actions container is shown.
- Hide comment button
- Comment button is hidden.
- Comment button is shown.
- Hide dislike button
+ Hide Comments button
+ Comments button is hidden.
+ Comments button is shown.
+ Hide Dislike button
Dislike button is hidden.
Dislike button is shown.
- Hide like button
+ Hide Like button
Like button is hidden.
Like button is shown.
- Hide live chat button
+ Hide Live chat button
Live chat button is hidden.
Live chat button is shown.
- Hide more button
+ Hide More button
More button is hidden.
More button is shown.
- Hide open mix playlist button
+ Hide Open mix playlist button
Open mix playlist button is hidden.
Open mix playlist button is shown.
- Hide open playlist button
+ Hide Open playlist button
Open playlist button is hidden.
Open playlist button is shown.
- Hide save to playlist button
- Save to playlist button is hidden.
- Save to playlist button is shown.
- Hide share button
+ Hide Save button
+ Save button is hidden.
+ Save button is shown.
+ Hide Share button
Share button is hidden.
Share button is shown.
Quick actions top margin
@@ -771,22 +771,22 @@ Limitation: Video title disappears when clicked."
Player buttons
Hide or show buttons in the video player.
- Hide autoplay button
+ Hide Autoplay button
Autoplay button is hidden.
Autoplay button is shown.
- Hide captions button
+ Hide Captions button
Captions button is hidden.
Captions button is shown.
- Hide cast button
+ Hide Cast button
Cast button is hidden.
Cast button is shown.
Hide collapse button
Collapse button is hidden.
Collapse button is shown.
- Hide fullscreen button
+ Hide Fullscreen button
Fullscreen button is hidden.
Fullscreen button is shown.
- Hide previous & next button
+ Hide previous & next buttons
Buttons are hidden.
Buttons are shown.
Hide YouTube Music button
@@ -922,14 +922,14 @@ Please download %2$s from the website."
Video descriptions are not expanded automatically.
Title in video description panel
"Enter the title of the video description panel in your language.
-'Expand video description' may not work if the entered string does not match the video description panel title. "
+'Expand video description' may not work if the entered string does not match the video description panel title."
Description
Shorts
- Change shorts repeat state
+ Change Shorts repeat state
Autoplay
Default
Pause
@@ -941,7 +941,7 @@ Please download %2$s from the website."
Shorts shelves
- Hide shorts shelves
+ Hide Shorts shelves
"Hides Shorts shelves.
Limitation: Official headers in search results will be hidden."
@@ -962,10 +962,10 @@ Limitation: Official headers in search results will be hidden."
Shorts player
Hide or show components in the Shorts player.
- Hide join button
+ Hide Join button
Join button is hidden.
Join button is shown.
- Hide subscribe button
+ Hide Subscribe button
Subscribe button is hidden.
Subscribe button is shown.
Hide paused overlay buttons
@@ -974,7 +974,7 @@ Limitation: Official headers in search results will be hidden."
Hide paid promotion label
Paid promotion label is hidden.
Paid promotion label is shown.
- Hide shop button
+ Hide Shop button
Shop button is hidden.
Shop button is shown.
Hide tagged products
@@ -1007,19 +1007,19 @@ Limitation: Official headers in search results will be hidden."
Action buttons
- Hide like button
+ Hide Like button
Like button is hidden.
Like button is shown.
- Hide dislike button
+ Hide Dislike button
Dislike button is hidden.
Dislike button is shown.
Hide comments button
Comments button is hidden.
Comments button is shown.
- Hide remix button
+ Hide Remix button
Remix button is hidden.
Remix button is shown.
- Hide share button
+ Hide Share button
Share button is hidden.
Share button is shown.
Hide sound button
@@ -1033,7 +1033,7 @@ Limitation: Official headers in search results will be hidden."
Hide navigation bar
Navigation bar is hidden.
Navigation bar is shown.
- Return shorts channel name
+ Return Shorts channel name
Channel name is used.
Channel handle is used.
@@ -1087,9 +1087,9 @@ Limitation: Official headers in search results will be hidden."
Disable HDR video
HDR video is disabled.
HDR video is enabled.
- Disable playback speed in live stream
- Default playback speed is disabled in live stream.
- Default playback speed is enabled in live stream.
+ Disable playback speed for live streams
+ Default playback speed is disabled for live streams.
+ Default playback speed is enabled for live streams.
Enable custom playback speed
Custom playback speed is enabled.
Custom playback speed is disabled.
@@ -1107,7 +1107,7 @@ Limitation: Official headers in search results will be hidden."
Restore old video quality menu
Old video quality menu is shown.
Old video quality menu is not shown.
- Enable shorts default playback speed
+ Enable Shorts default playback speed
Default playback speed applies to Shorts.
Default playback speed does not apply to Shorts.
Skipped preloaded buffer.
@@ -1149,14 +1149,14 @@ A different codec will be applied after about 20 seconds of buffering."
Limitation: Dislikes may not appear if the user is not logged in or in incognito mode."
Dislikes hidden on Shorts.
Dislikes as percentage
- Dislikes shown as percentage.
- Dislikes shown as number.
+ Dislikes shown as a percentage.
+ Dislikes shown as a number.
Compact like button
Like button styled for minimum width.
Like button styled for best appearance.
- Show a toast if API is not available
- Toast is shown if Return YouTube Dislike is not available.
- Toast is not shown if Return YouTube Dislike is not available.
+ Show a toast if API is unavailable
+ Toast is shown if Return YouTube Dislike is unavailable.
+ Toast is not shown if Return YouTube Dislike is unavailable.
About
@@ -1280,9 +1280,9 @@ Limitation: Dislikes may not appear if the user is not logged in or in incognito
General
- Show a toast if API is not available
- Toast is shown if SponsorBlock is not available.
- Toast is not shown if SponsorBlock is not available.
+ Show a toast if API is unavailable
+ Toast is shown if SponsorBlock is unavailable.
+ Toast is not shown if SponsorBlock is unavailable.
Enable skip count tracking
Lets the SponsorBlock leaderboard know how much time is saved. A message is sent to the leaderboard each time a segment is skipped.
Skip count tracking is not enabled.
@@ -1347,7 +1347,7 @@ Limitation: Dislikes may not appear if the user is not logged in or in incognito
Stats
- Stats temporarily not available (API is down).
+ Stats temporarily unavailable (API is down).
Loading...
SponsorBlock is disabled.
Your username: <b>%s</b>
diff --git a/src/main/resources/youtube/settings/xml/revanced_prefs.xml b/src/main/resources/youtube/settings/xml/revanced_prefs.xml
index 2b35c30af..e0eff071d 100644
--- a/src/main/resources/youtube/settings/xml/revanced_prefs.xml
+++ b/src/main/resources/youtube/settings/xml/revanced_prefs.xml
@@ -613,7 +613,7 @@
-
+
@@ -622,8 +622,8 @@
-
-
+
+
@@ -652,7 +652,7 @@
-
+